        :root {
            --gold: #C4A35A;
            --gold-light: #D4B86A;
            --gold-dark: #A68A4A;
            --charcoal: #1A1A1A;
            --charcoal-light: #2A2A2A;
            --slate: #4A4A4A;
            --pearl: #F8F6F3;
            --pearl-dark: #EDE9E3;
            --white: #FFFFFF;
            --transition: cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            font-weight: 300;
            color: var(--charcoal);
            background: var(--pearl);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.2;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            transition: all 0.4s var(--transition);
            background: transparent;
        }

        .header.scrolled {
            background: rgba(248, 246, 243, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.06);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
            letter-spacing: 0.02em;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 400;
            color: var(--slate);
            text-decoration: none;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s var(--transition);
        }

        .nav-link:hover {
            color: var(--charcoal);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--charcoal);
            color: var(--white);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.3s var(--transition);
        }

        .nav-cta:hover {
            background: var(--gold);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 2px;
            background: var(--charcoal);
            transition: all 0.3s var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 2rem 4rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(196, 163, 90, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--white);
            border: 1px solid var(--pearl-dark);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s var(--transition) 0.2s both;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .hero-title {
            font-size: clamp(3rem, 6vw, 4.5rem);
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s var(--transition) 0.4s both;
        }

        .hero-title span {
            display: block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--slate);
            max-width: 520px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s var(--transition) 0.6s both;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s var(--transition) 0.8s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.4s var(--transition);
        }

        .btn-primary {
            background: var(--charcoal);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(196, 163, 90, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: var(--charcoal);
            border: 1px solid var(--charcoal);
        }

        .btn-secondary:hover {
            background: var(--charcoal);
            color: var(--white);
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInRight 1s var(--transition) 0.4s both;
        }

        .hero-video-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 60px 120px rgba(0, 0, 0, 0.12);
        }

        .hero-video-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(196, 163, 90, 0.2);
            border-radius: 8px;
            pointer-events: none;
            z-index: 2;
        }

        .hero-video {
            width: 100%;
            display: block;
            aspect-ratio: 4/3;
            object-fit: cover;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--pearl-dark);
            animation: fadeInUp 0.8s var(--transition) 1s both;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--gold);
            line-height: 1;
        }

        .stat-number span {
            font-size: 1.5rem;
            font-weight: 400;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--slate);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-top: 0.25rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Services Grid */
        .services-section {
            padding: 8rem 2rem;
            background: var(--white);
            position: relative;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, var(--pearl-dark), transparent);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-eyebrow {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--charcoal);
            margin-bottom: 1.25rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--slate);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .services-grid-centered {
            max-width: 1400px;
            margin: 2rem auto 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .services-grid-centered .service-card {
            flex: 0 1 calc(33.333% - 1.34rem);
            max-width: calc(33.333% - 1.34rem);
        }

        .service-card {
            position: relative;
            background: var(--pearl);
            padding: 2.5rem;
            border-radius: 4px;
            transition: all 0.5s var(--transition);
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 4px;
            margin-bottom: 1.5rem;
            transition: all 0.4s var(--transition);
        }

        .service-card:hover .service-icon {
            background: var(--charcoal);
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            transition: stroke 0.4s var(--transition);
        }

        .service-card:hover .service-icon svg {
            stroke: var(--gold-light);
        }

        .service-title {
            font-size: 1.5rem;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .service-description {
            font-size: 0.95rem;
            color: var(--slate);
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            position: relative;
            padding-left: 1.25rem;
            font-size: 0.875rem;
            color: var(--slate);
            margin-bottom: 0.5rem;
        }

        .service-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
        }

        /* Feature Showcase */
        .feature-showcase {
            padding: 8rem 2rem;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .feature-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
        }

        .feature-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .feature-content {
            position: relative;
            z-index: 2;
        }

        .feature-showcase .section-eyebrow {
            color: var(--gold-light);
        }

        .feature-showcase .section-title {
            color: var(--white);
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .feature-showcase .section-description {
            color: rgba(255, 255, 255, 0.7);
            text-align: left;
            margin-bottom: 2rem;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(196, 163, 90, 0.2);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-check svg {
            width: 12px;
            height: 12px;
            stroke: var(--gold-light);
        }

        .feature-list span {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
        }

        .feature-visual {
            position: relative;
        }

        .feature-video-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 60px 120px rgba(0, 0, 0, 0.4);
        }

        .feature-video-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
           /* border: 1px solid rgba(196, 163, 90, 0.3); */
            border-radius: 8px;
            pointer-events: none;
            z-index: 2;
        }

        .feature-video {
            width: 100%;
            display: block;
            aspect-ratio: 16/10;            
        }

        .feature-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gold);
            color: var(--charcoal);
            padding: 1.5rem;
            border-radius: 4px;
            text-align: center;
            z-index: 3;
        }

        .feature-badge-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1;
        }

        .feature-badge-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* Process Section */
        .process-section {
            padding: 8rem 2rem;
            background: var(--pearl);
        }

        .process-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border: 2px solid var(--gold);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--gold);
            position: relative;
            z-index: 2;
            transition: all 0.4s var(--transition);
        }

        .process-step:hover .process-number {
            background: var(--gold);
            color: var(--white);
            transform: scale(1.1);
        }

        .process-title {
            font-size: 1.25rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .process-description {
            font-size: 0.9rem;
            color: var(--slate);
        }

        /* Diamond Feed Section */
        .diamond-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .diamond-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(196, 163, 90, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .diamond-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 6rem;
            align-items: center;
        }

        .diamond-visual {
            position: relative;
        }

        .diamond-count {
            text-align: center;
            padding: 4rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(196, 163, 90, 0.2);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .diamond-count-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 500;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .diamond-count-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .diamond-types {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .diamond-type {
            text-align: center;
        }

        .diamond-type-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(196, 163, 90, 0.15);
            border-radius: 50%;
            margin: 0 auto 0.75rem;
        }

        .diamond-type-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold-light);
        }

        .diamond-type-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.04em;
        }

        .diamond-content {
            position: relative;
            z-index: 2;
        }

        .diamond-section .section-eyebrow {
            color: var(--gold-light);
        }

        .diamond-section .section-title {
            color: var(--white);
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .diamond-section .section-description {
            color: rgba(255, 255, 255, 0.7);
            text-align: left;
            margin-bottom: 2rem;
        }

        /* Testimonial/Stats */
        .stats-section {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .stats-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .stat-card {
            padding: 2rem;
        }

        .stat-card-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 500;
            color: var(--charcoal);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-card-number span {
            color: var(--gold);
        }

        .stat-card-label {
            font-size: 0.85rem;
            color: var(--slate);
            letter-spacing: 0.02em;
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 2rem;
            background: var(--pearl);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            margin-bottom: 1rem;
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s var(--transition);
        }

        .faq-item:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: var(--charcoal);
            transition: all 0.3s var(--transition);
        }

        .faq-question:hover {
            color: var(--gold);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--pearl);
            border-radius: 50%;
            flex-shrink: 0;
            margin-left: 1rem;
            transition: all 0.3s var(--transition);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--charcoal);
            transition: transform 0.3s var(--transition);
        }

        .faq-item.active .faq-icon {
            background: var(--gold);
        }

        .faq-item.active .faq-icon svg {
            stroke: var(--white);
            transform: rotate(45deg);
        }

        .faq-answer {          
            overflow: hidden;
            transition: max-height 0.4s var(--transition);
        }

        .faq-answer-inner {
            padding: 0 2rem 1.5rem;
            color: var(--slate);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .faq-answer {
			height: 0;
			overflow: hidden;
			transition: height 0.4s var(--transition);
		}
		.reveal {
			opacity: 0;
			transform: translateY(40px);
		}
		.reveal.active {
			opacity: 1;
			transform: translateY(0);
		}



        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            background: linear-gradient(135deg, var(--charcoal) 0%, #252525 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(ellipse at center, rgba(196, 163, 90, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-description {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-gold {
            background: var(--gold);
            color: var(--charcoal);
        }

        .btn-gold:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(196, 163, 90, 0.3);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline-light:hover {
            background: var(--white);
            color: var(--charcoal);
            border-color: var(--white);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            padding: 5rem 2rem 2rem;
            background: var(--charcoal);
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            filter: brightness(1.2);
        }

        .footer-logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 500;
            color: var(--white);
        }

        .footer-description {
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-heading {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s var(--transition);
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s var(--transition);
        }

        .footer-legal a:hover {
            color: var(--gold);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--pearl);
            z-index: 999;
            transition: right 0.4s var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu .nav-link {
            font-size: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-visual {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            .hero-content {
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid-centered .service-card {
                flex: 0 1 calc(50% - 1rem);
                max-width: calc(50% - 1rem);
            }

            .feature-grid,
            .diamond-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .feature-content,
            .diamond-content {
                order: 2;
            }

            .feature-showcase .section-title,
            .feature-showcase .section-description,
            .diamond-section .section-title,
            .diamond-section .section-description {
                text-align: center;
            }

            .feature-badge {
                bottom: -72px;
				right: auto;
				left: 88%;
				padding: 1rem;
				transform: translateX(-50%);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .nav {
                display: none;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .services-grid-centered {
                flex-direction: column;
            }

            .services-grid-centered .service-card {
                flex: 0 1 100%;
                max-width: 100%;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }

            .process-grid::before {
                display: none;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .header {
                padding: 1rem;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }

            .stat {
                text-align: center;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }

            .diamond-types {
                flex-direction: column;
                gap: 1.5rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons {
                flex-direction: column;
            }
			.service-button {
			  margin-top: 2rem;
			}
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--transition);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
		/* Header scroll state */
		.header.scrolled {
			background: rgba(248, 246, 243, 0.95); /* white glass */
			backdrop-filter: blur(20px);
			box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
		}
		.feature-video-wrapper,
		.feature-video-wrapper video {
			cursor: pointer;
		}
		.hero-video-wrapper,
			.hero-video-wrapper video {
				cursor: pointer;
			}
#actions-box>span:hover{

		color: #4CAF50;
	}
	#srch-box{

		width: 0%;
		height: 30px;
		transition: 0.3s;
	}

	#srch-box>input{
		border: 1px solid #4CAF50;
		padding: 0px 5px;
		width: 100%;
		display: none;
		z-index: 99;
	}

	@media(max-width: 730px) {
		#srch-box>input{
			width: 150px;
		}
	}


	.act-sp{

		color: #4CAF50;
	}
	.service-button {
		display: flex;
		justify-content: center;
	}
	.service-card.reveal.active p.service-description {
		height: 75px;
	}
	.service-card.reveal.active ul.service-features {
		height: 150px;
	}
		/* ── Video: pointer cursor ── */
#featureVideo {
    cursor: pointer;
    display: block;
    width: 100%;
}

/* ── Hint bar sits flush below the video wrapper ── */
#envisionHintWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.04);   
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

/* Small icon left of text */
#envisionHintIcon {
    font-size: 10px;
    color: #a07840;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

/* The text itself */
#envisionHint {
    margin: 0;
    padding: 0;
    font-size: 11px;
    color: #ffff;
    letter-spacing: 0.4px;
    line-height: 1.4;
    text-align: center;
    cursor: default;
    transition: color 0.3s ease;
}

/* Sound ON state — gold tint on text + icon */
#envisionHintWrap.state-sound #envisionHintIcon {
    color: #c9973a;
}
#envisionHintWrap.state-sound #envisionHint {
    color: #c9973a;
}
 .service-button {
  display: flex;
  justify-content: center;
}
.feature-video{
aspect-ratio: auto;
}

/* ── 247 Envision Nav Dropdown ── */
.env247-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 0 20px;
}

.env247-nav-link {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Dropdown wrapper */
.env247-dropdown {
  position: relative;
  display: inline-block;
  
}

/* Trigger button */
.env247-dropdown-btn {
background: none;
  border: none;
  padding: 0.5rem 1rem !important;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s var(--transition);
}

.env247-arrow {
  font-size: 9px;
  color: #555;
  transition: transform 0.2s ease;
}

/* Dropdown menu */
.env247-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.env247-dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}

.env247-dropdown-menu li a:hover {
  background: #f5f5f5;
}

.env247-dropdown:hover .env247-arrow {
  transform: rotate(180deg);
}
.nav{
	gap:0px;
}
.feature-video {
    width: 100%;
    height: auto;
    display: block;	
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}