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

:root {
    --orange: #FF6B2C;
    --orange-light: #FF8F5C;
    --orange-dark: #E55A1B;
    --orange-glow: rgba(255, 107, 44, 0.15);
    --orange-subtle: rgba(255, 107, 44, 0.06);
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0A0A0A;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-full {
    height: 30px;
    width: auto;
    display: block;
}

.footer-logo .nav-logo-full {
    height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gray-900);
}

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

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gray-900);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--orange) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-subtle);
    border: 1px solid rgba(255, 107, 44, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange-dark);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--gray-900);
    margin-bottom: 28px;
}

.hero-title span {
    display: block;
}

.hero-title-accent {
    color: var(--orange);
    font-family: var(--font-serif);
    font-weight: 700;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--orange);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 44, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 44, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    padding: 14px 24px;
}

.btn-ghost:hover {
    color: var(--gray-900);
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-title em {
    font-family: var(--font-serif);
    color: var(--orange);
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 140px 0;
    background: var(--gray-50);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.problem-text {
    max-width: 600px;
}

.problem-text .section-title {
    margin-bottom: 0;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--orange-light);
}

.problem-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-subtle);
    border-radius: 16px;
    color: var(--orange);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

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

/* ===== SOLUTION SECTION ===== */
.solution {
    padding: 140px 0;
}

.solution-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 80px;
}

.solution-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

/* Browser Mockup */
.browser-mockup {
    width: 600px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo);
}

.browser-mockup:hover {
    transform: translateY(-8px) scale(1.01);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dots span:first-child { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA41; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
}

.browser-body {
    padding: 24px;
}

.mockup-hero-block {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 12px;
    margin-bottom: 20px;
}

.mockup-text-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-line {
    height: 10px;
    background: var(--gray-100);
    border-radius: 5px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mockup-card {
    height: 70px;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

/* Phone Mockup */
.phone-mockup {
    width: 200px;
    position: relative;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    padding: 9px;
    transition: transform 0.6s var(--ease-out-expo);
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(1.02);
}

.phone-cam {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 5px;
    background: var(--gray-300);
    border-radius: 3px;
    z-index: 2;
}

.phone-screen {
    background: var(--gray-50);
    border-radius: 22px;
    overflow: hidden;
    padding: 24px 12px 12px;
}

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

.phone-profile-pic {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--orange);
}

.phone-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.phone-line {
    height: 7px;
    border-radius: 4px;
    background: var(--gray-200);
}

.phone-line-name {
    width: 70%;
}

.phone-line-sub {
    width: 45%;
    background: var(--gray-100);
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.phone-post {
    aspect-ratio: 1;
    background: var(--gray-200);
    border-radius: 5px;
}

.phone-post:nth-child(1) { background: linear-gradient(135deg, var(--orange-subtle), var(--orange-glow)); }
.phone-post:nth-child(3) { background: linear-gradient(135deg, var(--orange-glow), var(--orange-subtle)); }
.phone-post:nth-child(5) { background: linear-gradient(135deg, var(--orange-subtle), var(--orange-glow)); }

/* ===== SERVICES ===== */
.services {
    padding: 140px 0;
    background: var(--gray-50);
}

.services .section-label,
.services .section-title {
    text-align: center;
}

.services .section-title {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

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

.services-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    text-align: center;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}


.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

/* ===== PROCESS ===== */
.process {
    padding: 140px 0;
}

.process .section-label,
.process .section-title {
    text-align: center;
}

.process .section-title {
    margin-bottom: 80px;
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.step-connector {
    position: absolute;
    left: 23px;
    top: 76px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.process-step:last-child .step-connector {
    display: none;
}

.step-dot {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step-dot span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    padding: 140px 0;
    background: var(--gray-50);
}

.pricing .section-label,
.pricing .section-title {
    text-align: center;
}

.pricing .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.pricing-card-featured {
    border: 2px solid var(--orange);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(255, 107, 44, 0.1);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 30px 80px rgba(255, 107, 44, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-card-featured .price-amount {
    color: var(--orange);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.pricing-period strong {
    color: var(--orange);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

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

.pricing-features li svg {
    color: var(--orange);
    flex-shrink: 0;
}

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

.pricing-single {
    display: flex;
    justify-content: center;
}

.pricing-card-single {
    max-width: 560px;
    width: 100%;
    padding: 56px 48px;
    border: 2px solid var(--orange);
    box-shadow: 0 20px 60px rgba(255, 107, 44, 0.1);
}

.pricing-from {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 14px;
    margin-right: 2px;
}

.pricing-card-single .price-amount {
    color: var(--orange);
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

@media (max-width: 640px) {
    .pricing-card-single {
        padding: 40px 28px;
    }
    .pricing-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOUNDER / ABOUT ===== */
.founder {
    padding: 60px 0 100px;
}

.founder-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
}

.founder-avatar {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gray-900);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 700;
}

.founder-text .section-label {
    margin-bottom: 8px;
}

.founder-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.founder-text p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
}

.founder-text p + p {
    margin-top: 12px;
}

@media (max-width: 640px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq .section-label,
.faq .section-title {
    text-align: center;
}

.faq .section-title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out-expo);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--orange);
    transition: transform 0.3s var(--ease-out-expo);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out-expo);
}

.faq-item.open .faq-answer {
    max-height: 240px;
}

.faq-answer p {
    padding: 0 26px 22px;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    padding: 140px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta .btn-ghost {
    color: var(--gray-600);
}

.cta .btn-ghost:hover {
    color: var(--gray-900);
}

.cta-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.trust-badge svg {
    color: var(--orange);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding-bottom: 32px;
}

.footer-logo {
    display: inline-flex;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-top: -4px;
}

.footer-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 28px;
    margin-top: 6px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.footer-nav::-webkit-scrollbar {
    display: none;
}

.footer-nav a {
    white-space: nowrap;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .solution-visual {
        position: relative;
        max-width: 360px;
        margin: 0 auto;
        gap: 0;
    }

    .browser-mockup {
        width: 100%;
        max-width: 360px;
    }

    .phone-mockup {
        position: absolute;
        right: 12px;
        bottom: 12px;
        width: 116px;
        padding: 6px;
        border-radius: 22px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    }

    .phone-cam {
        top: 11px;
        width: 24px;
        height: 4px;
    }

    .phone-screen {
        border-radius: 17px;
        padding: 16px 8px 8px;
    }

    .phone-header {
        gap: 6px;
        margin-bottom: 8px;
    }

    .phone-profile-pic {
        width: 26px;
        height: 26px;
        box-shadow: 0 0 0 1.5px var(--orange);
    }

    .phone-line {
        height: 5px;
    }

    .phone-grid {
        gap: 3px;
    }

    .deco-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding: 100px 20px 60px;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Padding verticale ridotto su mobile */
    .problem,
    .solution,
    .services,
    .process,
    .pricing,
    .cta {
        padding: 80px 0;
    }

    .trust,
    .faq {
        padding: 64px 0;
    }

    .founder {
        padding: 40px 0 64px;
    }

    /* Barra più compatta su mobile */
    .nav {
        padding: 14px 0;
    }

    .nav.scrolled {
        padding: 10px 0;
    }

    /* Logo più compatto su mobile per non ingombrare la barra */
    .nav-logo-full {
        height: 26px;
    }

    /* Nav footer su una riga sola, scorrevole se necessario */
    .footer-nav {
        justify-content: flex-start;
        gap: 20px;
        padding: 0 24px;
        mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-logo .nav-logo-full {
        height: 28px;
    }

    /* Voci menu mobile con area di tocco ampia */
    .nav-links a {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .nav-logo-full {
        height: 24px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SMOOTH SCROLL OFFSET ===== */
section[id] {
    scroll-margin-top: 80px;
}

/* ===== FLOATING SHAPES (HERO) ===== */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.shape-circle {
    width: var(--size, 60px);
    height: var(--size, 60px);
    border-radius: 50%;
    border: 1.5px solid var(--orange);
    opacity: 0.1;
}

.shape-ring {
    width: var(--size, 60px);
    height: var(--size, 60px);
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0.08;
    background: var(--orange-subtle);
}

.shape-square {
    width: var(--size, 40px);
    height: var(--size, 40px);
    border: 1.5px solid var(--orange);
    border-radius: 6px;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: float-rotate 10s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.shape-cross {
    width: var(--size, 30px);
    height: var(--size, 30px);
    position: absolute;
    opacity: 0.12;
}

.shape-cross::before,
.shape-cross::after {
    content: '';
    position: absolute;
    background: var(--orange);
    border-radius: 2px;
}

.shape-cross::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-cross::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: calc(var(--size, 50px) / 2) solid transparent;
    border-right: calc(var(--size, 50px) / 2) solid transparent;
    border-bottom: var(--size, 50px) solid transparent;
    position: absolute;
    opacity: 0.1;
}

.shape-triangle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: calc(var(--size, 50px) / -2 + 4px);
    width: 0;
    height: 0;
    border-left: calc(var(--size, 50px) / 2 - 4px) solid transparent;
    border-right: calc(var(--size, 50px) / 2 - 4px) solid transparent;
    border-bottom: calc(var(--size, 50px) - 6px) solid transparent;
}

/* Use a simple triangle outline via SVG-like approach */
.shape-triangle {
    border: none;
    width: var(--size, 50px);
    height: var(--size, 50px);
    background: none;
    opacity: 0.1;
}

.shape-triangle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--orange);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: transparent;
}

.shape-dots {
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 10px;
    opacity: 0.15;
}

.shape-dots::before,
.shape-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

/* Add more dots via box-shadow */
.shape-dots {
    width: 48px;
    height: 48px;
    background:
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 0 0,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 18px 0,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 36px 0,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 0 18px,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 18px 18px,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 36px 18px,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 0 36px,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 18px 36px,
        radial-gradient(circle, var(--orange) 3px, transparent 3px) 36px 36px;
    background-repeat: no-repeat;
    opacity: 0.12;
}

.shape-dots::before,
.shape-dots::after {
    display: none;
}

.shape-zigzag {
    width: 40px;
    height: 60px;
    opacity: 0.1;
    background: linear-gradient(135deg, var(--orange) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, var(--orange) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, var(--orange) 25%, transparent 25%),
                linear-gradient(45deg, var(--orange) 25%, transparent 25%);
    background-size: 20px 20px;
    background-repeat: repeat-y;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Simpler zigzag with border */
.shape-zigzag {
    width: 3px;
    height: 80px;
    background: none;
    position: relative;
}

.shape-zigzag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        var(--orange) 0px,
        var(--orange) 2px,
        transparent 2px,
        transparent 8px
    );
    opacity: 0.6;
}

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

@keyframes float-rotate {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(25deg) translateY(-15px); }
}

/* ===== SECTION DECORATIONS ===== */
.section-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.section-deco-left {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.section-deco-right {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.problem,
.solution,
.services,
.process {
    position: relative;
    overflow: hidden;
}

.deco-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 2px;
    margin-top: 20px;
}

/* ===== SERVICE ICONS ===== */
.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-subtle), rgba(255, 107, 44, 0.12));
    border-radius: 16px;
    color: var(--orange);
    margin-bottom: 16px;
    transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.05) rotate(-3deg);
}

/* ===== STEP TITLE ROW ===== */
.step-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-icon {
    opacity: 1;
}

/* ===== SOLUTION CONNECTOR ===== */
.deco-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* ===== CTA FLOATING SHAPES ===== */
.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.cta-shape-1 {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 107, 44, 0.15);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.cta-shape-search {
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-shape-search svg {
    width: 70px;
    height: 70px;
    opacity: 0.18;
}

.cta-shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 44, 0.05);
    bottom: 15%;
    right: 8%;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 107, 44, 0.12);
    top: 40%;
    right: 15%;
    border-radius: 8px;
    animation: float-rotate 8s ease-in-out infinite;
    animation-delay: 1s;
}

.cta-shape-4 {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 107, 44, 0.1);
    bottom: 20%;
    left: 12%;
    animation-delay: 3s;
}

/* ===== COOKIE BANNER (GDPR) ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cookie-text > svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.cookie-text p:first-child {
    margin-bottom: 4px;
}

.cookie-desc {
    font-size: 0.8rem !important;
    color: var(--gray-500) !important;
}

.cookie-desc a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

/* Cookie Preferences Panel */
.cookie-preferences {
    display: none;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cookie-preferences.open {
    display: block;
}

.cookie-pref-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.cookie-pref-inner h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-info strong {
    font-size: 0.9rem;
    color: var(--gray-800);
    display: block;
    margin-bottom: 4px;
}

.cookie-option-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--orange);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-pref-actions {
    padding-top: 16px;
    display: flex;
    justify-content: flex-end;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-page li {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--orange);
    text-decoration: underline;
}

.legal-page code {
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--orange-dark);
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.cookie-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table tr:hover td {
    background: var(--orange-subtle);
}

/* ===== RESPONSIVE COOKIE BANNER ===== */
@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-text {
        min-width: 0;
    }

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

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--orange-glow);
    color: var(--gray-900);
}
