/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #f5f3ef;
    --bg-white: #ffffff;
    --bg-dark: #111111;
    --bg-dark-card: #1a1a1a;
    --bg-testimonials: #2d1b69;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-white: #ffffff;
    --accent-blue: #4a7dff;
    --accent-yellow: #fef3cd;
    --accent-green: #d4edda;
    --accent-pink: #fce4ec;
    --accent-purple: #e8d5f5;
    --accent-orange: #ffe0b2;
    --border-color: #e8e5e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}


/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 243, 239, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo-icon {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-base);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 16px;
    transition: var(--transition-fast);
}

.nav-login:hover {
    color: var(--text-primary);
}

.nav-signup {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    background: var(--text-primary);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    transition: var(--transition-base);
}

.nav-signup:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* ===== HERO SECTION ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #a8c0ff 0%, #7eb1f5 50%, #3f87f5 100%);
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

/* Social Proof Badge */
.social-proof-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease forwards;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.proof-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -4px;
    right: -4px;
    height: 16px;
    background: #87ceeb;
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

/* Claim Box */
.claim-box {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.claim-box:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(74, 125, 255, 0.1), var(--shadow-md);
}

.claim-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
}

.claim-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.claim-prefix {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
}

.claim-input {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
    width: 80px;
    min-width: 60px;
}

.claim-input::placeholder {
    color: var(--text-muted);
}

.claim-btn {
    background: var(--text-primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.claim-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Hero Phones */
.hero-phones {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    width: 240px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid #1a1a1a;
    background: #1a1a1a;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-1 {
    z-index: 3;
    transform: translateX(-20px) rotate(-5deg);
    animation: floatPhone1 6s ease-in-out infinite;
}

.phone-2 {
    z-index: 2;
    transform: translateX(40px) translateY(-20px) rotate(3deg);
    animation: floatPhone2 6s ease-in-out infinite 0.5s;
}

.phone-3 {
    z-index: 1;
    transform: translateX(120px) translateY(-40px) rotate(8deg);
    animation: floatPhone3 6s ease-in-out infinite 1s;
}

@keyframes floatPhone1 {
    0%, 100% { transform: translateX(-20px) rotate(-5deg) translateY(0); }
    50% { transform: translateX(-20px) rotate(-5deg) translateY(-15px); }
}

@keyframes floatPhone2 {
    0%, 100% { transform: translateX(40px) translateY(-20px) rotate(3deg); }
    50% { transform: translateX(40px) translateY(-35px) rotate(3deg); }
}

@keyframes floatPhone3 {
    0%, 100% { transform: translateX(120px) translateY(-40px) rotate(8deg); }
    50% { transform: translateX(120px) translateY(-55px) rotate(8deg); }
}


/* ===== MARQUEE TICKER ===== */
.marquee-section {
    background: #f0deb4;
    padding: 16px 0;
    overflow: hidden;
    border-top: 2px solid #e0ce9e;
    border-bottom: 2px solid #e0ce9e;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.marquee-item svg {
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(74, 125, 255, 0.08);
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-white {
    color: var(--text-white) !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card-yellow { background: #fef9e7; }
.feature-card-blue { background: #e8f0fe; }
.feature-card-green { background: #e6f7ed; }
.feature-card-pink { background: #fce8ec; }
.feature-card-purple { background: #f0e6f6; }
.feature-card-orange { background: #fff3e0; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ===== SHOWCASE SECTION ===== */
.showcase {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.showcase-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -24px;
    padding: 0 24px;
}

.showcase-carousel::-webkit-scrollbar {
    display: none;
}

.showcase-track {
    display: flex;
    gap: 24px;
    padding-bottom: 8px;
}

.showcase-card {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    transition: var(--transition-base);
}

.showcase-card:hover {
    transform: translateY(-4px);
}

.showcase-img {
    width: 200px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.showcase-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.showcase-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.showcase-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 120px;
}

.mini-link {
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.showcase-name {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.showcase-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-testimonials);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.2), transparent 70%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--text-primary);
}

.save-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--border-color);
    border-radius: var(--radius-pill);
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
}

.toggle-switch.active {
    background: var(--text-primary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--bg-white);
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
    background: var(--text-primary);
    color: var(--text-white);
    border-color: var(--text-primary);
    transform: scale(1.03);
}

.pricing-card-popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-card-popular .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-card-popular .pricing-desc {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.pricing-btn:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pricing-btn-primary {
    background: var(--bg-white);
    color: var(--text-primary);
    border-color: var(--bg-white);
}

.pricing-btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}


/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-chevron {
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 12px;
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    position: relative;
}

.cta-claim-box {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.cta-claim-box .claim-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--text-white);
}

.footer-tagline {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links-col li {
    margin-bottom: 12px;
}

.footer-links-col a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--text-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        max-width: 100%;
    }

    .claim-box {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-proof-badge {
        justify-content: center;
    }

    .hero::after {
        display: none;
    }

    .hero-phones {
        height: 380px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition: var(--transition-base);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-links.active ~ .nav-actions {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        gap: 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0;
        display: none;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item.active .dropdown-menu {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-phones {
        height: 300px;
    }

    .phone {
        width: 160px;
    }

    .phone-1 {
        transform: translateX(-40px) rotate(-5deg);
    }

    .phone-2 {
        transform: translateX(20px) translateY(-15px) rotate(3deg);
    }

    .phone-3 {
        transform: translateX(80px) translateY(-30px) rotate(8deg);
    }

    @keyframes floatPhone1 {
        0%, 100% { transform: translateX(-40px) rotate(-5deg) translateY(0); }
        50% { transform: translateX(-40px) rotate(-5deg) translateY(-10px); }
    }

    @keyframes floatPhone2 {
        0%, 100% { transform: translateX(20px) translateY(-15px) rotate(3deg); }
        50% { transform: translateX(20px) translateY(-25px) rotate(3deg); }
    }

    @keyframes floatPhone3 {
        0%, 100% { transform: translateX(80px) translateY(-30px) rotate(8deg); }
        50% { transform: translateX(80px) translateY(-40px) rotate(8deg); }
    }

    /* Sections Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .pricing-card-popular {
        transform: none;
    }

    .pricing-card-popular:hover {
        transform: translateY(-4px);
    }

    .cta-box {
        padding: 48px 24px;
    }

    .cta-claim-box {
        flex-direction: column;
        border-radius: var(--radius-lg);
        gap: 12px;
        padding: 16px;
    }

    .cta-claim-box .claim-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .claim-box {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 16px;
        gap: 12px;
    }

    .claim-btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}
