* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #fafafa;
            --bg-secondary: #ffffff;
            --bg-dark: #0a0a0a;
            --text-primary: #111111;
            --text-secondary: #666666;
            --text-light: #999999;
            --accent: #c9a962;
            --accent-dark: #b8984d;
            --border: #e8e8e8;
            --border-light: #f2f2f2;
            --code-bg: #1a1a1a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
        }

        .cursor.hover {
            width: 60px;
            height: 60px;
            background: transparent;
            border: 1px solid var(--accent);
        }

        .cursor-dot {
            width: 4px;
            height: 4px;
            background: var(--text-primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
        }

        /* Grain Overlay */
        .grain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            mix-blend-mode: difference;
        }

        nav.scrolled {
            background: rgba(250, 250, 250, 0.9);
            backdrop-filter: blur(20px);
            mix-blend-mode: normal;
            padding: 1.25rem 4rem;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        nav.scrolled .logo {
            color: var(--text-primary);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }

        nav.scrolled .nav-links a {
            color: var(--text-secondary);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            position: relative;
            overflow: hidden;
            background: var(--bg-dark);
            display: flex;
            align-items: center;
            padding-top: 8rem;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            filter: saturate(1.2) contrast(1.1);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.9) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 4rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .hero-badge::before {
            content: '✦';
            font-size: 1rem;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -2px;
            color: white;
            margin-bottom: 1.5rem;
        }

        .hero-title em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            gap: 4rem;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 400;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 1px;
        }

        /* Brand Mockup */
        .brand-mockup {
            background: var(--code-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            padding: 3rem;
            position: relative;
        }

        .brand-mockup::before {
            content: '✦';
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            color: var(--accent);
            opacity: 0.5;
        }

        .mockup-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: white;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .mockup-tagline {
            color: rgba(255,255,255,0.6);
            font-size: 1rem;
            margin-bottom: 3rem;
            font-style: italic;
        }

        .mockup-type {
            margin-bottom: 2rem;
        }

        .mockup-label {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .mockup-font {
            color: white;
            font-size: 1.5rem;
        }

        .mockup-font.secondary {
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }

        .mockup-colors {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .color-swatch {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .color-swatch::after {
            content: attr(data-color);
            position: absolute;
            bottom: 5px;
            left: 5px;
            font-size: 0.625rem;
            color: white;
            opacity: 0.8;
        }

        .swatch-1 { background: #c9a962; }
        .swatch-2 { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.2); }
        .swatch-3 { background: #fafafa; }
        .swatch-3::after { color: #111; }

        /* Section Styles */
        section {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-label {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: block;
        }

        /* Approach Section */
        .approach-section {
            background: var(--bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .approach-decoration {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .approach-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
            z-index: 1;
        }

        .approach-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
        }

        .approach-intro {
            color: rgba(255,255,255,0.6);
            max-width: 700px;
            margin: 1.5rem auto 0;
            font-size: 1.125rem;
            line-height: 1.8;
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .approach-step {
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--accent);
            transition: all 0.4s ease;
        }

        .approach-step:hover .step-number {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }

        .approach-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .approach-description {
            color: rgba(255,255,255,0.5);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Services Section */
        .services-section {
            background: var(--bg-secondary);
        }

        .services-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .services-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            padding: 3rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px -10px rgba(201, 169, 98, 0.2);
        }

        .service-content {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
            border: 1px solid rgba(201, 169, 98, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(-5deg);
        }

        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-title {
            color: white;
        }

        .service-description {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-description {
            color: rgba(255, 255, 255, 0.85);
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-light);
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-features li {
            color: rgba(255, 255, 255, 0.7);
        }

        .service-features li::before {
            content: '—';
            color: var(--accent);
            font-weight: 600;
            transition: color 0.4s ease;
        }

        .service-card:hover .service-features li::before {
            color: white;
        }

        /* Process Section */
        .process-section {
            background: var(--bg-primary);
        }

        .process-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .process-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 3rem;
            right: -1rem;
            width: 2rem;
            height: 1px;
            background: var(--border);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--bg-secondary);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--accent);
            font-weight: 600;
            transition: all 0.4s ease;
        }

        .process-step:hover .process-number {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }

        .process-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }

        .process-description {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Portfolio Section */
        .portfolio-section {
            background: var(--bg-dark);
            color: white;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .portfolio-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .portfolio-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .portfolio-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .portfolio-description {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            position: relative;
            z-index: 1;
        }

        /* Deliverables Section */
        .deliverables-section {
            background: var(--bg-secondary);
        }

        .deliverables-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .deliverables-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .deliverable-card {
            background: var(--bg-primary);
            border: 1px solid var(--border);
            padding: 3rem;
            transition: all 0.4s ease;
        }

        .deliverable-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
        }

        .deliverable-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .deliverable-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        .deliverable-description {
            color: var(--text-secondary);
            font-size: 0.9375rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .deliverable-list {
            list-style: none;
        }

        .deliverable-list li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .deliverable-list li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 600;
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--bg-primary);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .pricing-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            letter-spacing: -1px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .pricing-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            padding: 3rem 2.5rem;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 30px 60px -15px rgba(201, 169, 98, 0.25);
            z-index: 2;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 0.5rem 1.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .pricing-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
            text-align: center;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
            font-size: 0.9375rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .pricing-features li::before {
            content: '—';
            color: var(--accent);
            font-weight: 600;
        }

        .pricing-btn {
            display: block;
            width: 100%;
            padding: 1.25rem;
            background: var(--accent);
            color: white;
            text-align: center;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            border: none;
            cursor: none;
        }

        .pricing-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: var(--bg-dark);
            color: white;
            text-align: center;
            padding: 10rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .cta-content p {
            color: rgba(255,255,255,0.6);
            font-size: 1.25rem;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem 4rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 0.4s ease;
            z-index: 0;
        }

        .cta-btn:hover::before {
            left: 0;
        }

        .cta-btn span {
            position: relative;
            z-index: 1;
        }

        .cta-btn:hover {
            color: var(--text-primary);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-secondary);
            padding: 8rem 4rem;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 2rem 0;
            background: none;
            border: none;
            text-align: left;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            cursor: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 2rem;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 90%;
        }

        /* Footer */
        footer {
            padding: 4rem 4rem 3rem;
            background: var(--bg-primary);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copyright {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .brand-mockup {
                order: -1;
            }

            .approach-steps {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step:not(:last-child)::after {
                display: none;
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .deliverables-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }

            .pricing-card.featured {
                transform: none;
                order: -1;
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor, .cursor-dot {
                display: none;
            }

            nav {
                padding: 1.5rem 2rem;
            }

            .nav-links {
                display: none;
            }

            section {
                padding: 6rem 2rem;
            }

            .hero {
                padding: 6rem 2rem;
                min-height: auto;
                padding-top: 8rem;
            }

            .hero-content {
                padding: 0;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .faq-question {
                font-size: 1.25rem;
                padding: 1.5rem 0;
            }

            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }