/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Professional Navy Blue */
    --navy-blue: #1a2332;
    --navy-blue-dark: #0f1419;
    --navy-blue-light: #2d3a4f;
    --navy-blue-lighter: #3d4d66;
    
    /* Accent Colors - Professional Gold (Complementary to Navy) */
    --gold: #c9a961;
    --gold-light: #d4b87a;
    --gold-dark: #a88a4f;
    --gold-accent: #b8943f;
    
    /* Neutral Colors - Professional Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #fef9e7;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-tertiary: #6b7280;
    --text-inverse: #ffffff;
    
    /* Border Colors */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-accent: var(--gold);
    
    /* Shadow Colors - Professional and Subtle */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Accent Glows - Subtle and Professional */
    --gold-glow: rgba(201, 169, 97, 0.15);
    --gold-glow-strong: rgba(201, 169, 97, 0.25);
    
    /* Legacy variables for compatibility */
    --white: #ffffff;
    --light-bg: var(--gray-100);
    --light-gold: var(--bg-accent);
    --text-light: var(--text-tertiary);
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 2px solid var(--gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-link:hover .logo-img {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.brand-name {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.brand-tagline {
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.btn-nav:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 50%, var(--navy-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(244,196,48,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, -30px) rotate(180deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--golden-yellow-dark) 100%);
    color: var(--navy-blue);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--golden-yellow-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--golden-yellow-dark) 100%);
    color: var(--navy-blue);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--golden-yellow-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-gold-small {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.btn-gold-small:hover {
    background: var(--golden-yellow-light);
    transform: translateY(-2px);
}

.btn-outline-small {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    text-align: center;
}

.btn-outline-small:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    text-align: center;
    margin-top: 4rem;
    animation: fadeIn 1s ease 0.8s both;
}

.trust-label {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.cert-logo {
    width: 100px;
    height: 80px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-item:hover .cert-logo {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: scale(1.05);
}

.logo-item span {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
    position: relative;
}

.modal-content h2 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 0.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--navy-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-logos {
        gap: 2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--golden-yellow-light);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--navy-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-cta {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-cta:hover {
    color: var(--golden-yellow-dark);
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(244,196,48,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons-inline {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--navy-blue-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    line-height: 1.6;
}

.footer-brand a {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-blue);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 196, 48, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navy-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons-inline {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   NEW UK SME DESIGN - ALL SECTIONS
   ============================================ */

/* SECTION 1: HERO NEW */
.hero-new {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-block {
    max-width: 600px;
}

/* Tablet and Medium Screens */
@media (max-width: 992px) {
    .hero-layout {
        gap: 3rem;
    }
    
    .laptop-mockup {
        max-width: 450px;
    }
    
    .laptop-screen {
        padding: 1rem;
    }
    
    .dashboard-header {
        font-size: 1rem;
    }
    
    .dashboard-metric {
        font-size: 0.9rem;
        padding: 0.9rem;
    }
}

/* Small Tablets */
@media (max-width: 640px) {
    .hero-layout {
        gap: 2rem;
    }
    
    .laptop-mockup {
        max-width: 100%;
    }
    
    .laptop-screen {
        min-height: 170px;
    }
    
    .dashboard-header {
        font-size: 0.95rem;
    }
    
    .dashboard-metric {
        font-size: 0.85rem;
    }
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary-large {
    background: var(--navy-blue);
    color: var(--text-inverse);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md), 0 0 0 0 var(--gold-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    background: var(--navy-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 4px var(--gold-glow);
    border-color: var(--gold-light);
}

.btn-secondary-link {
    color: var(--navy-blue);
    text-decoration: underline;
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.btn-secondary-link:hover {
    color: var(--gold);
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--bg-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
    color: var(--navy-blue);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    background: var(--navy-blue);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.laptop-screen {
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 1.2rem;
    aspect-ratio: 16/10;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-light);
    min-height: 200px;
}

.dashboard-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 0;
}

.dashboard-header {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy-blue);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.dashboard-header::before {
    content: '🛡️';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    justify-content: space-around;
    min-height: 0;
    overflow: hidden;
}

.dashboard-metric {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dashboard-metric:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow);
    background: var(--bg-primary);
    border-left-color: var(--gold-light);
}

/* SECTION 2: URGENCY */
.urgency-section {
    padding: 80px 0;
    background: var(--bg-accent);
}

.urgency-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.urgency-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.urgency-paragraph {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pain-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pain-point p {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0;
}

.btn-urgency {
    background: var(--navy-blue);
    color: var(--text-inverse);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.btn-urgency:hover {
    background: var(--navy-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--gold-glow);
    border-color: var(--gold-light);
}

.urgency-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.clock-icon {
    font-size: 120px;
    opacity: 0.8;
}

.warning-badge {
    background: var(--navy-blue);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

/* SECTION 3: VALUE PROPOSITION */
.value-proposition-section {
    padding: 80px 0;
    background: var(--white);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--gold);
    border: 1px solid var(--border-light);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
    border-top-color: var(--gold-light);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* SECTION 4: PRICING */
.pricing-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.pricing-header {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 3rem;
}

.pricing-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-column {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-column-highlight {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    position: relative;
    background: var(--bg-accent);
}

.pricing-column-highlight::before {
    content: '⭐';
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 1.5rem;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

.pricing-column h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 2rem;
}

.pricing-checklist {
    list-style: none;
    padding: 0;
}

.pricing-checklist li {
    padding: 0.75rem 0;
    font-size: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--light-bg);
}

.pricing-checklist li:last-child {
    border-bottom: none;
}

/* SECTION 5: ROI */
.roi-section {
    padding: 80px 0;
    background: var(--white);
}

.roi-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 3rem;
}

.roi-chart {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.chart-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: flex-end;
    height: 300px;
    margin-bottom: 1rem;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 150px;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, var(--navy-blue), var(--gold));
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    position: relative;
    min-height: 50px;
}

.bar-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.bar-label-bottom {
    font-weight: 600;
    color: var(--navy-blue);
}

.chart-subtitle {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.roi-explainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.roi-step {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

/* SECTION 6: TRUST */
.trust-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.trust-block p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--navy-blue);
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
    background: var(--navy-blue-dark);
}

/* SECTION 7: SCORECARD */
.scorecard-section {
    padding: 80px 0;
    background: var(--white);
}

.scorecard-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.scorecard-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.scorecard-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.scorecard-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-question {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-question label {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 16px;
}

.form-question select,
.form-question input {
    padding: 0.75rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-question select:focus,
.form-question input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.required {
    color: red;
}

.btn-scorecard {
    background: var(--navy-blue);
    color: var(--text-inverse);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    box-shadow: var(--shadow-md);
}

.btn-scorecard:hover {
    background: var(--navy-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--gold-glow);
    border-color: var(--gold-light);
}

/* SECTION 8: FINAL CTA */
.final-cta-section {
    padding: 80px 0;
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-consultation {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 1.3rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.btn-consultation:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-light);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-new {
        padding: 60px 0 40px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text-block {
        order: 1;
        text-align: center;
    }

    .hero-visual {
        order: 2;
        margin-top: 2rem;
        width: 100%;
    }

    .hero-headline {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-ctas {
        align-items: stretch;
    }

    .btn-primary-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .laptop-mockup {
        max-width: 100%;
        padding: 0.6rem;
        width: 100%;
    }

    .laptop-screen {
        padding: 0.9rem;
        min-height: 180px;
    }

    .dashboard-preview {
        gap: 0.6rem;
    }

    .dashboard-header {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.4rem;
        gap: 0.4rem;
    }

    .dashboard-header::before {
        font-size: 1rem;
    }

    .dashboard-content {
        gap: 0.6rem;
        justify-content: flex-start;
    }

    .dashboard-metric {
        padding: 0.75rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .trust-badges {
        justify-content: center;
        gap: 0.8rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .urgency-section {
        padding: 60px 0;
    }

    .urgency-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .urgency-headline {
        font-size: 28px;
    }

    .urgency-paragraph {
        font-size: 16px;
    }

    .urgency-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .clock-icon {
        font-size: 80px;
    }

    .value-proposition-section {
        padding: 60px 0;
    }

    .value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .roi-section {
        padding: 60px 0;
    }

    .roi-explainer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-section {
        padding: 60px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chart-container {
        gap: 1rem;
        height: 250px;
    }

    .chart-bar {
        width: 80px;
    }

    .scorecard-section {
        padding: 60px 0;
    }

    .scorecard-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .final-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 40px 0 30px;
    }

    .hero-headline {
        font-size: 26px;
        line-height: 1.1;
    }

    .hero-subheadline {
        font-size: 15px;
        line-height: 1.4;
    }

    .btn-primary-large {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-visual {
        margin-top: 1.5rem;
    }

    .laptop-mockup {
        padding: 0.5rem;
        border-radius: 10px;
        max-width: 100%;
    }

    .laptop-screen {
        padding: 0.7rem;
        border-radius: 6px;
        min-height: 150px;
        aspect-ratio: 16/10;
    }

    .dashboard-preview {
        gap: 0.5rem;
    }

    .dashboard-header {
        font-size: 0.8rem;
        padding-bottom: 0.4rem;
        margin-bottom: 0.3rem;
        gap: 0.3rem;
    }

    .dashboard-header::before {
        font-size: 0.9rem;
    }

    .dashboard-content {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .dashboard-metric {
        padding: 0.6rem;
        font-size: 0.75rem;
        line-height: 1.3;
        border-left-width: 2px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    .urgency-headline {
        font-size: 24px;
    }

    .urgency-paragraph {
        font-size: 15px;
    }

    .clock-icon {
        font-size: 60px;
    }

    .warning-badge {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .pricing-header,
    .roi-headline {
        font-size: 24px;
    }

    .value-card {
        padding: 2rem;
    }

    .pricing-column {
        padding: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .chart-container {
        height: 200px;
        gap: 0.8rem;
    }

    .chart-bar {
        width: 60px;
    }

    .bar-label {
        font-size: 0.9rem;
    }

    .scorecard-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .scorecard-card h2 {
        font-size: 22px;
    }

    .scorecard-subtitle {
        font-size: 16px;
    }

    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-section h2 {
        font-size: 24px;
    }

    .final-cta-section p {
        font-size: 17px;
    }

    .btn-consultation {
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
    }
}

