/* ===== CSS Variables / Design Tokens ===== */
:root {
    --primary-blue: #13264B;
    --primary-blue-hover: #1A3366;
    --primary-blue-pressed: #0A1A33;
    --accent-red: #EB1E28;
    --accent-red-hover: #C91920;
    --background: #F8F9FB;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: #E6EAF2;
    --text-primary: #13264B;
    --text-secondary: #7A8599;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(19, 38, 75, 0.08);
    --shadow-md: 0 8px 24px rgba(19, 38, 75, 0.12);
    --shadow-lg: 0 20px 40px rgba(19, 38, 75, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* ===== Sticky Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-red);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
    background: linear-gradient(135deg, #F8F9FB 0%, #E8ECF4 50%, #F0F2F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(19, 38, 75, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(19, 38, 75, 0.08);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.brand-clarifier {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.85;
    font-style: italic;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    /* Reduced further from 800px */
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
    /* Tighter gap */
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    /* Reduced padding */
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    /* Slightly smaller font */
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    flex: 1 1 auto;
    /* Allow shrinking/growing but auto basis */
    min-width: 140px;
    /* Reduced min-width */
    text-align: center;
}

/* ===== Social Buttons (Merged into Hero CTAs) ===== */
/* Note: .social-buttons container style removed as it's no longer used */

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    /* Compact padding */
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 120px;
    /* Smaller min-width for social */
}

.social-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
    border-color: transparent;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.social-btn.telegram:hover {
    background: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.social-btn.tiktok:hover {
    background: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.social-btn.youtube:hover {
    background: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(19, 38, 75, 0.3);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 38, 75, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(235, 30, 40, 0.3);
}

.btn-accent:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.btn-download {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(235, 30, 40, 0.3);
}

.btn-download:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 30, 40, 0.4);
}

.btn-download svg {
    stroke: currentColor;
}

/* ===== Original Tools Layout ===== */
.top-section-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Match tools-grid gap */
    margin-bottom: 20px;
    /* Match tools-grid gap */
    align-items: stretch;
}

.left-column-stack {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    /* Allow flex shrinking */
    max-width: none;
    height: 100%;
    /* Ensure stack takes full height */
}

.sys-req-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    flex: 1;
    /* Allow it to grow/shrink */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sys-req-card h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.sys-req-card ul {
    list-style: none;
}

.sys-req-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.free-tool-card {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    /* Allow to grow/shrink equally */
}

.free-tool-icon {
    font-size: 2.5rem;
}

.free-tool-content h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.free-tool-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.all-tools-card {
    grid-column: span 2;
    background: var(--white);
    border: 2px solid var(--accent-red);
}

.all-tools-card .tool-title {
    color: var(--accent-red);
}

.all-tools-card .tool-icon {
    font-size: 2rem;
}

.all-tools-card .tool-description {
    color: var(--text-secondary);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tool-icon {
    font-size: 2rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-actions {
    margin-top: auto;
}

.pricing-dropdown {
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.all-tools-card .pricing-dropdown {
    background: var(--background);
}

.price-display {
    margin: 16px 0;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.billing-cycle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
}

.all-tools-card .billing-cycle {
    color: var(--text-secondary);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

/* ===== Cards ===== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card.featured {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--accent-red);
    grid-column: span 4;
}

.product-card.featured .product-title,
.product-card.featured .product-icon {
    color: #ffd700;
}

.product-card.featured .product-desc {
    color: #ccc;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-icon {
    font-size: 2rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-pricing {
    background: var(--background);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.product-card.featured .product-pricing {
    background: rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}

.price-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.product-card.featured .price-info {
    color: #aaa;
}

/* ===== Tier Select ===== */
.tier-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    margin-bottom: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2313264B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.tier-select:hover {
    border-color: var(--accent-red);
}

.tier-select:focus {
    outline: none;
    border-color: var(--accent-red);
}

.buy-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.buy-button:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
}

/* ===== Services Section ===== */
.services-section {
    background: var(--white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    text-align: center;
    padding: 32px 24px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.service-title {
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
}

/* ===== Process Flow ===== */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-top: 12px;
}

.services-cta {
    text-align: center;
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.services-cta h3 {
    margin-bottom: 16px;
}

.services-email {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 16px;
}

.services-email a {
    color: var(--primary-blue);
    text-decoration: none;
}

.services-email a:hover {
    color: var(--accent-red);
}

/* ===== Audience Section ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audience-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-red);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.audience-title {
    font-size: 1.1rem;
}

/* ===== Trust Section ===== */
.trust-section {
    background: var(--primary-blue);
    color: var(--white);
}

.trust-section .section-title,
.trust-section .section-subtitle {
    color: var(--white);
}

.trust-section .section-subtitle {
    opacity: 0.9;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    max-width: 280px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.trust-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ===== Videos Section ===== */
.videos-section {
    background: var(--white);
}

.main-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    padding-bottom: 50.625%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
    box-shadow: var(--shadow-lg);
}

.main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.main-video-title {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.video-thumbnails-gallery {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.video-thumb {
    flex: 0 0 auto;
    width: 150px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 3px solid transparent;
    background: #000;
}

.video-thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb.active {
    border-color: var(--accent-red);
}

.video-thumb-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumb:hover .video-thumb-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-thumb.active .video-thumb-overlay {
    background: rgba(235, 30, 40, 0.3);
}

.video-thumb-play {
    width: 32px;
    height: 32px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.video-thumb-title {
    text-align: center;
    padding: 8px 4px;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-thumb.active .video-thumb-title {
    color: var(--accent-red);
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--background);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-email {
    font-size: 1.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 32px;
}

.contact-email a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-email a:hover {
    color: var(--accent-red);
}

.contact-checklist {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.contact-checklist h4 {
    margin-bottom: 16px;
}

.contact-checklist ul {
    list-style: none;
}

.contact-checklist li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.contact-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 16px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-red);
}

.footer-trust {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ===== Social Buttons ===== */
.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.telegram:hover {
    background: #006699;
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.youtube:hover {
    background: #cc0000;
}

.social-btn.tiktok {
    background: #000000;
}

.social-btn.tiktok:hover {
    background: #333333;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01472 100%);
}

/* ===== Email Modal ===== */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.email-modal.active {
    display: flex;
}

.email-modal-content {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.email-modal-content h3 {
    margin-bottom: 16px;
}

.email-modal-content p {
    margin-bottom: 20px;
}

.email-input-group {
    margin-bottom: 24px;
}

.email-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.email-input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--accent-red);
}

.email-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    background: var(--card-border);
    color: var(--text-primary);
}

.btn-continue {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== Free Trial Button ===== */
.free-trial-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.free-trial-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
}

.free-trial-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.trial-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== Social Buttons ===== */
/* ===== Old Social Styles Removed ===== */
/* Social styles are now defined near hero-ctas and buttons section */

/* ===== Custom Select Styles ===== */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
}

.custom-select-trigger:hover {
    border-color: var(--accent-red);
}

.custom-select-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary-blue);
    margin-left: 10px;
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid var(--card-border);
    border-top: 0;
    background: var(--white);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    max-height: 250px;
    overflow-y: auto;
    margin-top: -10px;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover,
.custom-option.selected {
    color: var(--white);
    background-color: var(--primary-blue);
}

select.tier-select {
    display: none !important;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card.featured {
        grid-column: span 2;
    }

    .services-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow {
        gap: 24px;
    }

    .process-arrow {
        display: none;
    }

    .top-section-container {
        flex-direction: column;
    }

    .left-column-stack {
        max-width: 100%;
        flex-direction: row;
    }

    .sys-req-card,
    .free-tool-card {
        flex: 1;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Top section responsive */
@media (max-width: 900px) {
    .top-section-container {
        flex-direction: column-reverse;
    }

    .left-column-stack,
    .sys-req-card,
    .free-tool-card,
    .tool-card.all-tools-card {
        width: 100%;
        flex: none;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .products-grid,
    .services-grid,
    .audience-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .left-column-stack {
        flex-direction: column;
    }

    .top-section-container {
        gap: 16px;
    }

    .trust-items {
        flex-direction: column;
        gap: 32px;
    }

    .contact-box {
        padding: 32px 24px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }
}