/* =====================================================
   PAGEO.PL — New Build
   Fonts: Albert Sans (headings) + Inter (body)
   ===================================================== */

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

/* ===== VARIABLES ===== */
:root {
    --bg-body: #ffffff;
    --bg-section-alt: #f8fafc;
    --bg-section-teal: #ecfeff;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #0E7490;
    --accent-hover: #0C6477;
    --accent-light: #99f0e0;
    --accent-gradient: linear-gradient(135deg, #0E7490 0%, #0d6b5e 100%);
    --green: #15803d;
    --red: #dc2626;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-alt {
    background: var(--bg-section-alt);
}

.bg-teal {
    background: var(--bg-section-teal);
}

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

.green { color: var(--green); }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.overline {
    display: inline-block;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-sub-light {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: var(--radius);
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    padding: 16px 40px;
    border-radius: var(--radius);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 8px 0;
    border: none;
    font-weight: 600;
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.2s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: -0.02em;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo:hover {
    color: var(--accent-hover);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.nav-cta {
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-section-teal) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero floating code snippets */
.hero-visual {
    position: relative;
    height: 400px;
}

.code-float {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    animation: floatUp 6s ease-in-out infinite;
}

.code-float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.code-float-2 {
    top: 35%;
    right: 5%;
    animation-delay: 1.5s;
}

.code-float-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.code-float-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-section-teal);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    width: 28px;
    height: 28px;
    color: var(--accent);
    stroke-width: 1.5;
}

.stat-number {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== PROBLEMS ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: var(--bg-card);
    border-left: 3px solid var(--red);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    margin-bottom: 1rem;
}

.problem-icon i {
    width: 32px;
    height: 32px;
    color: var(--red);
    stroke-width: 1.5;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.problems-solution {
    text-align: center;
    margin-top: 1rem;
}

/* ===== TRANSFORMATION / BENEFITS ===== */
.transformation {
    background: var(--bg-section-teal);
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section-teal);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 1.5;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.comparison-table thead {
    background: var(--bg-section-alt);
}

.comparison-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.comparison-table th.highlight {
    background: var(--accent);
    color: #fff;
    border-top: 3px solid var(--accent);
}

.comparison-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    vertical-align: middle;
}

.comparison-table td.highlight {
    background: rgba(14, 116, 144, 0.04);
    color: var(--text-main);
    font-weight: 500;
}

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

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-green {
    background: rgba(21, 128, 61, 0.1);
    color: var(--green);
}

.badge-red {
    background: rgba(220, 38, 38, 0.1);
    color: var(--red);
}

.badge-muted {
    background: rgba(100, 116, 139, 0.1);
    color: var(--text-muted);
}

.icon-green {
    width: 18px;
    height: 18px;
    color: var(--green);
    stroke-width: 2;
    vertical-align: middle;
}

.icon-red {
    width: 18px;
    height: 18px;
    color: var(--red);
    stroke-width: 2;
    vertical-align: middle;
}

/* ===== WHY ME ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section-teal);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.why-icon i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 1.5;
}

.why-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PROCESS / TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-content {
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.timeline-icon {
    margin-bottom: 0.5rem;
}

.timeline-icon i {
    width: 22px;
    height: 22px;
    color: var(--accent);
    stroke-width: 1.5;
}

.timeline-content h3 {
    margin-bottom: 0.35rem;
    color: var(--text-main);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-footer {
    text-align: center;
    margin-top: 3rem;
}

.timeline-meta {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 1;
}

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

.pricing-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
}

.pricing-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.price-currency {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0 2rem 1.5rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.pricing-features i {
    width: 18px;
    height: 18px;
    color: var(--green);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card > .btn {
    margin: 0 2rem 2rem;
}

/* Care Card */
.care-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1.5px dashed var(--accent);
}

.care-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.care-content h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.care-content h3 i {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.care-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.care-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.care-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.care-features i {
    width: 16px;
    height: 16px;
    color: var(--green);
    stroke-width: 2;
}

.care-price-wrap {
    flex-shrink: 0;
    text-align: right;
}

.pricing-extras {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-extras p {
    margin-bottom: 0.75rem;
}

.pricing-consult {
    margin-top: 0.5rem;
}

/* ===== CALCULATOR ===== */
.calc-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-step-title {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Calculator radios */
.calc-radios {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-radio {
    cursor: pointer;
    display: block;
}

.calc-radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-radio-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all 0.2s ease;
}

.calc-radio input:checked + .calc-radio-inner {
    border-color: var(--accent);
    background: rgba(14, 116, 144, 0.04);
    box-shadow: 0 0 0 1px var(--accent);
}

.calc-radio-name {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 600;
    color: var(--text-main);
}

.calc-radio-price {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Calculator checkboxes */
.calc-checks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-check {
    cursor: pointer;
    display: block;
}

.calc-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-check-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.calc-check input:checked + .calc-check-inner {
    border-color: var(--accent);
    background: rgba(14, 116, 144, 0.04);
    box-shadow: 0 0 0 1px var(--accent);
    color: var(--text-main);
}

.calc-check-price {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Calculator toggle */
.calc-toggle-wrap {
    display: flex;
    align-items: center;
}

.calc-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.calc-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.calc-toggle-slider {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--border);
    border-radius: 13px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.calc-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.calc-toggle input:checked + .calc-toggle-slider {
    background: var(--accent);
}

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

/* Calculator total */
.calc-total {
    position: sticky;
    top: 100px;
}

.calc-total-inner {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.calc-total-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.calc-total-amount {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.calc-total-breakdown {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===== CASE STUDY ===== */
.case-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    color: var(--text-main);
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.case-metric {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.case-metric i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    stroke-width: 1.5;
}

.case-metric-value {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.case-metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Browser Mockup */
.case-mockup {
    margin-bottom: 2rem;
}

.browser-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-section-alt);
    border-bottom: 1px solid var(--border);
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dot:first-child { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
    margin-left: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 4px 16px;
    border-radius: 6px;
    flex: 1;
    max-width: 300px;
}

.browser-body {
    background: var(--bg-card);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 4rem 2rem;
}

.case-placeholder i {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    stroke-width: 1;
}

.case-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

.case-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.case-ctas {
    margin-bottom: 1.5rem;
}

.case-bottom {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.case-bottom a {
    font-weight: 600;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--bg-section-teal);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    width: 28px;
    height: 28px;
    color: var(--accent);
    stroke-width: 1.5;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    gap: 1rem;
    transition: color 0.2s ease;
}

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

.faq-question span {
    flex: 1;
}

.faq-icon-open,
.faq-icon-close {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-icon-close {
    display: none;
}

.faq-item.open .faq-icon-open {
    display: none;
}

.faq-item.open .faq-icon-close {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--text-main);
    color: #fff;
}

.contact .section-header h2 {
    color: #fff;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.required {
    color: var(--red);
}

.optional {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    padding: 12px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--text-main);
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 0.8rem;
    color: #f87171;
    display: none;
}

.form-group.error input,
.form-group.error select {
    border-color: #f87171;
}

.form-group.error .form-error {
    display: block;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    grid-column: 1 / -1;
}

.form-disclaimer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.form-disclaimer a:hover {
    color: #fff;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.contact-email {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
}

.contact-email:hover {
    color: #fff;
}

.contact-social {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.contact-social:hover {
    color: #fff;
}

.contact-social i {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 0 0;
    color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: 'Albert Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
}

.footer-logo:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col a i {
    width: 16px;
    height: 16px;
    stroke-width: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-inner p a {
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Tablet (768px) */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        display: none;
    }

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

    .problems-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .care-inner {
        flex-direction: column;
        text-align: center;
    }

    .care-features {
        justify-content: center;
    }

    .calc-wrap {
        grid-template-columns: 1fr;
    }

    .calc-total {
        position: static;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-table-wrap {
        overflow-x: auto;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

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

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    h1 {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 50px;
    }

    .timeline-marker {
        left: -50px;
    }

    .timeline-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .timeline::before {
        left: 18px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

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

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.75rem;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .case-metrics {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

/* Small mobile (375px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .case-metrics {
        grid-template-columns: 1fr;
    }

    .calc-radios,
    .calc-checks {
        gap: 0.4rem;
    }

    .calc-radio-inner,
    .calc-check-inner {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .calc-total-amount {
        font-size: 2.2rem;
    }

    .timeline {
        padding-left: 44px;
    }

    .timeline-marker {
        left: -44px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .timeline::before {
        left: 16px;
    }

    .timeline-content {
        padding: 1.25rem 1.25rem;
    }

    .pricing-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .pricing-features {
        padding: 0 1.5rem 1rem;
    }

    .pricing-card > .btn {
        margin: 0 1.5rem 1.5rem;
    }
}