/* ===== CSS Variables ===== */
:root {
    --brand-blue: #0071e3;
    --brand-blue-rgb: 0, 113, 227;
    --foreground: #000000;
    --background: #ffffff;
    --muted: #86868b;
    --gray-50: #f5f5f7;
    --gray-100: #e8e8ed;
    --gray-200: #d2d2d7;
    --gray-300: #b0b0b5;
    --gray-400: #86868b;
    --gray-500: #6e6e73;
    --gray-600: #424245;
    --gray-700: #1d1d1f;
    --gray-800: #161617;
    --gray-900: #000000;
    --radius: 1.5rem;
    --radius-sm: 0.875rem;
    --radius-lg: 2rem;
}

/* ===== Base Styles ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.header-nav {
    height: 64px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--gray-900);
}

.chevron-icon {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: transform 0.2s;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu::before {
    content: '';
    display: block;
    position: absolute;
    top: 0.75rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a {
    position: relative;
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: background 0.2s, color 0.2s;
    min-width: 240px;
}

.dropdown-menu a:first-child {
    margin-top: 0.5rem;
}

.dropdown-menu a:last-child {
    margin-bottom: 0.5rem;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

/* Header Icons */
.header-icons {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .header-icons {
        display: flex;
    }
}

.icon-btn {
    color: var(--gray-600);
    transition: color 0.2s;
}

.icon-btn:hover {
    color: var(--gray-900);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    color: var(--gray-700);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: white;
    padding-top: 64px;
    display: none;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 2rem 1.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    text-align: left;
}

.mobile-nav-group {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-group .mobile-nav-link {
    border-bottom: none;
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-500);
    font-size: 1rem;
}

.mobile-contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.mobile-phone {
    color: var(--brand-blue);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, var(--gray-50), white);
    overflow: hidden;
    padding-top: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-blob-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(var(--brand-blue-rgb), 0.05);
}

.hero-blob-2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(0, 200, 200, 0.05);
}

.hero-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--brand-blue-rgb), 0.1);
    color: var(--brand-blue);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--brand-blue);
    color: white;
    box-shadow: 0 10px 30px rgba(var(--brand-blue-rgb), 0.25);
}

.btn-primary:hover {
    background: rgba(var(--brand-blue-rgb), 0.9);
    box-shadow: 0 15px 40px rgba(var(--brand-blue-rgb), 0.3);
}

.btn-dark {
    background: var(--gray-900);
    color: white;
}

.btn-dark:hover {
    background: var(--gray-800);
}

.btn-white {
    background: white;
    color: var(--gray-900);
}

.btn-white:hover {
    background: var(--gray-100);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem 2rem;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--brand-blue-rgb), 0.2), rgba(0, 200, 200, 0.1), transparent);
    filter: blur(60px);
    transform: scale(1.5);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1.5); }
    50% { opacity: 0.5; transform: scale(1.65); }
}

.hero-particle {
    position: absolute;
    color: rgba(var(--brand-blue-rgb), 0.4);
}

.hero-particle svg {
    width: 32px;
    height: 32px;
}

.hero-particle-1 {
    left: -2rem;
    top: 33%;
    animation: float 4s ease-in-out infinite;
}

.hero-particle-2 {
    right: -2rem;
    top: 50%;
    color: rgba(0, 200, 200, 0.4);
    animation: float 3.5s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

.hero-image {
    position: relative;
    max-width: 32rem;
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

.hero-feature svg {
    color: var(--brand-blue);
}

.hero-feature span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Features Section ===== */
.features {
    padding: 1rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.7s;
}

.feature-card:hover {
    transform: scale(1.02);
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-card img {
    transition: transform 0.7s;
}

/* Large Card */
.feature-card-large {
    background: linear-gradient(to bottom, #d6f0ff, #e8f7ff);
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .feature-card-large {
        min-height: 600px;
    }
}

.feature-card-header {
    padding: 2rem;
    text-align: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-card-header {
        padding: 3rem;
    }
}

.feature-card-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card-title-sm {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-card-desc {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.feature-card-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-blue {
    background: var(--brand-blue);
    color: white;
}

.btn-blue:hover {
    background: rgba(var(--brand-blue-rgb), 0.9);
}

.btn-outline-blue {
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline-blue:hover {
    background: rgba(var(--brand-blue-rgb), 0.05);
}

.btn-outline-gray {
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline-gray:hover {
    background: var(--gray-100);
}

.btn-outline-white {
    border: 1px solid var(--gray-500);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-card-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.feature-card-image img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
}

/* Right Column */
.features-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Medium Card */
.feature-card-medium {
    min-height: 290px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .feature-card-medium {
        min-height: 295px;
    }
}

.gray-bg {
    background: var(--gray-50);
}

.dark-bg {
    background: var(--gray-900);
}

.feature-card-content-row {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 1024px) {
    .feature-card-content-row {
        flex-direction: row;
    }
}

.feature-card-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .feature-card-text {
        padding: 2.5rem;
    }
}

.feature-card-text .feature-card-buttons {
    justify-content: flex-start;
}

.feature-card-image-small {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.feature-card-image-small img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

.white-bg-rounded {
    background: white;
    margin: 1rem;
    border-radius: 1rem;
}

.text-white {
    color: white !important;
}

.text-gray-300 {
    color: var(--gray-300) !important;
}

.text-gray-400 {
    color: var(--gray-400) !important;
}

/* Second Row */
.features-grid-row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

@media (min-width: 1024px) {
    .features-grid-row2 {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card-bottom {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.feature-card-image-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.feature-card-image-center img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
}

/* ===== Products Section (Məhsul kateqoriyaları) ===== */
.products {
    padding: 6rem 0;
    background: var(--background);
}

.products-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.products-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.products-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    display: block;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s ease;
    text-decoration: none;
}

.product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 2rem 2.5rem;
    text-align: center;
}

.product-card-subtitle {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.product-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.product-card-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-card-image {
    padding: 0 2rem 2rem;
}

.product-card-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    transition: transform 0.7s ease;
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background: var(--gray-900);
    color: white;
    overflow: hidden;
}

.about-header {
    max-width: 64rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.about-label {
    color: var(--brand-blue);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.text-gradient {
    background: linear-gradient(90deg, var(--brand-blue), #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-400);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Showcase */
.about-showcase {
    max-width: 72rem;
    margin: 0 auto;
}

.about-showcase-card {
    position: relative;
    background: linear-gradient(to bottom, var(--gray-800), var(--gray-900));
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-700);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .about-showcase-card {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}

.about-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--brand-blue-rgb), 0.1);
    color: var(--brand-blue);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.about-showcase-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.about-showcase-desc {
    color: var(--gray-400);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-blue);
    font-size: 1.125rem;
    font-weight: 500;
    transition: gap 0.3s;
}

.about-link:hover {
    gap: 0.75rem;
}

.about-showcase-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.2), rgba(0, 200, 200, 0.2));
    filter: blur(60px);
    opacity: 0.3;
}

.about-showcase-image img {
    position: relative;
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 5rem auto 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(90deg, white, var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: var(--gray-500);
    font-weight: 500;
}

/* About CTA */
.about-cta {
    text-align: center;
    margin-top: 5rem;
}

.about-cta .btn-white {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 7rem 0;
    background: var(--gray-50);
}

.contact-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.contact-label {
    color: var(--brand-blue);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--muted);
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    display: block;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-50);
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.contact-card:hover .contact-icon {
    background: rgba(var(--brand-blue-rgb), 0.1);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--brand-blue);
}

.contact-card-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-card-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.contact-card-subvalue {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Contact CTA */
.contact-cta {
    max-width: 64rem;
    margin: 3rem auto 0;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-cta {
        padding: 3rem;
    }
}

.contact-cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-cta-text {
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.footer {
    background: #1d1d1f;
    color: #a1a1a6;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #424245;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    /*filter: brightness(0) invert(1);*/
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #86868b;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #a1a1a6;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    font-size: 0.875rem;
    color: #a1a1a6;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: white;
}

.footer-address {
    font-size: 0.875rem;
    color: #6e6e73;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #6e6e73;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal a,
.footer-legal span {
    font-size: 0.75rem;
    color: #6e6e73;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #a1a1a6;
}

/* ===== Page Hero (for subpages) ===== */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gray-50);
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--brand-blue);
}

.breadcrumb span {
    color: var(--foreground);
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Contact Page Section ===== */
.contact-page-section {
    padding: 4rem 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

a.contact-info-card:hover {
    background: var(--gray-100);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-subvalue {
    font-size: 0.875rem;
    color: var(--muted);
}

.contact-info-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--muted);
    opacity: 0;
    transition: all 0.3s;
}

a.contact-info-card:hover .contact-info-arrow {
    opacity: 1;
    color: var(--brand-blue);
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    padding: 4rem 0 6rem;
}

.contact-form-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 4rem;
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--foreground);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(var(--brand-blue-rgb), 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Map Section ===== */
.map-section {
    padding: 0 0 6rem;
}

.map-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .map-wrapper {
        padding: 4rem;
    }
}

.map-header {
    margin-bottom: 2rem;
}

.map-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.map-subtitle {
    font-size: 1rem;
    color: var(--muted);
}

.map-container {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-btn {
    display: inline-flex;
}

/* ===== Header Solid (for subpages) ===== */
.header-solid {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-link.active {
    color: var(--brand-blue);
}

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== News Page Styles ===== */
.news-featured-section {
    padding: 4rem 0;
}

.news-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .news-featured-card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

.news-featured-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.news-featured-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .news-featured-image {
        aspect-ratio: auto;
        min-height: 400px;
    }
}

.news-featured-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.news-featured-card:hover .news-featured-image img {
    transform: scale(1.05);
}

.news-featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--brand-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .news-featured-content {
        padding: 3rem;
    }
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-date {
    font-size: 0.875rem;
    color: var(--muted);
}

.news-featured-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.news-featured-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--brand-blue);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.news-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* News Grid */
.news-grid-section {
    padding: 0 0 6rem;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    display: block;
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s ease;
}

.news-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.news-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

/* Newsletter Section */
.newsletter-section {
    padding: 0 0 6rem;
}

.newsletter-card {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .newsletter-card {
        flex-direction: row;
        text-align: left;
        padding: 4rem;
    }
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    font-size: 1rem;
    color: var(--gray-400);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
        width: auto;
    }
}

.newsletter-input {
    min-width: 280px;
}

/* ===== Video Page Styles ===== */
.video-categories-section {
    padding: 0 0 2rem;
}

.video-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.video-category-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.video-category-btn:hover {
    background: var(--gray-200);
    color: var(--foreground);
}

.video-category-btn.active {
    background: var(--foreground);
    color: white;
}

/* Featured Video */
.video-featured-section {
    padding: 2rem 0 4rem;
}

.video-featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

@media (min-width: 768px) {
    .video-featured-card {
        grid-template-columns: 1.2fr 1fr;
        gap: 0;
    }
}

.video-player {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-900);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.video-featured-card .video-player {
    border-radius: 0;
}

@media (min-width: 768px) {
    .video-featured-card .video-player {
        border-radius: var(--radius) 0 0 var(--radius);
    }
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, opacity 0.3s;
}

.video-player:hover .video-thumbnail {
    transform: scale(1.05);
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.video-card .video-play-btn {
    width: 56px;
    height: 56px;
}

.video-play-btn svg {
    color: var(--foreground);
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.video-featured-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .video-featured-info {
        padding: 3rem;
    }
}

.video-badge {
    display: inline-block;
    background: var(--brand-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.video-featured-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.video-featured-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.video-date {
    font-size: 0.875rem;
    color: var(--muted);
}

/* Video Grid */
.video-grid-section {
    padding: 0 0 6rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s ease;
}

.video-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.video-card .video-player {
    border-radius: 0;
}

.video-card-info {
    padding: 1.25rem;
}

.video-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-category-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-blue);
}

.video-views-small {
    font-size: 0.75rem;
    color: var(--muted);
}

.video-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* YouTube CTA */
.youtube-cta-section {
    padding: 0 0 6rem;
}

.youtube-cta-card {
    background: #FF0000;
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .youtube-cta-card {
        flex-direction: row;
        text-align: left;
        padding: 3rem 4rem;
    }
}

.youtube-icon {
    flex-shrink: 0;
}

.youtube-icon svg {
    color: white;
}

.youtube-cta-content {
    flex: 1;
}

.youtube-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.youtube-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #FF0000;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-red:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* ===== About Page Styles ===== */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--gray-900);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
}

.about-hero-content {
    position: relative;
    max-width: 56rem;
    text-align: center;
    margin: 0 auto;
}

.breadcrumb-light {
    color: var(--gray-400);
}

.breadcrumb-light a {
    color: var(--gray-400);
}

.breadcrumb-light a:hover {
    color: var(--brand-blue);
}

.breadcrumb-light span {
    color: white;
}

.about-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.text-gradient-blue {
    background: linear-gradient(90deg, var(--brand-blue), #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Stats */
.about-stats-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.about-stat-value {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

/* About Story */
.about-story-section {
    padding: 6rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-story-text {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-story-text:last-child {
    margin-bottom: 0;
}

.about-story-image {
    position: relative;
}

.about-image-card {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-image-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.about-image-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-year {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1;
}

.about-image-caption {
    font-size: 0.875rem;
    color: var(--muted);
}

/* About Vision */
.about-vision-section {
    padding: 6rem 0;
    background: var(--gray-900);
    color: white;
}

.about-vision-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.about-vision-section .about-section-label {
    color: var(--brand-blue);
}

.about-vision-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.about-vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.about-vision-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-vision-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.about-vision-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.about-vision-card-text {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* About Values */
.about-values-section {
    padding: 6rem 0;
}

.about-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-value-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
}

.about-value-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.about-value-text {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.6;
}

/* About Timeline */
.about-timeline-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.about-timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-timeline {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

@media (min-width: 640px) {
    .about-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.about-timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .about-timeline-item {
        padding-left: 0;
        padding-right: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-timeline-item:nth-child(odd) .about-timeline-year {
        order: 1;
        text-align: left;
    }

    .about-timeline-item:nth-child(odd) .about-timeline-content {
        text-align: right;
    }

    .about-timeline-item:nth-child(even) .about-timeline-year {
        text-align: right;
    }
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    background: var(--brand-blue);
    border-radius: 50%;
}

@media (min-width: 640px) {
    .about-timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.about-timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .about-timeline-year {
        margin-bottom: 0;
    }
}

.about-timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.about-timeline-text {
    font-size: 0.9375rem;
    color: var(--muted);
}

/* About CTA */
.about-cta-section {
    padding: 6rem 0;
}

.about-cta-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .about-cta-card {
        padding: 5rem 4rem;
    }
}

.about-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-cta-text {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .about-cta-buttons {
        flex-direction: row;
    }
}

/* ===== Services Page ===== */

/* Services Hero */
.services-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--background) 100%);
}

.services-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 32rem;
}

/* Services Main Grid */
.services-main {
    padding: 4rem 0 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Service Card */
.service-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(0, 113, 227, 0.05));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-blue);
}

.service-icon-blue {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 122, 255, 0.05));
    color: #007aff;
}

.service-icon-green {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(52, 199, 89, 0.05));
    color: #34c759;
}

.service-icon-orange {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    color: #ff9500;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-blue);
    transition: gap 0.3s;
}

.service-card-link:hover {
    gap: 0.625rem;
}

/* Additional Services */
.services-additional {
    padding: 4rem 0;
    background: var(--gray-50);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .additional-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.additional-service-item {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.additional-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.additional-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.additional-service-content h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.additional-service-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Process Section */
.services-process {
    padding: 6rem 0;
}

.services-process .section-title {
    text-align: center;
}

.services-process .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.process-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.5;
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
        flex: 0 0 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--brand-blue), var(--gray-200));
        margin-top: 24px;
    }
}

/* Services CTA */
.services-cta {
    padding: 4rem 0 6rem;
}

.services-cta .cta-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .services-cta .cta-card {
        padding: 5rem 4rem;
    }
}

.services-cta .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.services-cta .cta-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 28rem;
    margin: 0 auto 2rem;
}

.services-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .services-cta .cta-buttons {
        flex-direction: row;
    }
}

.services-cta .btn-primary {
    background: var(--brand-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
}

.services-cta .btn-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.services-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

.services-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===== Product Page ===== */

/* Product Hero */
.product-hero {
    padding: 7rem 0 4rem;
    background: var(--gray-50);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 6rem;
}

.product-main-image {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    margin: 0 auto;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: white;
    border: 2px solid transparent;
    padding: 0.5rem;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
}

.product-thumb:hover {
    transform: scale(1.05);
}

.product-thumb.active {
    border-color: var(--brand-blue);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    padding: 1rem 0;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 980px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-rating .stars {
    display: flex;
    gap: 0.125rem;
    color: #ffc107;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--muted);
}

.product-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-price-block {
    margin-bottom: 2rem;
}

.product-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    display: block;
}

.product-price-note {
    font-size: 0.875rem;
    color: var(--muted);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 480px) {
    .product-actions {
        flex-direction: row;
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 980px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.product-actions .btn-primary {
    background: #25D366;
    color: white;
}

.product-actions .btn-primary:hover {
    background: #20bd5a;
    transform: scale(1.02);
}

.product-actions .btn-secondary {
    background: var(--gray-100);
    color: var(--foreground);
}

.product-actions .btn-secondary:hover {
    background: var(--gray-200);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.benefit-item svg {
    color: var(--brand-blue);
}

/* Product Features Section */
.product-features-section {
    padding: 6rem 0;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-feature-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-feature-card .feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(0, 113, 227, 0.05));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--brand-blue);
}

.product-feature-card .feature-icon-green {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(52, 199, 89, 0.05));
    color: #34c759;
}

.product-feature-card .feature-icon-purple {
    background: linear-gradient(135deg, rgba(175, 82, 222, 0.1), rgba(175, 82, 222, 0.05));
    color: #af52de;
}

.product-feature-card .feature-icon-orange {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    color: #ff9500;
}

.product-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.product-feature-card p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Product Specs Section */
.product-specs-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.specs-content .section-title {
    margin-bottom: 1rem;
}

.specs-intro {
    font-size: 1.0625rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.specs-list {
    display: grid;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.spec-label {
    font-size: 0.9375rem;
    color: var(--muted);
}

.spec-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
}

.specs-image {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.specs-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* What's in the Box */
.product-box-section {
    padding: 6rem 0;
}

.box-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .box-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .box-items-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.box-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s;
}

.box-item:hover {
    transform: translateY(-2px);
}

.box-item-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(52, 199, 89, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #34c759;
}

.box-item span {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Product CTA Section */
.product-cta-section {
    padding: 4rem 0 6rem;
}

.product-cta-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .product-cta-card {
        padding: 5rem 4rem;
    }
}

.product-cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.product-cta-card p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 28rem;
    margin: 0 auto 2rem;
}

.product-cta-card .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .product-cta-card .cta-buttons {
        flex-direction: row;
    }
}

.product-cta-card .btn-primary {
    background: var(--brand-blue);
    color: white;
}

.product-cta-card .btn-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
