:root {
            --bg: #F8F7F4;
            --bg-white: #FFFFFF;
            --bg-soft: #F0EFEB;
            --fg: #1A1A1A;
            --fg-secondary: #4A4A4A;
            --muted: #6B6B6B;
            --accent: #C45D3E;
            --accent-dark: #A34830;
            --accent-light: #FDF4F0;
            --accent-glow: rgba(196, 93, 62, 0.15);
            --turquoise: #2D8A7A;
            --turquoise-light: #E8F5F2;
            --amber: #B8860B;
            --amber-light: #FDF8E8;
            --card: #FFFFFF;
            --border: #E5E3DE;
            --border-light: #F0EFEB;
            --shadow: rgba(26, 26, 26, 0.06);
            --shadow-lg: rgba(26, 26, 26, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--fg);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        /* Parallax Container */
        .parallax-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .parallax-layer {
            position: absolute;
            will-change: transform;
            transition: transform 0.1s ease-out;
        }

        .parallax-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            top: -100px;
            right: 10%;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(45, 138, 122, 0.1) 0%, transparent 70%);
            bottom: 10%;
            left: 5%;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
            top: 40%;
            right: 25%;
        }

        /* Navigation */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: transparent;
            border-bottom: none;
            padding: 0.75rem 0;
            transition: all 0.3s ease;
        }

        .nav-wrapper .container {
            min-height: 4rem;
            background: rgba(248, 247, 244, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(229, 227, 222, 0.85);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(26, 26, 26, 0.06);
            padding: 0 1rem;
        }

        .nav-wrapper.scrolled .container {
            border-color: var(--border);
            box-shadow: 0 14px 36px rgba(26, 26, 26, 0.08);
        }

        .nav-link {
            position: relative;
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 0;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--fg);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.2s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-brand {
            padding-left: 1rem;
        }

        @media (min-width: 768px) {
            .nav-brand {
                padding-left: 0;
            }
        }

        .brand-wordmark {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            letter-spacing: 0.01em;
            line-height: 1;
            display: inline-flex;
            align-items: baseline;
            gap: 0.08em;
         }

        .brand-septimus {
            color: #1E457C;
        }

        .brand-lab {
            color: #D99A72;
        }

        .nav-brand .brand-wordmark {
            font-size: 1.48rem;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .nav-wrapper {
                padding: 0.625rem 0;
            }

            .nav-wrapper .container {
                border-radius: 14px;
                padding: 0 0.75rem;
            }
        }

        /* Buttons */
        .btn-primary {
            background: var(--accent);
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            padding: 0.875rem 1.75rem;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            position: relative;
            z-index: 10;
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow);
        }

        .btn-secondary {
            background: var(--bg-white);
            color: var(--fg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            padding: 0.875rem 1.75rem;
            border-radius: 12px;
            border: 1.5px solid var(--border);
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 7rem 1.5rem 5rem;
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            background: var(--bg-white);
            border: 1px solid var(--border);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px var(--shadow);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.3); }
        }

        .hero-title {
            font-size: clamp(2.75rem, 5.5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--fg);
            line-height: 1.1;
        }

        .hero-title .accent {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted);
            max-width: 520px;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        /* Hero 3D Animation */
        .hero-animation-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1;
            margin: 0 auto;
            pointer-events: none;
        }

        .orbit-system {
            position: absolute;
            inset: 0;
        }

        .center-orb {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-soft) 100%);
            border-radius: 32px;
            box-shadow: 
                0 20px 60px var(--shadow-lg),
                inset 0 2px 0 rgba(255,255,255,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .center-orb img {
            width: 120px;
            height: 120px;
            object-fit: contain;
        }

        .orbit-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1.5px dashed var(--border);
        }

        .orbit-ring-1 { width: 280px; height: 280px; animation: orbitPulse 4s ease-in-out infinite; }
        .orbit-ring-2 { width: 380px; height: 380px; animation: orbitPulse 4s ease-in-out infinite 0.5s; }
        .orbit-ring-3 { width: 480px; height: 480px; animation: orbitPulse 4s ease-in-out infinite 1s; }

        @keyframes orbitPulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }

        .orbit-item {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: center;
            animation: orbitRotate 20s linear infinite;
        }

        .orbit-item:nth-child(2) { animation-duration: 25s; animation-direction: reverse; }
        .orbit-item:nth-child(3) { animation-duration: 30s; }
        .orbit-item:nth-child(4) { animation-duration: 22s; animation-direction: reverse; }
        .orbit-item:nth-child(5) { animation-duration: 28s; }
        .orbit-item:nth-child(6) { animation-duration: 24s; animation-direction: reverse; }
        .orbit-item:nth-child(7) { animation-duration: 26s; }

        @keyframes orbitRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .orbit-icon {
            position: absolute;
            background: var(--bg-white);
            border-radius: 14px;
            padding: 10px;
            min-width: 52px;
            min-height: 52px;
            border: 1px solid rgba(229, 227, 222, 0.9);
            box-shadow: 0 8px 24px var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .orbit-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .orbit-icon svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .data-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0.3;
            transform-origin: left center;
            animation: dataFlow 3s ease-in-out infinite;
        }

        @keyframes dataFlow {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.4; }
        }

        /* Marquee */
        .marquee-wrapper {
            background: var(--bg-white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            gap: 3rem;
            animation: marqueeScroll 35s linear infinite;
            width: fit-content;
        }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            white-space: nowrap;
            color: var(--muted);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .marquee-item img {
            width: 24px;
            height: 24px;
            object-fit: contain;
            border-radius: 6px;
        }

        .marquee-keyword {
            color: var(--accent);
            font-weight: 600;
        }

        .marquee-badge {
            background: var(--accent-light);
            color: var(--accent);
            font-size: 0.65rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
        }

        .marquee-badge-gray {
            background: #F0EFEB;
            color: var(--muted);
            font-size: 0.65rem;
            font-weight: 600;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 4px;
        }

        /* Section Styles */
        section {
            position: relative;
            padding: 5rem 1.5rem;
            isolation: isolate;
        }

        section:not(.hero-section)::before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: -72px;
            height: 150px;
            background: radial-gradient(120% 75% at 50% 0%, rgba(248, 247, 244, 0.85) 0%, rgba(248, 247, 244, 0.45) 45%, rgba(248, 247, 244, 0) 80%);
            filter: blur(18px);
            opacity: 0.78;
            pointer-events: none;
            z-index: 0;
        }

        section > .container {
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3.5rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(1.875rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--fg);
            margin-bottom: 0.75rem;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF7 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            width: 260px;
            height: 520px;
            margin: 0 auto;
        }

        .phone-frame {
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
            border-radius: 40px;
            padding: 10px;
            box-shadow: 
                0 50px 100px rgba(26, 26, 26, 0.2),
                0 20px 60px rgba(26, 26, 26, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.08);
        }

        .phone-screen {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #FEFEFE 0%, #F8FAFC 100%);
            border-radius: 32px;
            overflow: hidden;
        }

        .phone-notch {
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 24px;
            background: #1A1A1A;
            border-radius: 16px;
            z-index: 10;
        }

        .scan-animation {
            position: absolute;
            top: 50px;
            left: 12px;
            right: 12px;
            bottom: 70px;
            border: 2px dashed var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .scan-line {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--turquoise) 50%, transparent 100%);
            box-shadow: 0 0 16px var(--turquoise);
            animation: scanMove 2.5s ease-in-out infinite;
        }

        @keyframes scanMove {
            0% { top: 5%; opacity: 0; }
            15% { opacity: 1; }
            85% { opacity: 1; }
            100% { top: 95%; opacity: 0; }
        }

        .scan-content {
            position: absolute;
            inset: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .scan-icon {
            width: 56px;
            height: 56px;
            background: var(--turquoise-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scan-result {
            position: absolute;
            bottom: 16px;
            left: 12px;
            right: 12px;
            background: var(--bg-white);
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 -4px 16px var(--shadow);
            opacity: 0;
            animation: fadeInUp 2.5s ease-in-out infinite;
            animation-delay: 1.2s;
        }

        @keyframes fadeInUp {
            0%, 40% { opacity: 0; transform: translateY(8px); }
            50%, 90% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(8px); }
        }

        .result-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #DCFCE7;
            color: #166534;
            font-size: 0.65rem;
            font-weight: 600;
            padding: 3px 6px;
            border-radius: 4px;
        }

        .floating-badge {
            position: absolute;
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px 12px;
            box-shadow: 0 8px 24px var(--shadow);
            animation: float 4s ease-in-out infinite;
            z-index: 5;
            white-space: nowrap;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: var(--bg-soft);
            border-radius: 12px;
            padding: 1.25rem;
            text-align: center;
            transition: all 0.2s ease;
        }

        .stat-card:hover {
            background: var(--bg-white);
            box-shadow: 0 8px 30px var(--shadow);
        }

        .stat-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 0.25rem;
        }

        /* Products Section */
        .products-section {
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .product-card {
            background: var(--bg-white);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(135deg, transparent 0%, rgba(196, 93, 62, 0.2) 50%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 32px 64px var(--shadow-lg),
                0 16px 32px rgba(26, 26, 26, 0.06);
        }

        .product-preview {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .preview-bg {
            position: absolute;
            inset: 0;
        }

        .preview-bg-turquoise {
            background: linear-gradient(135deg, #E8F5F2 0%, #D0EDE6 100%);
        }

        .preview-bg-orange {
            background: linear-gradient(135deg, #FDF4F0 0%, #FCE8DE 100%);
        }

        .preview-bg-amber {
            background: linear-gradient(135deg, #FDF8E8 0%, #FBF0D4 100%);
        }

        .preview-phone {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 112px;
            height: 198px;
            background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
            border-radius: 20px;
            padding: 4px;
            box-shadow: 0 20px 40px rgba(26, 26, 26, 0.2);
            overflow: hidden;
            pointer-events: none;
        }

        .preview-phone-inner {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F5 100%);
            border-radius: 16px;
            overflow: hidden;
        }

        .preview-phone-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            image-rendering: auto;
        }

        .product-status {
            position: absolute;
            top: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .product-body {
            padding: 1.75rem;
        }

        .product-icon-small {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border: 1.5px solid var(--border);
            background: rgba(255, 255, 255, 0.35);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
        }

        .product-icon-small img {
            width: 56px;
            height: 56px;
            object-fit: cover;
            border-radius: 14px;
        }

        .product-icon-small.bg-turquoise {
            background: rgba(232, 245, 242, 0.45);
            border-color: rgba(45, 138, 122, 0.25);
        }

        .product-icon-small.bg-orange {
            background: rgba(253, 244, 240, 0.5);
            border-color: rgba(196, 93, 62, 0.25);
        }

        .product-icon-small.bg-amber {
            background: rgba(253, 248, 232, 0.55);
            border-color: rgba(184, 134, 11, 0.25);
        }

        .product-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--fg);
            margin-bottom: 0.5rem;
        }

        .product-tagline {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 1.25rem;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-tag {
            background: var(--bg-soft);
            color: var(--fg-secondary);
            font-size: 0.75rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .feature-tag-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
        }

        .product-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
            z-index: 10;
        }

        .product-cta:hover {
            gap: 12px;
        }

        .product-cta svg {
            transition: transform 0.2s ease;
        }

        .product-cta:hover svg {
            transform: translateX(4px);
        }

        /* Technology Section */
        .tech-section {
            background: linear-gradient(180deg, #FCFBF8 0%, #FFFFFF 100%);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .tech-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .tech-card {
            background: var(--bg-soft);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.2s ease;
        }

        .tech-card:hover {
            background: var(--bg-white);
            box-shadow: 0 8px 30px var(--shadow);
            transform: translateY(-2px);
        }

        .tech-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 0.75rem;
            color: var(--turquoise);
        }

        .tech-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--fg);
            margin-bottom: 0.25rem;
        }

        .tech-desc {
            font-size: 0.75rem;
            color: var(--muted);
        }

        /* Vision Section */
        .vision-section {
            background: linear-gradient(180deg, #F9F8F5 0%, #F5F3EE 100%);
        }

        .vision-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .vision-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: start;
            }
        }

        .timeline {
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 11px;
            top: 8px;
            bottom: 8px;
            width: 2px;
            background: linear-gradient(180deg, var(--accent) 0%, var(--turquoise) 100%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            padding-bottom: 2rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 0;
            top: 4px;
            width: 24px;
            height: 24px;
            background: var(--bg-white);
            border: 3px solid var(--accent);
            border-radius: 50%;
        }

        .timeline-year {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 0.375rem;
        }

        .timeline-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--fg);
            margin-bottom: 0.625rem;
        }

        .timeline-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }

        .timeline-list li {
            position: relative;
            padding-left: 1rem;
            font-size: 0.875rem;
            color: var(--muted);
        }

        .timeline-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 4px;
            height: 4px;
            background: var(--turquoise);
            border-radius: 50%;
        }

        /* Contact Section - Light with Premium Design */
        .contact-section {
            background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-soft) 100%);
            padding: 5rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .contact-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(196, 93, 62, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(45, 138, 122, 0.05) 0%, transparent 40%);
            pointer-events: none;
        }

        .contact-grid-lines {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(196, 93, 62, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(196, 93, 62, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .contact-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: contactOrbFloat 8s ease-in-out infinite;
        }

        .contact-orb-1 {
            width: 350px;
            height: 350px;
            background: rgba(196, 93, 62, 0.08);
            top: -100px;
            right: 10%;
        }

        .contact-orb-2 {
            width: 250px;
            height: 250px;
            background: rgba(45, 138, 122, 0.06);
            bottom: -80px;
            left: 5%;
            animation-delay: -3s;
        }

        @keyframes contactOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(15px, -15px) scale(1.05); }
        }

        .contact-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .contact-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding: 0.5rem 1rem;
            background: var(--accent-light);
            border: 1px solid rgba(196, 93, 62, 0.2);
            border-radius: 100px;
        }

        .contact-label-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .contact-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 600;
            color: var(--fg);
            margin-bottom: 1.25rem;
            line-height: 1.15;
        }

        .contact-desc {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 500px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .contact-btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 1rem;
            box-shadow: 0 4px 20px rgba(196, 93, 62, 0.25);
        }

        .contact-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(196, 93, 62, 0.35);
        }

        .contact-btn-secondary {
            background: var(--bg-white);
            color: var(--fg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 14px;
            border: 1.5px solid var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 1rem;
        }

        .contact-btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Separator */
        .section-separator {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--border) 15%, var(--accent) 50%, var(--border) 85%, transparent 100%);
        }

        /* Footer - Dark */
        .footer {
            background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
            padding: 2.5rem 1.5rem 1.5rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .footer-main {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        .footer-brand {
            max-width: 280px;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            margin-bottom: 0.875rem;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .footer-logo-text {
            font-size: 1.18rem;
        }

        .footer-logo .brand-septimus {
            color: #FFFFFF;
        }

        .footer-logo .brand-lab {
            color: #D99A72;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-social {
            display: flex;
            gap: 0.5rem;
        }

        .social-link {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .social-link:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .footer-column-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.06em;
            color: #FFFFFF;
            margin-bottom: 0.875rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--accent);
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            margin-bottom: 1rem;
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        .footer-credit {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-credit a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-credit a:hover {
            color: var(--accent);
        }

        /* Language Toggle - Animated Flags */
        .lang-toggle {
            display: flex;
            align-items: center;
            background: var(--bg-soft);
            border-radius: 30px;
            padding: 4px;
            gap: 4px;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
        }

        .lang-toggle::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 4px;
            width: 32px;
            height: 32px;
            background: var(--bg-white);
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1;
        }

        .lang-toggle:has(.lang-btn[data-lang="en"].active)::before {
            transform: translateX(36px);
        }

        .lang-btn {
            position: relative;
            z-index: 2;
            width: 32px;
            height: 32px;
            padding: 0;
            background: transparent;
            border: none;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .flag-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: grayscale(100%) opacity(0.4);
            transform: scale(0.85);
        }

        .lang-btn.active .flag-icon {
            filter: grayscale(0%) opacity(1);
            transform: scale(1);
        }

        .lang-btn:hover:not(.active) .flag-icon {
            filter: grayscale(40%) opacity(0.8);
            transform: scale(0.95);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--fg);
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--bg-white);
            z-index: 150;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            padding: 2rem;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--fg);
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu a {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--fg);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-links { display: none; }
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* Focus States */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* Container */
        .container {
            width: min(1120px, calc(100% - 3rem));
            max-width: 1120px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .container {
                width: min(1120px, calc(100% - 2rem));
            }
        }

        /* Gradient backgrounds */
        .bg-turquoise { background: linear-gradient(135deg, #2D8A7A 0%, #3AAF9B 100%); }
        .bg-orange { background: linear-gradient(135deg, #C45D3E 0%, #D97B5C 100%); }
        .bg-amber { background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%); }
