/* DM Sans Font Family - Self Hosted */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/dm-sans-400.woff2') format('woff2');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/dm-sans-500.woff2') format('woff2');
}

:root {
    /* Primary Blues */
    --primary-blue: #0099E5;
    --primary-dark: #0077B5;
    --primary-light: #e8f6fc;
    --blue-50: #f0f9ff;
    --blue-navy: #2a374f;

    /* Warm Accents */
    --coral: #FF6B6B;
    --coral-light: #fff5f5;
    --peach: #FFA07A;
    --amber: #F59E0B;
    --amber-light: #fffbeb;

    /* Cool Accents */
    --violet: #8B5CF6;
    --violet-light: #f5f3ff;
    --teal: #14B8A6;
    --teal-light: #f0fdfa;

    /* Greens */
    --success: #10B981;
    --success-light: #ecfdf5;

    /* Neutrals */
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6b6b7b;
    --bg-light: #f8fafc;
    --bg-warm: #fefdfb;
    --bg-cool: #f8faff;
    --bg-white: #ffffff;
    --border-light: #e8ecf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header */
header {
    background: var(--bg-white);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-combined {
    height: 36px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

nav a:hover {
    color: var(--primary-blue);
    background: var(--primary-light);
}

nav a.active {
    color: var(--primary-blue);
}

nav a.promo-link {
    color: var(--violet);
    background: var(--violet-light);
    font-weight: 600;
}

nav a.promo-link:hover {
    background: rgba(139, 92, 246, 0.18);
    color: var(--violet);
}

nav a.promo-link.active {
    color: var(--violet);
    background: var(--violet-light);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--blue-50) 50%, var(--primary-light) 100%);
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .tagline {
    font-size: 20px;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-features {
    list-style: none;
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.hero-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 153, 229, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(0, 153, 229, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--violet);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid var(--violet);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--violet-light);
}

/* Video Container */
.hero-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.1);
    aspect-ratio: 16/10;
}

.hero-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e8f0 100%);
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.hero-video:hover .play-button {
    transform: scale(1.08);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-blue);
    margin-left: 4px;
}

.video-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Compact Hero for Secondary Pages */
.hero-compact {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--blue-50) 50%, var(--primary-light) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 153, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-compact::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-compact-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-compact h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-compact h1 .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-compact .tagline {
    font-size: 20px;
    color: var(--violet);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-compact p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-compact .hero-cta {
    justify-content: center;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 153, 229, 0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Visual Element */
.hero-visual {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);

    /* Safari / WebKit */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-visual-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-visual-card .icon svg {
    width: 22px;
    height: 22px;
}

.hero-visual-card .icon.blue { background: var(--primary-light); }
.hero-visual-card .icon.blue svg { fill: var(--primary-blue); }
.hero-visual-card .icon.violet { background: var(--violet-light); }
.hero-visual-card .icon.violet svg { fill: var(--violet); }
.hero-visual-card .icon.teal { background: var(--teal-light); }
.hero-visual-card .icon.teal svg { fill: var(--teal); }

.hero-visual-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-visual {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Values Two Column Layout */
.values-section {
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.values-section .section-header {
    margin-bottom: 48px;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-icon.blue { background: var(--primary-light); }
.value-icon.blue svg { fill: var(--primary-blue); }
.value-icon.coral { background: var(--coral-light); }
.value-icon.coral svg { fill: var(--coral); }
.value-icon.violet { background: var(--violet-light); }
.value-icon.violet svg { fill: var(--violet); }
.value-icon.teal { background: var(--teal-light); }
.value-icon.teal svg { fill: var(--teal); }
.value-icon.amber { background: var(--amber-light); }
.value-icon.amber svg { fill: var(--amber); }
.value-icon.success { background: rgba(16, 185, 129, 0.1); }
.value-icon.success svg { fill: var(--success); }

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.value-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .values-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Team Section */
.team-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section .section-header {
    margin-bottom: 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-blue);
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card .team-position {
    font-size: 14px;
    color: var(--violet);
    font-weight: 500;
}

@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Benefits Grid */
.benefits-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--violet-light) 100%);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

/* Color-coded benefit cards */
.benefit-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary-blue), var(--teal)); }
.benefit-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--peach)); }
.benefit-card:nth-child(3)::before { background: linear-gradient(90deg, var(--violet), var(--primary-blue)); }
.benefit-card:nth-child(4)::before { background: linear-gradient(90deg, var(--teal), var(--success)); }
.benefit-card:nth-child(5)::before { background: linear-gradient(90deg, var(--amber), var(--coral)); }
.benefit-card:nth-child(6)::before { background: linear-gradient(90deg, var(--success), var(--teal)); }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Color-coded icons */
.benefit-card:nth-child(1) .benefit-icon { background: var(--primary-light); }
.benefit-card:nth-child(1) .benefit-icon svg { fill: var(--primary-blue); }

.benefit-card:nth-child(2) .benefit-icon { background: var(--coral-light); }
.benefit-card:nth-child(2) .benefit-icon svg { fill: var(--coral); }

.benefit-card:nth-child(3) .benefit-icon { background: var(--violet-light); }
.benefit-card:nth-child(3) .benefit-icon svg { fill: var(--violet); }

.benefit-card:nth-child(4) .benefit-icon { background: var(--teal-light); }
.benefit-card:nth-child(4) .benefit-icon svg { fill: var(--teal); }

.benefit-card:nth-child(5) .benefit-icon { background: var(--amber-light); }
.benefit-card:nth-child(5) .benefit-icon svg { fill: var(--amber); }

.benefit-card:nth-child(6) .benefit-icon { background: var(--success-light); }
.benefit-card:nth-child(6) .benefit-icon svg { fill: var(--success); }

.benefit-icon svg {
    width: 26px;
    height: 26px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-banner-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Safari / WebKit */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.promo-banner h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.promo-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-white:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Products Section */
.products-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cool) 100%);
}

.products-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    scroll-margin-top: 90px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row.reverse {
    direction: rtl;
}

.product-row.reverse > * {
    direction: ltr;
}

.product-content {
    padding: 20px 0;
}

.product-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.product-badge.blue {
    background: var(--primary-light);
    color: var(--primary-blue);
}

.product-badge.violet {
    background: var(--violet-light);
    color: var(--violet);
}

.product-badge.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.product-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-content h4.blue { color: var(--primary-blue); }
.product-content h4.violet { color: var(--violet); }
.product-content h4.teal { color: var(--teal); }

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

.product-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-features li svg.blue { fill: var(--primary-blue); }
.product-features li svg.violet { fill: var(--violet); }
.product-features li svg.teal { fill: var(--teal); }

.product-image {
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.product-image.blue {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--primary-light) 100%);
    border: 1px solid rgba(0, 153, 229, 0.15);
}

.product-image.violet {
    background: linear-gradient(135deg, #faf5ff 0%, var(--violet-light) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.product-image.teal {
    background: linear-gradient(135deg, #f0fdfa 0%, var(--teal-light) 100%);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.product-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.product-image.blue .product-image-placeholder {
    background: linear-gradient(135deg, #d1e8f0 0%, #b8dce8 100%);
}

.product-image.violet .product-image-placeholder {
    background: linear-gradient(135deg, #e4d8f8 0%, #d1c2ef 100%);
}

.product-image.teal .product-image-placeholder {
    background: linear-gradient(135deg, #c8f0eb 0%, #a8e4dc 100%);
}

.product-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.6;
}

.product-image.blue .product-image-placeholder svg { fill: var(--primary-blue); }
.product-image.violet .product-image-placeholder svg { fill: var(--violet); }
.product-image.teal .product-image-placeholder svg { fill: var(--teal); }

.product-image a {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-image a:hover {
    transform: scale(1.02);
}

.product-screenshot {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    object-fit: cover;
    display: block;
}

.product-image.blue .product-screenshot {
    border: 2px solid var(--primary-blue);
}

.product-image.violet .product-screenshot {
    border: 2px solid var(--violet);
}

.product-image.teal .product-screenshot {
    border: 2px solid var(--teal);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-light) 100%);
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.testimonial-card:nth-child(odd)::before {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--teal) 100%);
}

.testimonial-card:nth-child(even)::before {
    background: linear-gradient(180deg, var(--violet) 0%, var(--coral) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-company {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card:nth-child(odd) .company-logo {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
}

.testimonial-card:nth-child(odd) .company-logo svg {
    fill: var(--primary-blue);
}

.testimonial-card:nth-child(even) .company-logo {
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--coral-light) 100%);
}

.testimonial-card:nth-child(even) .company-logo svg {
    fill: var(--violet);
}

.company-logo svg {
    width: 32px;
    height: 32px;
}

.company-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.company-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-quote {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}

.testimonial-card:nth-child(odd) .testimonial-quote {
    color: var(--primary-blue);
}

.testimonial-card:nth-child(even) .testimonial-quote {
    color: var(--violet);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric {
    text-align: center;
    padding: 20px 16px;
    border-radius: 12px;
}

.testimonial-card:nth-child(odd) .metric:nth-child(1) { background: var(--primary-light); }
.testimonial-card:nth-child(odd) .metric:nth-child(2) { background: var(--teal-light); }
.testimonial-card:nth-child(odd) .metric:nth-child(3) { background: var(--success-light); }
.testimonial-card:nth-child(odd) .metric:nth-child(4) { background: var(--amber-light); }

.testimonial-card:nth-child(even) .metric:nth-child(1) { background: var(--violet-light); }
.testimonial-card:nth-child(even) .metric:nth-child(2) { background: var(--coral-light); }
.testimonial-card:nth-child(even) .metric:nth-child(3) { background: var(--amber-light); }
.testimonial-card:nth-child(even) .metric:nth-child(4) { background: var(--teal-light); }

.metric h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.testimonial-card:nth-child(odd) .metric:nth-child(1) h5 { color: var(--primary-blue); }
.testimonial-card:nth-child(odd) .metric:nth-child(2) h5 { color: var(--teal); }
.testimonial-card:nth-child(odd) .metric:nth-child(3) h5 { color: var(--success); }
.testimonial-card:nth-child(odd) .metric:nth-child(4) h5 { color: var(--amber); }

.testimonial-card:nth-child(even) .metric:nth-child(1) h5 { color: var(--violet); }
.testimonial-card:nth-child(even) .metric:nth-child(2) h5 { color: var(--coral); }
.testimonial-card:nth-child(even) .metric:nth-child(3) h5 { color: var(--amber); }
.testimonial-card:nth-child(even) .metric:nth-child(4) h5 { color: var(--teal); }

.metric p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    background: var(--bg-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--violet), var(--teal), var(--coral));
}

.cta-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #12121f 100%);
    padding: 48px 24px 24px;
    color: white;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 1px;
}

.footer-column:nth-child(2) h5::after { background: var(--primary-blue); }
.footer-column:nth-child(3) h5::after { background: var(--violet); }
.footer-column:nth-child(4) h5::after { background: var(--teal); }

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-text {
    font-size: 18px;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-cta {
        justify-content: center;
    }

    .product-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-row.reverse {
        direction: ltr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    nav.open {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero {
        padding: 40px 24px 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-metrics {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRICING PAGE STYLES
   ======================================== */

.pricing-card-hero {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--violet));
}

.pricing-highlight {
    margin-bottom: 24px;
}

.pricing-highlight h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--coral);
    margin-top: 12px;
}

.pricing-amount {
    margin-bottom: 16px;
}

.pricing-amount .price {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 18px;
    color: var(--text-medium);
    display: block;
    margin-top: 8px;
}

.pricing-amount .note {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-original {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Included Modules */
.included-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.module-card {
    display: block;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.module-card.blue {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--primary-light) 100%);
    border: 1px solid rgba(0, 153, 229, 0.15);
}

.module-card.teal {
    background: linear-gradient(135deg, #f0fdfa 0%, var(--teal-light) 100%);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.module-card.violet {
    background: linear-gradient(135deg, #faf5ff 0%, var(--violet-light) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.module-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.module-card.blue h3 { color: var(--primary-blue); }
.module-card.teal h3 { color: var(--teal); }
.module-card.violet h3 { color: var(--violet); }

.module-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Terms Section */
.terms-section {
    padding: 60px 24px;
    background: var(--bg-white);
}

.terms-inner {
    max-width: 900px;
    margin: 0 auto;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-medium);
}

.term-item svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
    flex-shrink: 0;
}

.terms-link {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

.terms-link a {
    color: var(--primary-blue);
    text-decoration: none;
}

.terms-link a:hover {
    text-decoration: underline;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-story-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-medium);
    margin-top: 40px;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--violet-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--primary-blue);
    opacity: 0.5;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    padding: 60px 24px 80px;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.contact-page-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: start;
}

.contact-form-container {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 229, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form select {
    cursor: pointer;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-promo {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    color: white;
}

.contact-promo .promo-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 12px;
}

.contact-promo h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-promo p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.btn-white-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    background: white;
    color: var(--violet);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-white-small:hover {
    background: rgba(255, 255, 255, 0.9);
}

.contact-info-grid {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-child {
    padding-top: 0;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-blue);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--primary-blue);
}

/* Early Access Page - Single Screen */
.promo-single {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--blue-50) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.promo-single::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-single::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-single-inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-content {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--violet-light) 0%, var(--primary-light) 100%);
    color: var(--violet);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.promo-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--violet);
}

.promo-content h1 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.promo-content h1 .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-headline {
    font-size: 24px;
    font-weight: 600;
    color: var(--violet);
    margin-bottom: 12px;
}

.offer-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.promo-form {
    margin-bottom: 0;
}

.form-input-wrapper {
    display: flex;
    gap: 12px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 6px;
    transition: border-color 0.2s ease;
}

.form-input-wrapper:focus-within {
    border-color: var(--primary-blue);
}

.form-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
}

.form-input-wrapper input::placeholder {
    color: var(--text-light);
}

.form-input-wrapper .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
    margin-bottom: 0;
}

/* OLD Early Access Styles (can be removed if not used elsewhere) */
.promo-offer {
    padding: 60px 24px 80px;
    background: var(--bg-white);
}

.offer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
}

.offer-card.featured {
    border: 2px solid var(--violet);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--violet);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.offer-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offer-icon svg {
    width: 32px;
    height: 32px;
}

.offer-icon.blue { background: var(--primary-light); }
.offer-icon.blue svg { fill: var(--primary-blue); }
.offer-icon.violet { background: var(--violet-light); }
.offer-icon.violet svg { fill: var(--violet); }
.offer-icon.teal { background: var(--teal-light); }
.offer-icon.teal svg { fill: var(--teal); }

.offer-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Early Access Features */
.promo-features {
    padding: 60px 24px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--primary-light) 100%);
}

.features-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.features-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-check svg {
    width: 22px;
    height: 22px;
    fill: var(--success);
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-check span {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

.feature-check strong {
    color: var(--text-dark);
}

/* Early Access Signup */
.promo-signup {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--violet) 100%);
}

.signup-inner {
    max-width: 600px;
    margin: 0 auto;
}

.signup-content {
    text-align: center;
    color: white;
}

.signup-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.signup-content > p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.signup-form {
    max-width: 480px;
    margin: 0 auto;
}

.signup-input-group {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.signup-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-dark);
    outline: none;
}

.signup-input-group input::placeholder {
    color: var(--text-light);
}

.signup-input-group .btn-primary {
    flex-shrink: 0;
    box-shadow: none;
}

.signup-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .offer-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .offer-card.featured {
        order: -1;
    }

    .signup-input-group {
        flex-direction: column;
        padding: 12px;
    }

    .signup-input-group input {
        text-align: center;
    }

    .signup-input-group .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .promo-content {
        padding: 36px 28px;
    }

    .form-input-wrapper {
        flex-direction: column;
        padding: 12px;
    }

    .form-input-wrapper input {
        text-align: center;
    }

    .form-input-wrapper .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ======================================== */

@media (max-width: 1024px) {
    .included-modules {
        grid-template-columns: 1fr;
    }

    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-page-inner {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 28px 24px;
    }

    .contact-form-header h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .pricing-card-hero {
        padding: 32px 24px;
    }

    .pricing-amount .price {
        font-size: 48px;
    }
}

/* Video Modal Styles */
.product-image a {
    position: relative;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.product-image a:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    cursor: default;
}

.video-modal-close {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #bbb;
}
