:root {
    --orange: #FF8C42;
    --orange-dark: #b86a1f;
    --orange-light: #f5e0c8;
    --navy: #172c3a;
    --ink: #16161A;
    --slate: #6B7280;
    --muted: #9CA3AF;
    --cream: #FAFAF8;
    --pure: #FFFFFF;
    --success: #10B981;
    --border: #E5E5E5;

    --font-display: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 0.1;
}


/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Divider */
.divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.divider::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: var(--navy);
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    background: var(--navy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--pure);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out-back);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}


.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pure);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

/* Mobile hamburger menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--pure);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

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

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

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

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
}

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

.nav-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile-links a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

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

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease-out-expo);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--orange);
    color: var(--pure);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: var(--navy);
    color: var(--pure);
}

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

.btn-outline {
    background: var(--pure);
    color: var(--ink);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--pure);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) backwards;
}

.hero-badge span {
    color: var(--orange);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s backwards;
}

.hero-title .highlight {
    color: var(--orange);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--orange-light);
    z-index: -1;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s backwards;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s backwards;
}

.hero-ctas img {
    height: 56px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-ctas img:hover {
    transform: scale(1.05);
}

.hero-ctas .hero-mascot {
    height: 80px;
    cursor: default;
}

.hero-ctas .hero-mascot:hover {
    transform: none;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s var(--ease-out-expo) 0.4s backwards;
    display: flex;
    align-items: flex-end;
}

.hero-screenshot {
    max-width: 100%;
    max-height: 800px;
    width: auto;
    height: auto;
}

.hero-app {
    background: var(--pure);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border);
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.app-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
}

.app-date {
    font-size: 0.875rem;
    color: var(--slate);
}

.app-tasks {
    padding: 0.75rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 12px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.task-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.task-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.task-item:hover .task-checkbox {
    border-color: var(--orange);
}

.task-item.completed .task-checkbox {
    background: var(--success);
    border-color: var(--success);
}

.task-checkbox svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--pure);
    stroke-width: 2.5;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s var(--ease-out-back);
}

.task-item.completed .task-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.task-content h4 {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.task-item.completed .task-content h4 {
    text-decoration: line-through;
    color: var(--muted);
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--muted);
}

.task-tag {
    padding: 0.125rem 0.5rem;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.task-tag.green {
    background: #D1FAE5;
    color: #059669;
}

.task-tag.blue {
    background: #DBEAFE;
    color: #2563EB;
}

.floating-element {
    position: absolute;
    background: var(--pure);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

.floating-element.el-1 {
    top: -1.5rem;
    right: -1.5rem;
    animation-delay: 0s;
}

.floating-element.el-2 {
    bottom: 2rem;
    left: -2rem;
    animation-delay: -2s;
}

.floating-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--success), #34D399);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--pure);
    fill: none;
}

.floating-stat-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
}

.floating-stat-text span {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Social Proof */
.social-proof {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--pure);
}

.social-proof-text {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--slate);
    letter-spacing: -0.02em;
}

/* Features Section */
.features {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.features > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--navy);
    color: var(--pure);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate);
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}


.feature-row.reverse .feature-content {
    margin-left: auto;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--pure);
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-width: 2;
}

.feature-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.feature-content > p {
    color: var(--slate);
    line-height: 1.7;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.feature-testimonial {
    background: var(--pure);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-testimonial blockquote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--orange);
}

.feature-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-testimonial .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--orange);
}

.feature-testimonial .author-info strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.feature-testimonial .author-info span {
    font-size: 0.75rem;
    color: var(--muted);
}

.feature-screenshots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
}

.feature-row.reverse .feature-screenshots {
    padding-left: 0;
    padding-right: 10%;
    justify-content: flex-end;
}

.feature-screenshots img {
    width: 380px;
}

.features-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card-simple {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.feature-card-simple .feature-header {
    margin-bottom: 1rem;
}

.feature-card-simple > p {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-row.reverse .feature-content {
        margin-left: 0;
    }

    .feature-header {
        justify-content: center;
    }

    .feature-screenshots {
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        width: 100%;
    }

    .feature-row.reverse .feature-screenshots {
        padding-left: 0;
        padding-right: 0;
    }

    .feature-screenshots img {
        width: 100%;
        max-width: 380px;
    }

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

/* Pricing Section */
.pricing {
    padding: 4rem 0;
}

.pricing-table-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 1.5rem;
    position: relative;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.pricing-table thead {
    background: transparent;
}

.pricing-table th {
    padding: 1.5rem 1rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    text-align: center;
}

.pricing-table th.feature-col {
    width: 50%;
    background: transparent;
    box-shadow: none;
}

.pricing-table th.plan-col {
    width: 25%;
    background: var(--pure);
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-bottom: none;
}

.pricing-table th.plan-col.premium {
    background: var(--pure);
    color: var(--ink);
    position: relative;
    border: 2px solid var(--orange);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}

.pricing-table th.plan-col.premium .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--pure);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-table th.plan-col.premium .plan-name {
    display: block;
    font-size: 1.125rem;
    color: var(--orange);
}

.pricing-table th.plan-col.premium .plan-price {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    margin-top: 0.25rem;
}

.premium-crown {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: auto;
    transform: translate(50%, 50%);
}

.pricing-table tbody td:last-child {
    border-right: 2px solid var(--orange);
    border-left: 2px solid var(--orange);
}

.pricing-table tbody tr:last-child td:last-child {
    border-bottom: 2px solid var(--orange) !important;
    border-radius: 0 0 14px 14px !important;
}

.pricing-table tbody {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table tbody tr:first-child td {
    border-top: 1px solid var(--border);
}

.pricing-table tbody tr td:first-child {
    border-left: 1px solid var(--border);
}

.pricing-table tbody tr td:nth-child(2) {
    border-right: 1px solid var(--border);
}

.pricing-table tbody tr:last-child td {
    border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr {
    background: var(--pure);
}

.pricing-table tbody tr:first-child td:first-child {
    border-radius: 16px 0 0 0;
}

.pricing-table tbody tr:first-child td:nth-child(2) {
    border-radius: 0 16px 0 0;
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.pricing-table tbody tr:last-child td:nth-child(2) {
    border-radius: 0 0 16px 0;
}

.pricing-table td {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table td.check {
    text-align: center;
}

.pricing-table td.check svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    fill: none;
}

.pricing-table td.check.included svg {
    stroke: var(--success);
}

.pricing-table td.check.excluded svg {
    stroke: var(--muted);
}

@media (max-width: 640px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }

    .pricing-table td.check svg {
        width: 18px;
        height: 18px;
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--pure);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.faq-item:hover {
    border-color: var(--orange-light);
}

.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(255, 140, 66, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--muted);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    transition: transform 0.35s ease-in-out, stroke 0.2s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--slate);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--pure);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    color: var(--orange);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Avis */
.avis {
    padding: 8rem 0;
}

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

.testimonial-card {
    background: var(--pure);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s var(--ease-out-expo);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBF24;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--orange);
}

.author-info strong {
    display: block;
    font-weight: 500;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--muted);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-content {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--pure);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

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

.btn-white {
    background: var(--pure);
    color: var(--orange);
    font-weight: 500;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-ghost-white {
    background: transparent;
    color: var(--pure);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Footer */
.footer {
    background: var(--navy);
    padding: 5rem 0 0;
    color: var(--pure);
    overflow: hidden;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.25rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: var(--pure);
}

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

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

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

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + clamp(1.5rem, 5vw, 4rem));
    padding-right: calc(50vw - 50% + clamp(1.5rem, 5vw, 4rem));
    background: var(--navy);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--pure);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--pure);
}

/* Page Content (for legal pages) */
.page-content {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.page-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--ink);
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--slate);
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--slate);
}

.page-content li {
    margin-bottom: 0.5rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-ctas {
        justify-content: center;
    }

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

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

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

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

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

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

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

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

    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-ctas img {
        width: auto;
        max-width: 200px;
        height: auto;
        object-fit: contain;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .feature-row {
        padding: 1.25rem;
    }

    .feature-header h3 {
        font-size: 1.35rem;
    }

    .feature-content > p {
        font-size: 1rem;
    }

    .feature-testimonial {
        padding: 1rem;
    }

    .feature-testimonial blockquote {
        font-size: 0.875rem;
    }

    .feature-card-simple {
        padding: 1.25rem;
    }

    .features-list {
        gap: 3rem;
    }
}
