/* UGI Resto — Corporate Landing */
:root {
    --bg-dark: #0b0f1a;
    --bg-dark-2: #111827;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-inverse: #f8fafc;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-red: #ef4444;
    --accent-glow: rgba(249, 115, 22, 0.25);
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --header-h: 72px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(11, 15, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dark);
    transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
    background: rgba(11, 15, 26, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-header .navbar { padding: .75rem 0; }

.navbar-brand, .footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--text-inverse);
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    color: #fff;
    flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1rem; font-weight: 700; color: #fff; }
.brand-text small { font-size: .6875rem; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }

.site-header .nav-link {
    color: rgba(248, 250, 252, 0.75);
    font-size: .875rem;
    font-weight: 500;
    padding: .5rem .875rem !important;
    transition: color .2s;
}

.site-header .nav-link:hover,
.site-header .nav-link.active { color: #fff; }

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
    padding: .375rem .5rem;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: var(--bg-dark-2);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .75rem;
        border: 1px solid var(--border-dark);
    }
}

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, var(--accent), #fb923c);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--accent-glow);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 12px;
    background: transparent;
    transition: background .2s, border-color .2s;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-outline-dark-custom {
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 12px;
    background: var(--bg-white);
    transition: border-color .2s, box-shadow .2s;
}

.btn-outline-dark-custom:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

/* Sections */
section { padding: 5rem 0; }

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-inverse);
}

.section-dark .section-desc { color: rgba(248, 250, 252, 0.65); }

.section-light { background: var(--bg-light); }

/* Hero */
.hero {
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 5rem;
    background: var(--bg-dark);
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem .875rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: #fdba74;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fdba74 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.125rem;
    color: rgba(248, 250, 252, 0.7);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat span {
    font-size: .8125rem;
    color: var(--text-muted);
}

/* Dashboard Mockup */
.mockup-wrap {
    position: relative;
    perspective: 1200px;
}

.mockup-glow {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.dashboard-mockup {
    position: relative;
    z-index: 1;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform .4s ease;
}

.mockup-wrap:hover .dashboard-mockup {
    transform: rotateY(0) rotateX(0);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-dark);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #374151;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-body { display: flex; min-height: 320px; }

.mockup-sidebar {
    width: 56px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-dark);
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
}

.mockup-sidebar span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.mockup-sidebar span.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-red));
}

.mockup-main { flex: 1; padding: 1.25rem; }

.mockup-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-bottom: 1rem;
}

.mockup-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: .75rem;
}

.mockup-kpi small {
    display: block;
    font-size: .625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mockup-kpi strong {
    font-size: 1.125rem;
    color: #fff;
}

.mockup-kpi .up { color: #4ade80; font-size: .6875rem; }

.mockup-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1rem;
    height: 140px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.mockup-bar-col {
    flex: 1;
    background: linear-gradient(180deg, var(--accent), rgba(249, 115, 22, 0.3));
    border-radius: 4px 4px 0 0;
    min-height: 20%;
}

.mockup-orders {
    margin-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mockup-order {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: .75rem;
    color: rgba(248, 250, 252, 0.8);
}

.mockup-order .badge-pill {
    margin-left: auto;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .625rem;
    font-weight: 600;
}

.badge-preparing { background: rgba(249, 115, 22, 0.2); color: #fdba74; }
.badge-ready { background: rgba(34, 197, 94, 0.2); color: #86efac; }

/* Trust */
.trust-section {
    padding: 3rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: .5rem;
}

.trust-section p { color: var(--text-secondary); margin: 0; }

/* Cards */
.module-card, .feature-card, .audience-card, .insight-card, .pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.module-card:hover, .feature-card:hover, .audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.3);
}

.module-icon, .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(239, 68, 68, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.module-card h3, .feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.module-card p, .feature-card p {
    font-size: .875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Steps */
.steps { display: grid; gap: 2rem; }

@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-red));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* AI Section */
.ai-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    color: var(--text-inverse);
}

.insight-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-dark);
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.insight-card i {
    color: var(--accent);
    font-size: 1.125rem;
    margin-top: 2px;
}

.insight-card p {
    margin: 0;
    font-size: .9375rem;
    color: rgba(248, 250, 252, 0.85);
}

.ai-chat-mock {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.ai-msg {
    padding: .875rem 1rem;
    border-radius: 12px;
    font-size: .875rem;
    margin-bottom: .75rem;
    max-width: 90%;
}

.ai-msg.bot {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #fed7aa;
}

.ai-msg.user {
    background: rgba(255, 255, 255, 0.06);
    margin-left: auto;
    color: rgba(248, 250, 252, 0.8);
}

/* Feature lists */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.feature-pill {
    padding: .5rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.section-dark .feature-pill {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-dark);
    color: rgba(248, 250, 252, 0.85);
}

/* POS visual */
.pos-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.pos-flow-item {
    flex: 1 1 120px;
    max-width: 140px;
    text-align: center;
    padding: 1.25rem .75rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.pos-flow-item i {
    font-size: 1.5rem;
    color: var(--accent);
    display: block;
    margin-bottom: .5rem;
}

.pos-flow-item span {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pos-arrow { color: var(--text-muted); align-self: center; font-size: 1.25rem; }

/* Audience */
.audience-card {
    text-align: center;
    padding: 1.25rem;
    font-weight: 600;
    font-size: .9375rem;
}

.audience-card i {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: .5rem;
}

/* Pricing */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-red));
    color: #fff;
    font-size: .6875rem;
    font-weight: 700;
    padding: .25rem .875rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1rem 0 .25rem;
}

.pricing-card .price small {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-card .desc {
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.pricing-card li {
    font-size: .875rem;
    padding: .375rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.pricing-card li i {
    color: var(--accent);
    margin-top: 3px;
}

.pricing-note {
    text-align: center;
    font-size: .8125rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* FAQ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
    background: var(--bg-white);
}

.faq-item .accordion-button {
    font-weight: 600;
    font-size: .9375rem;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--accent);
}

.faq-item .accordion-body {
    font-size: .9375rem;
    color: var(--text-secondary);
    padding: 0 1.5rem 1.25rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 50%, var(--bg-dark) 100%);
    color: var(--text-inverse);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.15), transparent 60%);
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(248, 250, 252, 0.7);
    max-width: 560px;
    margin: 0 auto 2rem;
}

.final-cta .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.final-cta .phone-display {
    margin-top: 1.5rem;
    font-size: .875rem;
    color: var(--text-muted);
}

.final-cta .phone-display a {
    color: #fdba74;
    text-decoration: none;
    font-weight: 600;
}

/* Forms */
.page-hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 3rem;
    background: var(--bg-dark);
    color: var(--text-inverse);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .75rem;
}

.page-hero p {
    color: rgba(248, 250, 252, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-top: 1.25rem;
}

/* Demo Experience */
.demo-step-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.demo-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249, 115, 22, 0.35);
}

.demo-step-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.demo-step-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-red));
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.demo-step-card p {
    font-size: .875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.demo-step-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.demo-step-link:hover { color: var(--accent-hover); }

.demo-launch-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
}

.demo-launch-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.demo-launch-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.demo-launch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.demo-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.demo-quick-links a {
    padding: .375rem .875rem;
    border-radius: 999px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

.demo-quick-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Demo Credentials */
.demo-credentials-card {
    background: var(--bg-dark);
    color: var(--text-inverse);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}

.demo-credentials-head {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.demo-credentials-head i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 2px;
}

.demo-credentials-head h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: #fff;
}

.demo-credentials-head p {
    font-size: .8125rem;
    color: rgba(248, 250, 252, 0.6);
    margin: 0;
}

.demo-cred-row {
    padding: .875rem 0;
    border-top: 1px solid var(--border-dark);
}

.demo-cred-role {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fdba74;
    margin-bottom: .5rem;
}

.demo-cred-fields { display: grid; gap: .5rem; }

.demo-cred-field {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.demo-cred-field .label {
    font-size: .6875rem;
    color: var(--text-muted);
    min-width: 48px;
}

.demo-cred-field code {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: .25rem .5rem;
    font-size: .8125rem;
    color: #fff;
}

.btn-copy, .btn-copy-inline {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fdba74;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.btn-copy-inline {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-left: .25rem;
}

.btn-copy:hover, .btn-copy-inline:hover {
    background: rgba(249, 115, 22, 0.2);
}

.btn-copy.copied, .btn-copy-inline.copied {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.demo-cred-note {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center;
    margin: .75rem 0 0;
}

/* Thank You */
.thank-you-card { text-align: center; padding: 1rem 0; }

.thank-you-icon {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.thank-you-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.thank-you-lead {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: .5rem;
}

.thank-you-sub {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.thank-you-extra {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: .875rem;
    color: var(--text-secondary);
}

.thank-you-extra code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .8125rem;
}

.thank-you-link {
    display: inline-block;
    margin-top: .75rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* Pricing dual CTA */
.pricing-card .btn-link-pricing {
    display: block;
    text-align: center;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    padding: .5rem;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.pricing-card .btn-link-pricing:hover {
    color: var(--accent);
    background: var(--bg-light);
}

.pricing-card.featured .btn-link-pricing:hover {
    background: rgba(249, 115, 22, 0.08);
}

/* Contact */
.contact-address-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .9375rem;
    color: var(--text-secondary);
}

.contact-address-card i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Copy toast */
.copy-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: #0f172a;
    color: #fff;
    padding: .625rem 1.25rem;
    border-radius: 999px;
    font-size: .875rem;
    z-index: 2000;
    opacity: 0;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-label {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .375rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border-color: var(--border);
    padding: .625rem .875rem;
    font-size: .9375rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.alert-success-custom {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.alert-error-custom {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

/* Legal pages */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.legal-content p, .legal-content li {
    color: var(--text-secondary);
    font-size: .9375rem;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: rgba(248, 250, 252, 0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-dark);
}

.site-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .8125rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li { margin-bottom: .5rem; }

.site-footer a {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}

.site-footer a:hover { color: #fff; }

.footer-desc {
    font-size: .875rem;
    margin: 1rem 0;
    color: rgba(248, 250, 252, 0.5);
}

.footer-contact a {
    font-size: .875rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .375rem;
}

.footer-note {
    font-size: .75rem;
    color: rgba(248, 250, 252, 0.4);
    margin-top: 1.5rem;
}

/* Utilities */
.text-accent { color: var(--accent) !important; }

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    section { padding: 3.5rem 0; }
    .hero { padding-bottom: 3rem; }
    .mockup-body { min-height: 260px; }
    .mockup-kpis { grid-template-columns: 1fr 1fr; }
    .pricing-card.featured { transform: none; }
    .pos-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
