/* ============================================
   SYMTRI AI - MAIN STYLES
   Shared styles for all homepage variants
   ============================================ */

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

/* CSS Custom Properties */
:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F5F5F5;
    --gray-100: #E8E8E8;
    --gray-200: #D4D4D4;
    --gray-300: #B0B0B0;
    --gray-400: #888888;
    --gray-500: #6B6B6B;
    --gray-600: #525252;
    --gray-700: #3D3D3D;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0A0A0A;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll; /* Always show scrollbar to prevent layout shift */
    scrollbar-gutter: stable; /* Reserve space for scrollbar */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Page wrapper to contain all overflow */
.page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

/* Force all sections to respect viewport width */
.page-wrapper > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip to Content Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--black);
    text-transform: uppercase;
}

.headline-muted {
    color: var(--gray-400); /* WCAG AA contrast (3:1 for large text) */
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
}

/* ============================================
   HEADER
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--black);
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray-600);
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lang-switch a {
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.5rem; /* Increased for touch target */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.lang-switch a:hover {
    color: var(--black);
}

.lang-switch a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.lang-switch a.active {
    color: var(--black);
}

.menu-toggle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.75rem; /* Increased for touch target */
    min-width: 48px;
    min-height: 48px;
    font-family: inherit;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-cta-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: right;
    line-height: 1.4;
}

.nav-cta-text strong {
    color: var(--black);
    display: block;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */

/* Backdrop overlay */
.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: var(--white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-close {
    background: var(--gray-100);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 48px;
    min-height: 48px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--gray-200);
}

.mobile-nav-close:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Staggered animation for links */
.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    display: block;
    padding: 1rem 0;
    min-height: 48px;
    position: relative;
    transition: color 0.2s ease;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--gray-600);
}

.mobile-nav-links a:hover::after {
    width: 40px;
}

.mobile-nav-links a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}

.mobile-nav-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s;
}

.mobile-nav.active .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-lang {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-nav-lang a {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.75rem 1rem;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mobile-nav-lang a:hover {
    border-color: var(--gray-400);
}

.mobile-nav-lang a.active {
    color: var(--black);
    border-color: var(--black);
    background: var(--gray-50);
}

.mobile-nav-lang a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.mobile-nav-cta {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.hero-image {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    border-radius: 16px;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(236, 72, 153, 0.2) 30%,
        rgba(251, 146, 60, 0.15) 60%,
        transparent 80%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 3rem;
    position: relative;
    z-index: 2;
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
    filter: grayscale(100%);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.review-text {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.review-text strong {
    color: var(--black);
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.hero-sub strong {
    color: var(--black);
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    min-height: 48px; /* Touch target */
}

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

.btn-primary:hover {
    background: var(--gray-800);
}

/* Focus states for keyboard navigation (WCAG 2.4.7) */
.btn:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.btn-primary:focus-visible {
    outline-color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--black);
}

.btn-secondary:focus-visible {
    outline-color: var(--black);
}

/* ============================================
   TRUST LOGOS
   ============================================ */

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 0.75rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-logo svg {
    width: 16px;
    height: 16px;
    color: var(--gray-600);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-gray {
    background: var(--gray-50);
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

.section-gray .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    margin-top: 1rem;
}

.section-title-muted {
    color: var(--gray-400); /* WCAG AA contrast */
}

.problem-intro,
.solution-intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gray-200);
}

.stat-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 2rem;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 0.875rem;
    color: var(--gray-600);
    width: 30px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.stat-label strong {
    color: var(--black);
    font-weight: 600;
}

.stat-badge {
    background: var(--gray-800);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-category {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 120px;
    text-align: right;
}

/* ============================================
   SOLUTION GRID
   ============================================ */

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-200);
    margin-top: 3rem;
    max-width: 100%;
    overflow: hidden;
}

.solution-card {
    background: var(--white);
    padding: 3rem;
    position: relative;
}

.solution-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ============================================
   IMAGE SECTIONS
   ============================================ */

.image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-width: 100%;
    overflow: hidden;
}

.image-section-content {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-section-content .section-label {
    color: var(--gray-500);
}

.image-section-content .section-label::before {
    background: var(--white);
}

.image-section-content .headline {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.image-section-content .headline-muted {
    color: var(--gray-500);
}

.image-section-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 400px;
}

.agitate-kicker {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--gray-300);
    font-style: italic;
}

.image-section-image {
    position: relative;
    overflow: hidden;
}

.image-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    border-radius: 16px;
}

.image-section-reversed {
    direction: rtl;
}

.image-section-reversed > * {
    direction: ltr;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */

.diff-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

.diff-content .headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.diff-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-blob-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-blob-container::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(139, 92, 246, 0.5) 0%,
        rgba(236, 72, 153, 0.4) 30%,
        rgba(251, 146, 60, 0.3) 50%,
        rgba(251, 146, 60, 0.1) 70%,
        transparent 85%);
    filter: blur(80px);
    animation: blobPulse 8s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

.diff-list {
    margin-top: 2rem;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.diff-item svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.diff-item p {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.try-it-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.try-it-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.try-it-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.try-it-buttons .btn {
    flex: 0 0 auto;
}

/* ============================================
   HOW IT WORKS (STEPS)
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    text-align: left;
}

.step-num {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-image {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 12px;
}

.testimonial-content {
    background: var(--gray-900);
    color: var(--white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content .section-label {
    color: var(--gray-500);
}

.testimonial-content .section-label::before {
    background: var(--gray-500);
}

.testimonial-quote {
    font-family: 'Anton', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--gray-100);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-700);
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-section {
    background: var(--gray-900);
    color: var(--white);
    padding: 8rem 3rem;
    max-width: 100%;
    overflow: hidden;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header .section-label {
    color: var(--gray-500);
    justify-content: center;
}

.pricing-header .section-label::before {
    background: var(--white);
}

.pricing-header .section-title {
    color: var(--white);
}

.pricing-subtitle {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    padding: 3rem;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-amounts {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-setup {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.pricing-monthly {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    color: var(--white);
    line-height: 1;
}

.pricing-monthly span {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--gray-300);
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
    margin: 2rem 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-200);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--gray-300);
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    margin-top: 2rem;
    background: var(--white);
    color: var(--black);
}

.pricing-cta:hover {
    background: var(--gray-100);
}

.pricing-note {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-700);
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.security-badge svg {
    color: var(--gray-500);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    max-width: 100%;
}

.cta-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.35) 0%,
        rgba(236, 72, 153, 0.25) 30%,
        rgba(251, 146, 60, 0.18) 50%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-chat-hint {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
    margin-bottom: 0;
}

.cta-contact {
    margin-top: 2rem;
}

.cta-contact a {
    color: var(--gray-600);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.95rem;
    transition: color 0.2s;
    padding: 0.5rem;
    display: inline-block;
}

.cta-contact a:hover {
    color: var(--black);
}

.cta-contact a:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gray-800);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Visually hidden but accessible for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Button loading state */
.btn .btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

.btn.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Form status messages */
.form-status {
    margin-top: 1rem;
    padding: 0;
    font-size: 0.95rem;
    text-align: center;
    min-height: 1.5em;
}

.form-status.success {
    color: #059669;
}

.form-status.error {
    color: #dc2626;
}

/* Mobile responsive form */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--black);
    color: var(--gray-500);
    padding: 4rem 3rem 2rem;
    overflow-x: hidden;
    max-width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.875rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    padding: 0.5rem 0;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-700);
    border-radius: 50%;
    color: var(--gray-500);
    transition: all 0.2s ease;
}

.social-links a:hover {
    border-color: var(--white);
    color: var(--white);
}

.social-links a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-bottom a {
    color: var(--gray-600);
    text-decoration: none;
    margin-left: 1.5rem;
    padding: 0.5rem;
    display: inline-block;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter {
    display: inline-block;
    min-width: 2.5em;
    text-align: center;
}

/* Staggered animation delays */
.stat-row:nth-child(1) { transition-delay: 0s; }
.stat-row:nth-child(2) { transition-delay: 0.1s; }
.stat-row:nth-child(3) { transition-delay: 0.2s; }
.stat-row:nth-child(4) { transition-delay: 0.3s; }

.solution-card:nth-child(1) { transition-delay: 0s; }
.solution-card:nth-child(2) { transition-delay: 0.1s; }
.solution-card:nth-child(3) { transition-delay: 0.2s; }
.solution-card:nth-child(4) { transition-delay: 0.3s; }
.solution-card:nth-child(5) { transition-delay: 0.4s; }
.solution-card:nth-child(6) { transition-delay: 0.5s; }

.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(2) { transition-delay: 0.15s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }

.diff-item:nth-child(1) { transition-delay: 0s; }
.diff-item:nth-child(2) { transition-delay: 0.1s; }
.diff-item:nth-child(3) { transition-delay: 0.2s; }
.diff-item:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 50vh;
    }

    .diff-section {
        grid-template-columns: 1fr;
    }

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

    .image-section,
    .testimonial-section {
        grid-template-columns: 1fr;
    }

    .image-section-image,
    .testimonial-image {
        height: 300px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-row {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .stat-badge, .stat-category {
        display: none;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 0.75rem;
    }

    .nav-cta-text {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .image-section-content,
    .testimonial-content {
        padding: 3rem 1.5rem;
    }

    .trust-logos {
        gap: 1rem;
    }
}

/* ============================================
   SMALL PHONES (480px)
   ============================================ */

@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }

    .headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .stats-numbers,
    .agitate-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    nav {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        padding: 0 1rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    /* Disable all transitions and animations globally */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .mobile-nav {
        transition: none;
    }

    .fade-in {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .gradient-blob-container::before {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }

    /* Ensure skip link still works */
    .skip-link:focus {
        transition: none;
    }
}
