:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent: #10b981;
    --danger: #ef4444;
    --text-main: #0f172a;
    --text-soft: #475569;
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --border-soft: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-premium: 0 20px 50px -12px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-xl: 32px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animated Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    animation: move 20s infinite alternate;
}

.blob-1 { width: 400px; height: 400px; top: -100px; right: -100px; background: #e0e7ff; }
.blob-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; background: #f0fdf4; animation-delay: -5s; }
.blob-3 { width: 250px; height: 250px; top: 40%; left: 20%; background: #faf5ff; animation-delay: -10s; }

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
}

.ajabron-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 28px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    gap: 10px;
    border: none !important;
    font-size: 0.95rem;
    width: fit-content !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Isolate widget from host styles */
#ajabroneerimine-widget {
    all: initial;
    display: block;
    width: 100%;
    font-family: "Manrope", sans-serif;
}

#ajabroneerimine-widget * {
    box-sizing: border-box;
}

.ajabron-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.5);
}

.ajabron-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.6);
}

.ajabron-btn-ghost {
    background-color: var(--bg-soft) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border-soft) !important;
}

.ajabron-btn-ghost:hover {
    background-color: white !important;
    border-color: var(--primary-light) !important;
    transform: translateY(-2px);
}

/* Navbar */
nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    z-index: 1000;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-premium);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 600px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    z-index: 1100;
    margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-soft);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.dropdown-content p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.4;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1200;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1150;
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 16px;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 16px;
}

.mobile-dropdown-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
}

.mobile-submenu.active {
    max-height: 800px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.mobile-submenu a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-dropdown-header i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-header.active i {
    transform: rotate(180deg);
}

/* Hamburger Active State */
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Responsive Adjustments */
@media (max-width: 1100px) {
    .dropdown-menu { display: none; }
    .nav-links { display: none; }
    .nav-actions .ajabron-btn-ghost { display: none !important; }
    .menu-toggle { display: flex; }
}

@media (max-width: 768px) {
    .nav-actions .ajabron-btn-primary { display: none !important; }
    .section { padding: 60px 0 !important; }

    .container { padding: 0 20px !important; }

    .hero { padding-top: 140px !important; padding-bottom: 60px !important; }
    .hero h1 { font-size: 2.2rem !important; }
    .hero p { font-size: 1.1rem !important; margin-bottom: 32px !important; }
    .hero-preview { margin-top: 48px !important; }

    .trust-flex { gap: 24px !important; }
    .trust-flex span { font-size: 0.75rem !important; }

    .walkthrough { margin: 0 !important; border-radius: 0 !important; padding: 60px 0 !important; }
    .walkthrough-header { margin-bottom: 60px !important; }
    .walkthrough-header h2 { font-size: 2rem !important; }

    .walkthrough > .container > div { gap: 60px !important; }
    .walkthrough > .container > div > div {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .walkthrough [data-reveal] { text-align: center; }
    .walkthrough [data-reveal] h3,
    .walkthrough [data-reveal] p,
    .walkthrough [data-reveal] ul { text-align: left; }
    .walkthrough ul { align-items: flex-start; }

    .walkthrough { overflow-x: hidden; }
    .walkthrough [data-reveal] { overflow: hidden; }
    .walkthrough [data-reveal] > div {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    .walkthrough h3 { font-size: 1.6rem !important; }
    .walkthrough h3,
    .walkthrough p,
    .walkthrough li { overflow-wrap: break-word; word-break: break-word; }

    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        gap: 16px !important;
    }
    .bento-item { padding: 32px !important; min-height: 200px; }

    #start .container > div { grid-template-columns: 1fr !important; gap: 40px !important; }
    #start .container > div > div:first-child { padding: 32px 20px !important; }
    .quiz-card { padding: 20px !important; }

    #consultation .container > div { grid-template-columns: 1fr !important; gap: 40px !important; }
    #consultation h2 { font-size: 2rem !important; }

    .cta-premium { padding: 40px 20px !important; }
    .cta-premium h2 { font-size: 2rem !important; }

    footer > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }
    footer ul { display: flex; flex-direction: column; align-items: center; }
    footer .trust-flex { justify-content: center; }
    footer.container > div:last-child {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: center;
    }

    .pricing-premium { padding: 40px 20px !important; margin-top: 40px !important; }

    .mobile-menu .ajabron-btn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    #start h2, #consultation h2 { font-size: 2rem !important; }
}

@media (max-width: 480px) {
    nav { padding: 12px 20px !important; }
    .logo { font-size: 1.05rem !important; }
    .hero h1 { font-size: 1.8rem !important; }
    .quiz-card { font-size: 0.9rem !important; }
    #quizStep1 > div, #quizStep3 > div { grid-template-columns: 1fr !important; }
}

/* Hero */
.hero {
    padding-top: 220px;
    padding-bottom: 100px;
    text-align: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid #e0e7ff;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-soft);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-preview {
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-preview img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
}

/* Trust Bar */
.trust-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border-soft);
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.trust-flex span {
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Walkthrough */
.walkthrough {
    background-color: #020617;
    color: white;
    padding: 140px 0;
    position: relative;
    border-radius: 60px;
    margin: 0 24px;
}

.walkthrough-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.walkthrough-header h2 {
    font-size: 3rem;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.walkthrough-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 100px;
    align-items: start;
}

.step-item {
    margin-bottom: 120px;
    opacity: 0.2;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.step-item.active {
    opacity: 1;
    transform: translateY(0);
}

.step-card {
    background: rgba(15, 23, 42, 0.6);
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.step-item.active .step-card {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 32px;
    font-size: 1.2rem;
}

.walkthrough-sticky {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.phone-container {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: 640px;
    background: #0f172a;
    border: 12px solid #1e293b;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s ease;
    color: #0f172a;
}

/* Bento Grid Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
    margin-top: 80px;
}

.bento-item {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-premium);
    transform: translateY(-5px);
}

.bento-item i {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.bento-item h3 {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.bento-item p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.item-wide { grid-column: span 2; }
.item-tall { grid-row: span 2; }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Card Premium */
.pricing-premium {
    background: white;
    width: 100%;
    padding: 64px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-premium);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-premium::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), #a855f7, var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.1;
}

/* CTA Section Premium */
.cta-premium {
    background: #020617;
    color: white;
    padding: 100px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium h2 {
    font-size: 3.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

/* Modern Check Icons */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ecfdf5;
    color: var(--accent);
    border-radius: 8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pricing-premium li:hover .check-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
    color: white;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .walkthrough-layout { grid-template-columns: 1fr; }
    .walkthrough-sticky { display: none; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .item-wide, .item-tall { grid-column: auto; grid-row: auto; }
    .cta-premium { padding: 60px 24px; }
}

/* Quiz Specific */
.quiz-card {
    background: white;
    border: 1px solid var(--border-soft);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-weight: 700;
    color: var(--text-main);
}

.quiz-card:hover {
    border-color: var(--primary);
    background: #f5f3ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.1);
}

.quiz-card i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.quiz-card-horizontal {
    background: white;
    border: 1px solid var(--border-soft);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    color: var(--text-main);
}

.quiz-card-horizontal:hover {
    border-color: var(--primary);
    background: #f5f3ff;
    transform: translateX(4px);
}

.quiz-card-horizontal i {
    width: 20px;
    height: 20px;
    color: var(--text-soft);
}

/* FAQ */
.faq-item {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-premium);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfdfe;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 32px;
}

.faq-answer p {
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Service Hero (from asukohad.php) */
.service-hero {
    padding: 180px 0 80px;
    background: white;
    border-bottom: 1px solid var(--border-soft);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-card {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-premium);
}

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--text-soft);
    align-items: center;
}

.how-to-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

footer {
    background: white;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; gap: 40px; }
    .service-hero { padding-top: 140px; }
    .footer-grid { grid-template-columns: 1fr; }
    footer { padding: 60px 20px 40px !important; }
}

/* Service Page Common Styles */
.service-hero {
    padding: 220px 0 120px;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
    animation: float 10s infinite alternate;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(-50px, 50px); }
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef2ff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.comparison-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.comparison-card {
    padding: 48px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: transform 0.3s ease;
}

.card-pain {
    background: #fff;
    border: 1px solid #fee2e2;
}

.card-gain {
    background: #fff;
    border: 1px solid #d1f7e8;
    box-shadow: var(--shadow-premium);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    align-items: flex-start;
}

.icon-red { color: var(--danger); background: #fef2f2; }
.icon-green { color: var(--accent); background: #ecfdf5; }

.mini-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.wow-section {
    padding: 120px 0;
    background: #020617;
    color: white;
    border-radius: 60px;
    margin: 0 24px;
    text-align: center;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .wow-section { margin: 0; border-radius: 0; }
}

/* Page Content Specific */
.page-container {
    max-width: 900px;
    margin: 160px auto 80px;
    padding: 0 24px;
}

.section-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-premium);
}

.page-container h1 { font-size: 3rem; margin-bottom: 32px; letter-spacing: -0.04em; }
.page-container h2 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 20px; letter-spacing: -0.02em; }
.page-container p, .page-container li { color: var(--text-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.page-container ul { padding-left: 20px; margin-bottom: 24px; }
.page-container li { margin-bottom: 8px; }
.page-container a { color: var(--primary); text-decoration: none; font-weight: 600; }
.page-container a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .page-container { margin-top: 120px; }
    .section-card { padding: 32px 24px; }
    .page-container h1 { font-size: 2.2rem; }
}
