/* Reset and Base Styles */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.i-1 {
    --i: 1;
}

.i-2 {
    --i: 2;
}

.i-3 {
    --i: 3;
}

.i-4 {
    --i: 4;
}

.i-5 {
    --i: 5;
}

.cover-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #e5e7eb;
    background: #020202;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: #111827;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    z-index: 10001;
    text-decoration: none;
}

.skip-link:focus {
    top: 8px;
}

/* Homepage Layout */
.homepage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #020202;
}

/* Header Styles - Combined Premium + Architectural */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(2, 2, 2, 0.95);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    height: 65px;
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-logo h1,
.nav-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
    font-family: var(--font-sans);
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    text-transform: uppercase;
    font-style: normal;
    cursor: pointer;
    margin: 0;
}

.nav-logo h1::after,
.nav-logo .logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-logo a:hover h1::after,
.nav-logo a:hover .logo-text::after {
    width: 100%;
}

.nav-logo a:hover h1,
.nav-logo a:hover .logo-text {
    color: #3b82f6;
    transform: translateY(-1px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    transform: translateY(-1px);
}

.nav-link:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 10000;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 6px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - Combined Premium + Architectural */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    background-color: #020202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding-top: calc(65px + 1.5rem);
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Image on its own layer + alpha mask = fades into page bg (no overlay color mismatch) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('optimized-images/13_png-small.webp');
}

@media (min-width: 641px) {
    .hero::before {
        background-image: url('optimized-images/13_png-medium.webp');
    }
}

@media (min-width: 1025px) {
    .hero::before {
        background-image: url('optimized-images/13_png-large.webp');
    }
}

@media (min-width: 1281px) {
    .hero::before {
        background-image: url('optimized-images/13_png-xl.webp');
    }
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url('optimized-images/13_png.webp')) {
    .hero::before {
        background-image: url('optimized-images/13_png-small.jpg');
    }
    
    @media (min-width: 641px) {
        .hero::before {
            background-image: url('optimized-images/13_png-medium.jpg');
        }
    }
    
    @media (min-width: 1025px) {
        .hero::before {
            background-image: url('optimized-images/13_png-large.jpg');
        }
    }
    
    @media (min-width: 1281px) {
        .hero::before {
            background-image: url('optimized-images/13_png-xl.jpg');
        }
    }
}

.hero::before {
    background-repeat: no-repeat;
    background-position: right calc(50% + clamp(1.25rem, 3.5vh, 3rem));
    background-size: 70% auto;
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 14%,
        rgba(0, 0, 0, 0.2) 24%,
        rgba(0, 0, 0, 0.55) 34%,
        rgba(0, 0, 0, 0.88) 42%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 14%,
        rgba(0, 0, 0, 0.2) 24%,
        rgba(0, 0, 0, 0.55) 34%,
        rgba(0, 0, 0, 0.88) 42%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Darken the left side of the hero photo (blend toward copy / black area) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(2, 2, 2, 0.92) 0%,
        rgba(2, 2, 2, 0.58) 22%,
        rgba(2, 2, 2, 0.22) 48%,
        transparent 78%
    );
}

.hero-container {
    display: flex;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: min(36rem, 92vw);
    z-index: 2;
    position: relative;
    text-align: left;
    margin: 0;
    margin-top: clamp(1.75rem, 4.5vh, 3.5rem);
    padding: 0 2rem 0 clamp(1.5rem, 6vw, 6rem);
}

.hero-content::before {
    display: none;
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    font-family: var(--font-sans);
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-title-line2 {
    font-weight: 500;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    background-size: 300% 100%;
    font-weight: 600;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #1d4ed8);
    border-radius: 2px;
    animation: line-expand 2s ease 1.2s forwards;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

@keyframes line-expand {
    to { width: 120px; }
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.35vw, 1.1875rem);
    opacity: 0.92;
    color: rgba(255, 255, 255, 0.94);
    margin: 0 0 1.75rem 0;
    max-width: 34em;
    line-height: 1.55;
    text-align: left;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 11px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 150%;
}

.btn-primary {
    background: #FFFFFF;
    color: #020202;
    border: 1px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    background: #f8f9fa;
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}





/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}







/* Services Section */
.services-section {
    background: #0a0a0a;
    padding: 3.75rem 0 4.5rem;
    position: relative;
    margin-top: 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #333333;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.6rem;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

.services-subtitle {
    max-width: 700px;
    margin: 0 auto 2.2rem;
    text-align: center;
    color: #aeb6c2;
    font-size: 0.98rem;
    line-height: 1.6;
    font-family: var(--font-sans);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.7rem 1.4rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 240px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 24px 38px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin: 0 auto 1.15rem;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(96, 165, 250, 0.08));
    border: 2px solid rgba(59, 130, 246, 0.28);
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.65rem;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.06);
    border-color: rgba(96, 165, 250, 0.75);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.35);
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.free-badge {
    display: none;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.service-card p {
    color: #b7c3d4;
    line-height: 1.6;
    font-size: 0.98rem;
    margin-bottom: 0;
    font-weight: 400;
    font-family: var(--font-sans);
}

.view-more {
    color: #ffffff;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.view-more:hover {
    color: #3b82f6;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.4rem;
        justify-items: stretch;
    }

    .services-grid > .service-card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        justify-items: stretch;
    }

    .services-grid > .service-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .services-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .services-subtitle {
        margin-bottom: 1.4rem;
        font-size: 0.95rem;
    }

    .service-card {
        min-height: auto;
        padding: 1.4rem 1rem 1.25rem;
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        justify-items: stretch;
    }

    .services-grid > .service-card:nth-child(3) {
        grid-column: span 2;
    }

    .service-card {
        padding: 1.1rem 0.85rem 1rem;
        width: 100%;
        justify-self: stretch;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 0.85rem;
    }

    .service-icon i {
        font-size: 1.25rem;
    }

    .service-card h3 {
        font-size: 0.92rem;
        margin-bottom: 0.55rem;
    }

    .service-card p {
        font-size: 0.82rem;
        line-height: 1.45;
    }
}

@media (max-width: 768px) {
    .home-footer .footer-section {
        display: none;
    }
}

/* Products Category Section - SMEG Style */
.products-section {
    background: #ffffff;
    padding: 2rem 0 3rem;
    position: relative;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.products-subtitle {
    font-size: 1rem;
    color: #666666;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.products-trust-strip {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    color: #333333;
    background: #fafafa;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 500;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.categories-grid > .category-card {
    grid-column: span 2;
}

/* Center last row when exactly two cards remain */
.categories-grid > .category-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.categories-grid > .category-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: 4 / span 2;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f8f8f8;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transition: transform 2s ease-in-out;
}

.category-image img.image-shift-down {
    object-position: center 70%;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    text-align: left;
    padding: 1.35rem 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    flex: 1;
}

.category-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.005em;
    text-transform: none;
    line-height: 1.35;
}

.category-content p {
    color: #666666;
    line-height: 1.58;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.category-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    display: grid;
    gap: 0.45rem;
    width: 100%;
}

.category-bullets li {
    color: #333333;
    font-size: 0.84rem;
    line-height: 1.45;
    letter-spacing: 0.01em;
    padding-left: 1rem;
    position: relative;
}

.category-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.54em;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: #000000;
}

.category-content .category-proof {
    color: #333333;
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: -0.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #999999;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.stat i {
    color: #000000;
    font-size: 0.65rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid #000000;
    transition: all 0.3s ease;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-height: 40px;
    margin-top: auto;
}

.category-link:hover {
    background: #000000;
    color: #ffffff;
}

.category-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(3px);
}

.capabilities-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
}

.capabilities-main-cta {
    margin-top: 0;
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    padding-inline: 1.5rem;
}

.capabilities-main-cta:hover {
    background: #1f2937;
    border-color: #1f2937;
}

.products-cta {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    border-radius: 24px;
    margin: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 90% 55% at 50% -15%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-header {
    text-align: center;
    margin-bottom: 0;
}

.cta-section-eyebrow {
    display: inline-block;
    font-size: clamp(0.7rem, 0.35vw + 0.6rem, 0.8125rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(96, 165, 250, 0.95);
    margin: 0 auto 1.1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-shadow: 0 1px 12px rgba(59, 130, 246, 0.35);
}

.cta-main-title {
    font-size: clamp(2.125rem, 3.25vw + 1rem, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 1.35rem;
    max-width: 46rem;
    line-height: 1.18;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: -0.025em;
    text-wrap: balance;
    text-transform: none;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-section-lede {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.1875rem);
    line-height: 1.65;
    margin: 0 auto 1.75rem;
    max-width: 38rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.cta-pillar-strip {
    list-style: none;
    margin: 0 auto 2.85rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem 1rem;
    max-width: 52rem;
}

.cta-pillar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem 0.55rem 0.85rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-pillar-item:hover {
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.cta-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.cta-pillar-label {
    font-size: clamp(0.8rem, 0.4vw + 0.72rem, 0.9rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Montserrat', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .cta-pillar-label {
        white-space: normal;
        text-align: left;
        max-width: 9rem;
    }
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* Responsive Design for Products Section */
@media (max-width: 1400px) {
    .categories-grid {
        gap: 1.5rem;
    }
    
    .products-container {
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .products-section {
        padding: 2.5rem 0 3rem;
    }

    .products-container {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
    
    .products-title {
        font-size: 1.8rem;
    }
    
    .products-subtitle {
        font-size: 0.9rem;
    }
    
    .category-image {
        height: 300px;
    }
    
    .products-cta {
        margin: 1rem 0;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        border-radius: 18px;
    }
    
    .cta-main-title {
        font-size: clamp(1.7rem, 4.8vw, 2.35rem);
        line-height: 1.17;
        letter-spacing: -0.028em;
        max-width: min(42rem, 100%);
    }
    
    .cta-section-lede {
        font-size: clamp(1.02rem, 2.35vw, 1.125rem);
        line-height: 1.58;
        margin-bottom: 1.5rem;
        max-width: 38rem;
        font-weight: 400;
    }

    .cta-pillar-strip {
        margin-bottom: 2.35rem;
        gap: 0.65rem;
    }

    .cta-pillar-item {
        padding: 0.5rem 0.95rem 0.5rem 0.75rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .categories-grid > .category-card,
    .categories-grid > .category-card:nth-last-child(2):nth-child(3n + 1),
    .categories-grid > .category-card:nth-last-child(1):nth-child(3n + 2) {
        grid-column: auto;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .products-title {
        font-size: 1.6rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}



/* Footer Styles */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 2.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.footer-logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.footer-logo .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.footer-contact-icon {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 0.85rem;
    min-width: 16px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        grid-template-areas: 
            "brand brand brand"
            "services products company";
    }
    
    .footer-brand {
        max-width: 100%;
        grid-area: brand;
        margin-bottom: 2rem;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .footer-section:nth-child(2) {
        grid-area: services;
    }
    
    .footer-section:nth-child(3) {
        grid-area: products;
    }
    
    .footer-section:nth-child(4) {
        grid-area: company;
    }
    
    .footer-contact-item {
        justify-content: center;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.25rem;
        overflow: visible;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        text-align: left;
    }
    
    .footer-container {
        padding: 0 1rem;
        overflow: visible;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-links a {
        font-size: 0.86rem;
    }
    
    .footer-links li {
        margin-bottom: 0.55rem;
    }
    
    .footer-brand {
        padding-bottom: 1.25rem;
        margin-bottom: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .footer-description {
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }
    
    .footer-contact {
        text-align: left;
        margin-bottom: 1.25rem;
    }

    .footer-contact-item {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 0.55rem;
        justify-content: flex-start;
        text-align: left;
        word-break: break-word;
    }

    .footer-section {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-social a {
        width: 34px;
        height: 34px;
    }
    
    .footer-copyright {
        font-size: 0.78rem;
        text-align: left;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        text-align: left;
    }

    .footer-legal {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
        width: 100%;
    }

    .footer-legal a {
        font-size: 0.78rem;
        text-align: left;
    }
}

/* Consultation Options Grid */
.consultation-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Horizontal inset for this block comes from .products-cta padding — avoid triple gutters */
.products-cta .consultation-options-grid {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.consultation-option-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.consultation-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.015) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.consultation-option-card:hover::before {
    opacity: 1;
}

.consultation-option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.consultation-option-card:hover::after {
    opacity: 1;
}

.consultation-option-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.consultation-option-card.featured {
    border-color: rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.consultation-option-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.premium {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.consultation-option-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.coming-soon {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.7;
    cursor: not-allowed;
}

.consultation-option-card.exclusive {
    border-color: rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.02) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.consultation-option-card.exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
}

.consultation-option-card.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.coming-soon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5a2b, #a0722b);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.option-icon.disabled {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    opacity: 0.6;
}

.consultation-option-card.coming-soon:hover .option-icon.disabled {
    transform: none;
}

.option-cta.disabled {
    background: rgba(107, 114, 128, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(107, 114, 128, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

.option-cta.disabled:hover {
    transform: none;
    box-shadow: none;
}

.featured-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.premium-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.exclusive-badge {
    position: static;
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.option-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-icon:hover::before {
    opacity: 1;
}

.premium-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.exclusive-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.consultation-option-card:hover .option-icon {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.consultation-option-card:hover .premium-icon {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.consultation-option-card:hover .exclusive-icon {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.consultation-option-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: none;
}

.badge-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.consultation-option-card p.option-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
}

.option-features {
    margin-bottom: 2rem;
}

.option-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.meta-item i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.premium .meta-item i {
    color: #3b82f6;
}

.exclusive .meta-item i {
    color: #3b82f6;
}

.consultation-option-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-align: left;
    font-weight: 400;
    line-height: 1.4;
}

.consultation-option-card .feature-item i {
    color: #3b82f6;
    font-size: 0.9rem;
    min-width: 16px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    line-height: 1;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.premium .feature-item i {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.exclusive .feature-item i {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-cta {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.option-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-cta:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.option-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.option-cta:hover::before {
    left: 100%;
}

/* Responsive Design for Consultation Options */
@media (max-width: 1400px) {
    .consultation-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 1200px;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.7rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .consultation-option-card .feature-item {
        font-size: 0.68rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.68rem;
    }
}

@media (max-width: 1024px) {
    .consultation-option-card .feature-item {
        font-size: 0.66rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.66rem;
    }
}

@media (max-width: 900px) {
    .consultation-option-card .feature-item {
        font-size: 0.65rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.65rem;
    }
    
    .hero-subtitle {
        line-height: 1.48;
    }
}

/* Premium Card Animations */
@keyframes premiumCardGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.featured {
    animation: premiumCardGlow 4s ease-in-out infinite;
}

@keyframes premiumCardGlowPurple {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.premium {
    animation: premiumCardGlowPurple 4s ease-in-out infinite;
}

@keyframes premiumCardGlowGold {
    0%, 100% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 15px rgba(59, 130, 246, 0.08);
    }
}

.consultation-option-card.exclusive {
    animation: premiumCardGlowGold 4s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .consultation-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .consultation-option-card {
        padding: 2rem 1.5rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.64rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.64rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .consultation-option-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-option-card {
        padding: 1.5rem 1rem;
    }
}

/* Interactive Button Styles */
.area {
  --ease-elastic: cubic-bezier(0.5, 2, 0.3, 0.8);
  --ease-elastic-2: cubic-bezier(0.5, -1, 0.3, 0.8);
  --primary: #ff8800;
  --rounded-max: 100px;
  --rounded-min: 10px;
  --h: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  inset: 0;
}

.area-wrapper {
  position: relative;
  padding: 20px 5px;
  cursor: pointer;
  display: inline-block;
}

.area-wrapper:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 6px;
  border-radius: 999px;
}

@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;
    }

    header {
        transition: none !important;
    }
}

.area-wrapper:hover .wrapper {
  transform: translateY(0) scale(1);
}

.area-wrapper:hover .wrapper .case .mask {
  box-shadow:
    inset 6px -12px 12px -8px black,
    inset 8px -14px 10px -10px white,
    0 15px 40px -4px #111;
}

.area-wrapper:hover .wrapper .part-2 .glass {
  box-shadow:
    inset 0 0 6px -3px white,
    inset 0 -8px 8px -6px rgba(255, 255, 255, 0.4),
    inset 6px -12px 12px -8px black,
    inset 6px -8px 10px -10px white,
    0 15px 40px -4px #111;
}

.area svg {
  overflow: visible;
}

.wrapper {
  display: block;
  border-radius: 100px;
  position: relative;
  z-index: 2;
  transition: all 0.6s var(--ease-elastic);
  transform: translateY(-10px) scale(1.02);
}

.wrapper input {
  position: absolute;
  background: transparent;
  opacity: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
  outline: none;
}

.button {
  background: transparent;
  display: flex;
  border: none;
  padding: 0;
  margin: 0;
}

.button::before {
  display: none;
}

.button::after {
  display: none;
}

.part-1 {
  position: relative;
  z-index: 1;
  height: var(--h);
  width: 70px;
  border-radius: var(--rounded-max) var(--rounded-min) var(--rounded-min)
    var(--rounded-max);
}

.part-1 .line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  transition: all 0.4s ease;
}

.part-1 .line::before {
  display: none;
}

.part-1 .screw {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  z-index: -1;
  overflow: hidden;
  padding: 0;
  transform: none;
  display: flex;
  align-items: center;
}

.part-1 .screw svg {
  width: auto;
  height: 34px;
}

.part-1 .screw svg g {
  transform-origin: center;
}

.part-1 .screw svg .dot {
  color: #8e8c8b;
}

.part-1 .case {
  height: var(--h);
  width: 70px;
  border-radius: inherit;
  transform: translateX(-35px);
  transition: all 0.9s var(--ease-elastic);
}

.part-1 .case .mask {
  position: absolute;
  overflow: hidden;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    #2c2e31 0%,
    #31343e 20%,
    #212329 100%
  );
  box-shadow:
    inset 6px -12px 12px -8px black,
    inset 8px -14px 10px -10px white,
    0 20px 50px -4px #111;
  transition: all 0.9s var(--ease-elastic);
}

.part-1 .case .mask::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  left: 30%;
  top: 23%;
  width: 100%;
  height: 30%;
  background: white;
  filter: blur(12px);
}

.part-1 .case .mask::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  mix-blend-mode: overlay;
}

.part-2 {
  position: relative;
  height: var(--h);
  width: 250px;
  border-radius: var(--rounded-min) var(--rounded-max) var(--rounded-max)
    var(--rounded-min);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}

.part-2 .glass {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: all 0.9s var(--ease-elastic);
  border-radius: inherit;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  box-shadow:
    inset 0 0 6px -3px white,
    inset 0 -8px 8px -6px rgba(255, 255, 255, 0.4),
    inset 6px -12px 12px -8px black,
    inset 6px -8px 10px -10px white,
    0 20px 50px -4px #111;
}

.part-2 .glass::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  right: 14%;
  height: 70%;
  border-radius: 0 25px 0 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

.part-2 .glass::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15%;
  right: 5%;
  height: 75%;
  border-radius: 0 30px 30px 0;
  box-shadow: inset -2px -6px 5px -5px rgba(255, 255, 255, 0.8);
  filter: blur(3px);
}

.part-2 .glass .glass-reflex {
  position: absolute;
  inset: 0;
  width: 70%;
  border-radius: 0 50% 50% 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: translateX(-115%) skewX(30deg);
}

.part-2 .glass .glass-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.part-2 .path-glass {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s linear;
  opacity: 0;
}

.part-2 .path-glass path {
  stroke-dashoffset: 430;
  stroke-dasharray: 430 430;
  animation: 1.4s path-glass ease infinite;
}

@keyframes path-glass {
  0% {
    stroke-dasharray: 430 430;
    color: greenyellow;
    opacity: 1;
    filter: blur(2px);
  }
  50% {
    stroke-dasharray: 860 430;
    opacity: 1;
    filter: blur(4px);
  }
  100% {
    stroke-dasharray: 860 430;
    color: var(--primary);
    opacity: 0;
  }
}

.part-2 .filament {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: 26px;
  stroke-width: 2px;
  opacity: 0.3;
}

.part-2 .filament path {
  transition: all 0.6s ease-in-out;
}

.part-2 .filament-on {
  opacity: 1;
}

.part-2 .filament-on path {
  stroke-dashoffset: 100;
  stroke-dasharray: 100 100;
}

.part-2 .filament-blur {
  opacity: 1;
  filter: blur(8px);
  color: rgb(255, 208, 0);
  stroke-width: 10px;
}

.text {
  transition: all 0.3s ease;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  position: absolute;
  inset: 0;
  height: 100%;
  line-height: 1;
  white-space: nowrap;
}

.text span {
  display: block;
  color: transparent;
  position: relative;
}

.text span::before,
.text span::after {
  content: attr(data-label);
  position: absolute;
  font-size: 13px;
  left: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}

.text span::before {
  opacity: 1;
  transform: translateY(0);
}

.text span::after {
  opacity: 1;
  transform: translateY(0);
}

.area-wrapper input:checked ~ .button .filament path {
  transition-delay: 0.6s;
}

.area-wrapper:hover input:checked ~ .button .filament path {
  stroke-dasharray: 100 0;
}

.area-wrapper input:checked ~ .button .part-1 .case {
  transform: translateX(0px);
  transition: all 1.25s var(--ease-elastic-2);
}

.area-wrapper:hover input:checked ~ .button::before,
.area-wrapper:hover input:checked ~ .button::after,
.area-wrapper:hover .button .path-glass {
  display: none;
}

.area-wrapper:hover .button .part-1 .line {
  opacity: 0;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .line::before {
  box-shadow: 1px 0 10px 3px rgba(255, 220, 145, 0.4);
  background: rgb(140, 140, 140);
}

.area-wrapper:hover .glass-reflex {
  animation: reflex 0.6s ease;
}

.area-wrapper:hover .text span::before {
  animation: char-in 1s ease calc(var(--i) * 0.03s) forwards;
}

.area-wrapper:hover .text span::after,
.area-wrapper input:not(:checked) ~ .button .text.state-1 span::before,
.area-wrapper input:not(:checked) ~ .button .text.state-1 span::after,
.area-wrapper input:checked ~ .button .text.state-2 span::before,
.area-wrapper input:checked ~ .button .text.state-2 span::after {
  opacity: 0;
  animation: char-out 1.3s ease calc(var(--i) * 0.04s) backwards;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .screw g {
  animation: pulse 0.8s ease calc(var(--i) * 0.1s) backwards;
}

.area-wrapper input:checked ~ .button .part-1 .screw g {
  animation: pulse-out 0.8s ease calc((5 - var(--i)) * 0.2s) backwards;
}

.area-wrapper input:not(:checked) ~ .button .part-1 .screw .dot {
  animation: dot 0.7s ease calc(var(--i) * 0.15s) backwards;
}

.area-wrapper input:checked ~ .button .part-1 .screw .dot {
  animation: dot-out 0.7s ease calc((3 - var(--i)) * 0.15s) forwards;
}

@keyframes line {
  0% {
    height: 0%;
    opacity: 1;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 140%;
    opacity: 0;
  }
}

@keyframes dot {
  30% {
    color: var(--primary);
    filter: blur(2px);
  }
}

@keyframes dot-out {
  40% {
    color: white;
    filter: blur(2px);
  }
}

@keyframes pulse {
  30% {
    transform: scaleY(0.8);
  }
}

@keyframes pulse-out {
  40% {
    transform: scaleY(0.8);
  }
}

@keyframes char-in {
  0% {
    opacity: 0;
    transform: scale(10) translateX(-25%);
    filter: blur(10px);
    color: rgb(0, 251, 255);
  }
  25% {
    transform: translateY(-15%);
    opacity: 1;
    filter: blur(1px);
    color: var(--primary);
  }
  50% {
    transform: translateY(7%);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes char-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-70%);
    opacity: 0;
    filter: blur(4px);
  }
}

@keyframes reflex {
  0% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(140%);
  }
}

.noise {
  display: none;
}

.bg {
  display: none;
}

.bg::before {
  display: none;
}

.bg .light-1 {
  display: none;
}

.bg .light-2 {
  display: none;
}

.bg .light-3 {
  display: none;
}

/* Black Two-Column Section */
.sectors-section {
    background: #0a0a0a;
    padding: 5.25rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sectors-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sectors-header {
    text-align: left;
    margin-bottom: 2.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sectors-title {
    font-family: var(--font-sans);
    font-size: 1.65rem;
    font-weight: 600;
    color: #fafafa;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sectors-subtitle {
    color: #8b95a8;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    max-width: 52ch;
    margin: 0;
    line-height: 1.65;
    font-weight: 400;
}

.sectors-list {
    margin: 0;
    padding: 0;
}

.sectors-list-head {
    display: grid;
    grid-template-columns: minmax(0, 220px) 1fr;
    gap: 1.5rem 2.5rem;
    padding: 0 0 0.65rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sectors-list-head span {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
}

.sector-row {
    display: grid;
    grid-template-columns: minmax(0, 220px) 1fr;
    gap: 1.5rem 2.5rem;
    align-items: baseline;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0;
}

.sector-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.sector-row-label {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.sector-row-label h3 {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f3f4f6;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.35;
}

.sector-row-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.65;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

.sector-row-desc a {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sector-row-desc a:hover {
    color: #bfdbfe;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.sector-card {
    margin: 0;
    padding: 1.45rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.sector-card:hover {
    transform: translateY(-4px);
    border-color: rgba(151, 170, 255, 0.52);
    background:
        linear-gradient(160deg, rgba(120, 146, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.sector-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #f9fafb;
    letter-spacing: -0.015em;
    margin: 0 0 0.55rem;
    line-height: 1.35;
}

.sector-card p {
    margin: 0;
    color: #a6b0c1;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Leadership Background Section */
.leadership-section {
    background: #ffffff;
    padding: 4.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.leadership-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.leadership-header {
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.leadership-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.9rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.leadership-subtitle {
    margin: 0;
    color: #4b5563;
    font-family: var(--font-sans);
    font-size: 1.03rem;
    line-height: 1.68;
    font-weight: 400;
}

.leadership-points {
    margin: 0 0 0.85rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    max-width: 900px;
}

.leadership-points li {
    margin: 0;
    padding: 0.7rem 0.85rem 0.7rem 2rem;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    background: #f8fafc;
    color: #1f2937;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.55;
    position: relative;
}

.leadership-points li::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    top: 1.05rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #2563eb;
}

.leadership-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.leadership-metric {
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    padding: 0.95rem 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.leadership-metric-value {
    margin: 0 0 0.35rem;
    color: #0f172a;
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.leadership-metric-label {
    margin: 0;
    color: #475569;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.45;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.leadership-card {
    border: 1px solid #dfe5ee;
    border-radius: 14px;
    padding: 1rem 0.95rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
}

.leadership-card h3 {
    margin: 0 0 0.5rem;
    color: #0f172a;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.leadership-card p {
    margin: 0 0 0.5rem;
    color: #4b5563;
    font-family: var(--font-sans);
    font-size: 0.86rem;
    line-height: 1.52;
}

.leadership-card p:last-child {
    margin-bottom: 0;
}

.leadership-card strong {
    color: #111827;
    font-weight: 600;
}

.leadership-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin-bottom: 0.95rem;
}

.leadership-milestone {
    border-left: 3px solid #2563eb;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.75rem 0.8rem;
}

.milestone-year {
    margin: 0 0 0.2rem;
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.milestone-title {
    margin: 0 0 0.25rem;
    color: #0f172a;
    font-size: 0.88rem;
    line-height: 1.3;
    font-weight: 600;
}

.milestone-copy {
    margin: 0;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.45;
}

.leadership-quote {
    margin: 0 0 0.9rem;
    border-left: 4px solid #0f172a;
    background: #f8fafc;
    padding: 0.65rem 0.9rem;
    color: #111827;
    font-size: 0.9rem;
    line-height: 1.55;
    font-style: italic;
}

.leadership-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.leadership-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.74rem;
    line-height: 1.25;
    font-weight: 500;
}

.leadership-disclaimer {
    margin: 0;
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.55;
    max-width: 78ch;
}

.leadership-summary {
    margin: 0 0 0.6rem;
    color: #1f2937;
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 78ch;
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 4rem 0;
    }

    .sectors-header {
        text-align: left;
        margin-bottom: 2rem;
    }

    .sectors-title {
        font-size: 1.45rem;
    }

    .sectors-list-head {
        display: none;
    }

    .sector-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.15rem 0;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .sector-card {
        padding: 1.2rem 1.1rem;
    }

    .leadership-section {
        padding: 3.5rem 0;
    }

    .leadership-title {
        font-size: 1.7rem;
    }

    .leadership-subtitle {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .leadership-points {
        gap: 0.55rem;
    }

    .leadership-points li {
        font-size: 0.85rem;
        padding: 0.65rem 0.75rem 0.65rem 1.75rem;
    }

    .leadership-points li::before {
        left: 0.72rem;
        top: 0.97rem;
        width: 0.45rem;
        height: 0.45rem;
    }

    .leadership-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .leadership-metric {
        padding: 0.85rem 0.75rem;
    }

    .leadership-metric-value {
        font-size: 1.15rem;
    }

    .leadership-metric-label {
        font-size: 0.75rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .leadership-timeline {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .leadership-quote {
        font-size: 0.86rem;
        padding: 0.6rem 0.75rem;
    }

    .leadership-card {
        padding: 1rem 0.9rem;
    }

    .leadership-card p {
        font-size: 0.84rem;
    }

    .leadership-pill {
        font-size: 0.7rem;
    }

    .leadership-disclaimer {
        font-size: 0.72rem;
    }

    .leadership-summary {
        font-size: 0.86rem;
    }

    .toolchain-section {
        padding: 3.25rem 0;
    }

    .toolchain-container h2 {
        font-size: 1.65rem;
    }

    .toolchain-intro {
        font-size: 0.93rem;
        line-height: 1.6;
        margin-bottom: 1.15rem;
    }

    .toolchain-grid {
        grid-template-columns: 1fr;
    }

    .toolchain-card {
        padding: 0.9rem 0.85rem;
    }

    .toolchain-card h3 {
        font-size: 0.9rem;
    }

    .toolchain-card p {
        font-size: 0.84rem;
    }

}

.black-section {
    background: #000000;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.black-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 1;
}

.black-container {
    width: 100%;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.black-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.black-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.black-text p {
    font-size: 1rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.toolchain-section {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.toolchain-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.toolchain-container h2 {
    margin: 0 0 0.75rem;
    color: #111827;
    font-size: 1.95rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-family: var(--font-sans);
}

.toolchain-intro {
    margin: 0 0 1.5rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 70ch;
}

.toolchain-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.toolchain-card {
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    background: #f8fafc;
    padding: 1rem 1rem 0.95rem;
}

.toolchain-card h3 {
    margin: 0 0 0.45rem;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-family: var(--font-sans);
}

.toolchain-card p {
    margin: 0;
    color: #334155;
    font-size: 0.88rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .toolchain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.black-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.black-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.black-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.black-cta i {
    transition: transform 0.3s ease;
}

.black-cta:hover i {
    transform: translateX(4px);
}

.black-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button i {
    color: #000000;
    font-size: 1.8rem;
    margin-left: 4px;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        height: 64px;
        padding: 0 1.5rem;
    }

    .nav-container {
        height: 100%;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        z-index: 10000;
    }

    .nav-logo h1,
    .nav-logo .logo-text {
        font-size: 1.4rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        z-index: 10000;
        flex-direction: row;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        padding: 80px 2rem 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        z-index: 9998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    /* Ensure nav-menu is properly hidden when not active */
    .nav-menu:not(.active) {
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        padding: 1rem 0;
    }
    
    /* Mobile hero styling - match other pages */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        min-height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding-top: 92px;
        padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
        box-sizing: border-box;
    }

    /* Full hero band height (photo scales to match section height, anchored right) */
    .hero::before {
        background-size: auto 100%;
        background-position: right calc(50% + clamp(1rem, 3vh, 2.5rem));
        -webkit-mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 4%,
            rgba(0, 0, 0, 0.22) 16%,
            rgba(0, 0, 0, 0.68) 30%,
            rgba(0, 0, 0, 1) 42%,
            rgba(0, 0, 0, 1) 100%
        );
        mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0) 4%,
            rgba(0, 0, 0, 0.22) 16%,
            rgba(0, 0, 0, 0.68) 30%,
            rgba(0, 0, 0, 1) 42%,
            rgba(0, 0, 0, 1) 100%
        );
    }

    /* Flat dimming over full hero (no gradient) — improves text contrast on small screens */
    .hero::after {
        background: rgba(2, 2, 2, 0.5);
    }
    
    .hero-container {
        position: relative;
        z-index: 3;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-content {
        text-align: center;
        max-width: 26rem;
        margin: clamp(1.25rem, 3.5vh, 2.5rem) auto 0 auto;
        margin-bottom: 0;
        padding: 0 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Remove rectangle background on mobile */
    .hero-content::before {
        display: none;
    }
    

    

    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.65rem, 5.5vw, 2.15rem);
        text-align: center;
        width: 100%;
        display: block;
        letter-spacing: -0.025em;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.8vw, 1.1rem);
        line-height: 1.5;
        margin: 0 0 1.35rem 0;
        text-align: center;
        width: 100%;
        display: block;
        max-width: 28rem;
    }
    
    /* Black section responsive */
    .black-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .black-text h2 {
        font-size: 2.5rem;
    }
    
    .black-text p {
        font-size: 1.1rem;
    }
    
    .black-features {
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .video-container {
        height: 300px;
    }
    
    /* Consultation options tablet improvements */
    .consultation-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 700px;
        margin: 0 auto;
        justify-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2rem;
    }
    
    .consultation-option-card h3 {
        font-size: 1.3rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.95rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.85rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.85rem;
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    /* Consultation options - ensure one card per row on all mobile devices */
    .consultation-options-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 700px;
        margin: 0 auto;
        justify-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        box-sizing: border-box;
        justify-self: stretch;
    }
    
    /* Increase section padding on mobile */
    .consultation-options-section {
        padding: 4rem 0;
    }
    
    .consultation-options-container {
        padding: 0 1rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.74rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.74rem !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px;
        padding: 0 0.5rem;
    }

    .nav-container {
        padding: 0 0.1rem;
        column-gap: 0.3rem;
    }

    .hamburger {
        width: 36px;
        height: 36px;
    }

    /* Mobile hero styling - smaller screens */
    .hero {
        min-height: 108vh;
        min-height: 108svh;
        min-height: calc(-webkit-fill-available + 2.5rem);
        padding-top: 88px;
        padding-bottom: max(2.25rem, env(safe-area-inset-bottom, 0px));
    }
    
    .hero-content {
        padding: 0 1rem;
        margin-top: clamp(1rem, 3vh, 2rem);
        margin-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.45rem, 6.5vw, 1.75rem);
        text-align: center;
        width: 100%;
        display: block;
        line-height: 1.18;
    }
    
    .hero-subtitle {
        font-size: clamp(0.94rem, 3.6vw, 1.05rem);
        line-height: 1.48;
        margin: 0.65rem 0 1.05rem 0;
        text-align: center;
        width: 100%;
        display: block;
        max-width: 94%;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
        text-align: center;
    }

    .area {
        width: 100%;
    }

    .wrapper {
        transform: translateY(-10px) scale(0.85);
    }

    .area-wrapper:hover .wrapper {
        transform: translateY(0) scale(0.85);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Consultation options mobile improvements */
    .consultation-options-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 650px;
        margin: 0 auto;
        justify-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2.5rem;
        text-align: center;
        width: 100%;
        min-width: unset;
        box-sizing: border-box;
        justify-self: stretch;
    }
    
    .consultation-option-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .option-features {
        margin-bottom: 1.5rem;
    }
    
    .consultation-option-card .feature-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-option-card .feature-item i {
        margin-top: 0;
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .consultation-option-card .feature-item span {
        text-align: center;
        display: block;
        width: 100%;
        font-size: 0.75rem;
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Products CTA mobile improvements — single horizontal gutter (container), full-width card */
    .products-container {
        padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    }

    .products-cta {
        margin: 0;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
        border-radius: 14px;
    }
    
    .cta-section-eyebrow {
        margin-bottom: 0.85rem;
        letter-spacing: 0.12em;
    }

    .cta-main-title {
        font-size: clamp(1.55rem, 5.8vw, 1.95rem);
        line-height: 1.19;
        margin-bottom: 0.85rem;
        letter-spacing: -0.03em;
        max-width: 100%;
    }
    
    .cta-section-lede {
        font-size: clamp(0.96rem, 3.6vw, 1.08rem);
        line-height: 1.56;
        margin-bottom: 1.35rem;
        max-width: 100%;
        font-weight: 400;
    }

    .cta-pillar-strip {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.85rem;
        max-width: 100%;
    }

    .cta-pillar-item {
        justify-content: flex-start;
    }

    .cta-pillar-label {
        max-width: none;
    }

    .products-cta .consultation-option-card {
        padding: 2rem 1.35rem;
    }
    
    .option-cta {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .featured-badge,
    .premium-badge,
    .exclusive-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Further increase section padding on small mobile */
    .consultation-options-section {
        padding: 3.5rem 0;
    }
    
    .consultation-options-container {
        padding: 0 1rem;
    }
}

/* Medium-small mobile devices */
@media (max-width: 600px) {
    .consultation-options-grid {
        max-width: 680px;
        padding: 0 1rem;
        gap: 2.5rem;
        justify-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2.5rem 2.2rem;
        min-width: unset;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        box-sizing: border-box;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.72rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.72rem !important;
    }
    
    .consultation-options-container {
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        line-height: 1.28;
        margin: 0.45rem 0 1.1rem 0;
    }
    
    /* Ensure no overflow on very small screens */
    .consultation-options-section {
        overflow: hidden;
    }
    
    .consultation-options-grid {
        overflow: hidden;
    }
}

/* Very small mobile devices */
@media (max-width: 400px) {
    .consultation-options-container {
        padding: 0 0.25rem;
    }
    
    .consultation-options-grid {
        padding: 0 0.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        padding: 1.8rem 1.5rem;
        box-sizing: border-box;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.65rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.65rem !important;
    }
    
    /* Ensure no overflow on very small screens */
    .consultation-options-section {
        overflow: hidden;
    }
    
    .consultation-options-grid {
        overflow: hidden;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .consultation-options-grid {
        max-width: 100%;
        padding: 0 1rem;
        grid-template-columns: 1fr !important;
        justify-items: stretch;
        width: 100%;
        box-sizing: border-box;
    }
    
    .consultation-option-card {
        padding: 2rem 2rem;
        min-width: unset;
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
        box-sizing: border-box;
    }
    
    .consultation-option-card h3 {
        font-size: 1.2rem;
    }
    
    .consultation-option-card p.option-description {
        font-size: 0.9rem;
    }
    
    .consultation-option-card .feature-item {
        font-size: 0.7rem;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.7rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .option-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .consultation-options-container {
        padding: 0 0.5rem;
    }
}

/* Ultra small mobile devices */
@media (max-width: 320px) {
    .consultation-option-card .feature-item {
        font-size: 0.6rem !important;
    }
    
    .consultation-option-card .feature-item span {
        font-size: 0.6rem !important;
    }
    
    .consultation-option-card {
        padding: 1.5rem 1rem;
    }
}

/* Coming Soon Overlay Styles */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.coming-soon-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.coming-soon-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.coming-soon-badge i {
    font-size: 1.1rem;
    color: #d4af37;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.coming-soon-badge span {
    font-weight: 600;
    letter-spacing: 0.1em;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Coming Soon Link Styles */
.category-link.coming-soon {
    background: #000000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: default;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.category-link.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.category-link.coming-soon:hover::before {
    left: 100%;
}

.category-link.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.category-link.coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.category-link.coming-soon i {
    font-size: 1rem;
    color: #ffffff;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.category-link.coming-soon span {
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Responsive adjustments for Coming Soon elements */
@media (max-width: 768px) {
    .coming-soon-badge {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .coming-soon-badge i {
        font-size: 1rem;
    }
    
    .category-link.coming-soon {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .category-link.coming-soon i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-badge {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .coming-soon-badge i {
        font-size: 0.9rem;
    }
    
    .category-link.coming-soon {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .category-link.coming-soon i {
        font-size: 0.8rem;
    }
}

/* Footer Coming Soon Text Styles */
.coming-soon-text {
    color: #666666;
    font-style: italic;
    opacity: 0.7;
    cursor: default;
    position: relative;
}

.coming-soon-text::after {
    content: ' (Coming Soon)';
    font-size: 0.75rem;
    color: #999999;
    font-weight: 300;
}

/* Disable text animation in hero section */
.text.state-2 {
    display: none !important;
}

.text.state-1 {
    display: flex !important;
}

.text span::before {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

.text span::after {
    opacity: 0 !important;
    animation: none !important;
}

.area-wrapper:hover .text span::before {
    animation: none !important;
}

.area-wrapper:hover .text span::after {
    animation: none !important;
}

/* Final normalization: CTA cards layout + typography */
@media (min-width: 1025px) {
    .products-section .products-container .products-cta {
        margin: 2.5rem auto;
        max-width: 1400px;
    }

    .products-section .products-container .cta-content {
        display: flex;
        flex-direction: column;
        gap: 2.25rem;
    }

    .products-section .products-container .cta-header {
        max-width: 980px;
        margin: 0 auto;
    }

    .products-section .products-container .consultation-options-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: stretch;
    }

    .products-section .products-container .consultation-option-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .products-section .products-container .consultation-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.25rem;
        padding: 0;
        max-width: 100%;
    }

    .products-section .products-container .consultation-option-card {
        padding: 2rem 1.4rem;
    }

    .products-section .products-container .consultation-option-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .products-section .products-container .consultation-option-card p.option-description {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .products-section .products-container .consultation-option-card .feature-item,
    .products-section .products-container .consultation-option-card .feature-item span {
        font-size: 0.88rem !important;
        line-height: 1.45;
    }

    .products-section .products-container .consultation-option-card .feature-item {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .products-section .products-container .consultation-options-grid {
        grid-template-columns: 1fr !important;
        gap: 1.1rem;
    }

    .products-section .products-container .consultation-option-card {
        padding: 1.7rem 1.2rem;
    }

    .products-section .products-container .consultation-option-card h3 {
        font-size: 1.12rem;
    }

    .products-section .products-container .consultation-option-card p.option-description {
        font-size: 0.92rem;
    }

    .products-section .products-container .consultation-option-card .feature-item,
    .products-section .products-container .consultation-option-card .feature-item span {
        font-size: 0.86rem !important;
    }
}

