@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

/* ===== RESET & BASE ===== */

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

:root {
    --navy: #0D1B2A;
    --navy-deep: #060E18;
    --navy-mid: #112236;
    --green: #16A34A;
    --green-dark: #15803D;
    --green-light: #DCFCE7;
    --green-mid: #4ADE80;
    --white: #FFFFFF;
    --gray-bg: #F8FAFC;
    --gray-light: #F1F5F9;
    --gray: #64748B;
    --gray-dark: #334155;
    --border: #E2E8F0;
    --red-light: #FEF2F2;
    --red: #EF4444;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}


/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(36px, 5vw, 56px);
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 17px;
    font-weight: 700;
}

p {
    line-height: 1.7;
}


/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}


/* ===== SECTION LAYOUT ===== */

.section {
    padding: 88px 0;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(22, 163, 74, 0.15);
    color: var(--green-mid);
}

.section-intro {
    max-width: 580px;
}

.section-intro p {
    font-size: 17px;
    color: var(--gray);
    margin-top: 12px;
}

.section-intro.centered {
    margin: 0 auto;
    text-align: center;
}

.section-intro.centered p {
    margin: 12px auto 0;
}


/* ===== NAV ===== */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-dot {
    width: 9px;
    height: 9px;
    background: var(--green-mid);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color .2s;
}

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

.nav-cta {
    padding: 9px 18px;
    font-size: 14px;
}


/* mobile hamburger */

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .25s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--navy-mid);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

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

.nav-mobile a {
    padding: 14px 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color .2s;
}

.nav-mobile a:hover {
    color: var(--white);
}

.nav-mobile .btn {
    margin: 16px 40px 20px;
}


/* ===== HERO ===== */

.hero {
    background: var(--navy);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -80px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.13) 0%, transparent 68%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.14);
    border: 1px solid rgba(74, 222, 128, 0.28);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-mid);
    margin-bottom: 22px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green-mid);
    border-radius: 50%;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 18px;
}

.hero h1 em {
    color: var(--green-mid);
    font-style: normal;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.58);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-demo-note {
    margin-top: 14px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.hero-demo-note strong {
    color: var(--green-mid);
    font-weight: 600;
}


/* Hero mockup */

.hero-mockup {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mockup-bar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.mockup-url {
    flex: 1;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-body);
}

.mockup-body {
    padding: 18px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 12px;
}

.booking-main {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
}

.booking-headline h4 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 2px;
}

.booking-headline p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 8px;
}

.booking-legend {
    display: flex;
    gap: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.booking-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}

.legend-free {
    background: #86efac;
}

.legend-busy {
    background: #fca5a5;
}

.legend-picked {
    background: #60a5fa;
}

.booking-controls {
    margin-bottom: 8px;
}

.booking-chip {
    display: inline-block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 8px;
    border-radius: 999px;
}

.week-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 5px 7px;
}

.week-bar button {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.week-bar strong {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: 0.02em;
}

.week-grid {
    display: grid;
    grid-template-columns: 40px repeat(7, minmax(0, 1fr));
    gap: 4px;
}

.week-day {
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 2px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    line-height: 1.1;
}

.week-day small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.92);
}

.week-day.empty {
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.56);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-cell {
    text-align: center;
    font-size: 8px;
    padding: 6px 2px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slot-cell.free {
    background: rgba(34, 197, 94, 0.16);
    color: #bbf7d0;
}

.slot-cell.busy {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.slot-cell.blocked {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.32);
}

.booking-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-box {
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
}

.side-box h5 {
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.side-box h5 span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.side-box p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.45;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.cal-title-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-display);
}

.cal-nav-btns {
    display: flex;
    gap: 4px;
}

.cal-nav-btns button {
    background: rgba(255, 255, 255, 0.07);
    border: none;
    color: rgba(255, 255, 255, 0.45);
    width: 26px;
    height: 26px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 14px;
}

.cal-day-name {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 3px 0;
}

.cal-cell {
    text-align: center;
    font-size: 11px;
    padding: 5px 3px;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.cal-cell.free {
    background: rgba(255, 255, 255, 0.04);
}

.cal-cell.booked {
    background: rgba(22, 163, 74, 0.22);
    color: #4ADE80;
    font-weight: 600;
}

.cal-cell.today {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
}

.slots {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 9px 12px;
}

.slot-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.slot-time {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.slot-who {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}

.slot-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.badge-ok {
    background: rgba(22, 163, 74, 0.2);
    color: #4ADE80;
}

.badge-full {
    background: rgba(239, 68, 68, 0.2);
    color: #FCA5A5;
}

.badge-free {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
}


/* ===== STATS BAR ===== */

.stats-bar {
    background: var(--green);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 34px;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 3px;
}


/* ===== PROBLEM / SOLUTION ===== */

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 52px;
}

.problem-col,
.solution-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.col-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.col-label.bad {
    color: var(--red);
}

.col-label.good {
    color: var(--green);
}

.problem-item,
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
}

.problem-item {
    background: var(--red-light);
    border-left: 3px solid var(--red);
}

.solution-item {
    background: #F0FDF4;
    border-left: 3px solid var(--green);
}

.pi-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pi-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.pi-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
}


/* ===== FEATURES ===== */

.features-bg {
    background: var(--gray-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .25s;
}

.feat-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.1);
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feat-card h4 {
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}


/* ===== HOW IT WORKS ===== */

.steps-bg {
    background: var(--navy);
}

.steps-bg .section-intro h2 {
    color: var(--white);
}

.steps-bg .section-intro p {
    color: rgba(255, 255, 255, 0.52);
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 52px;
    position: relative;
}

.steps-flow::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.5% + 20px);
    right: calc(16.5% + 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.step-item {
    text-align: center;
    padding: 0 28px;
}

.step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: rgba(22, 163, 74, 0.12);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    color: var(--green-mid);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.65;
}

.steps-flow-secondary {
    grid-template-columns: 1fr;
    margin-top: 28px;
}

.steps-flow-secondary::before {
    display: none;
}

.steps-flow-secondary .step-item {
    max-width: 640px;
    margin: 0 auto;
}

.step-num-muted {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.4rem;
}


/* ===== DEMO SCREENSHOT ===== */

.demo-bg {
    background: var(--navy);
    padding: 48px 0 88px;
}

.demo-section-note {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.6;
}

.demo-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 0;
}

.demo-bar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.demo-bar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-bar-url {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 5px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.demo-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 380px;
}

.demo-sidebar {
    background: rgba(255, 255, 255, 0.025);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 12px;
}

.demo-sidebar-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--white);
    padding: 0 8px;
    margin-bottom: 26px;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    margin-bottom: 2px;
    transition: all .18s;
}

.demo-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
}

.demo-nav-item.active {
    background: rgba(22, 163, 74, 0.14);
    color: var(--green-mid);
}

.demo-nav-icon {
    font-size: 15px;
}

.demo-main {
    padding: 26px 28px;
}

.demo-main-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 22px;
}

.demo-table {
    width: 100%;
    border-collapse: collapse;
}

.demo-table th {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 0 10px 10px;
    text-align: left;
}

.demo-table td {
    padding: 11px 10px;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-table tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.td-name {
    font-weight: 600;
    color: var(--white);
}

.td-venue {
    color: rgba(255, 255, 255, 0.5);
}

.td-time {
    color: rgba(255, 255, 255, 0.6);
}

.badge-confirmed {
    background: rgba(22, 163, 74, 0.2);
    color: #4ADE80;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.badge-pending {
    background: rgba(245, 158, 11, 0.2);
    color: #FCD34D;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.badge-repeat {
    background: rgba(99, 102, 241, 0.2);
    color: #A5B4FC;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}


/* ===== TRUST ===== */

.trust-bg {
    background: #F0FDF4;
}

.trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trust-inner h2 {
    margin-bottom: 14px;
    line-height: 1.15;
}

.trust-inner>div:first-child p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.trust-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.trust-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}


/* ===== REFERENCES ===== */

.references-bg {
    background: var(--white);
}

.refs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 46px;
}

.ref-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: #FCFFFD;
}

.ref-head {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.ref-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.ref-meta {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 14px;
}

.ref-quote {
    color: var(--gray-dark);
    font-size: 15px;
    margin-bottom: 16px;
}

.ref-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ref-points li {
    font-size: 14px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-points li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
}


/* ===== PRICING ===== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1080px;
    margin: 52px auto 0;
}

.price-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
}

.price-card.popular {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
}

.pop-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 14px;
    color: var(--gray);
}

.plan-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin: 18px 0 4px;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
}

.plan-note {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
}

.plan-list li {
    font-size: 14px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all .2s;
}

.plan-btn.dark {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--navy);
}

.plan-btn.dark:hover {
    border-color: var(--navy);
}

.plan-btn.green {
    background: var(--green);
    color: var(--white);
}

.plan-btn.green:hover {
    background: var(--green-dark);
}


/* ===== FAQ ===== */

.faq-bg {
    background: var(--gray-bg);
}

.faq-list {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    list-style: none;
    padding-right: 20px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--green-dark);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 10px;
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}


/* ===== CTA / CONTACT ===== */

.cta-bg {
    background: var(--navy);
}

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

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-inner h2 em {
    color: var(--green-mid);
    font-style: normal;
}

.cta-inner>p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 44px;
}

.contact-form-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    margin: -20px 0 28px;
}

.contact-form-cta {
    display: inline-flex;
    margin-bottom: 8px;
    text-decoration: none;
}

.contact-form-intro-note {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-link {
    color: var(--green-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-item a {
    color: var(--green-dark);
    font-weight: 600;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 580px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border .2s;
    -webkit-appearance: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(74, 222, 128, 0.45);
}

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

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.consent-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.consent-wrap input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
    flex-shrink: 0;
    cursor: pointer;
}

.consent-wrap a {
    color: #86efac;
    text-decoration: underline;
}

.consent-wrap a:hover {
    color: #bbf7d0;
}

.contact-submit {
    grid-column: 1 / -1;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s;
}

.contact-submit:hover {
    background: var(--green-dark);
}


/* Form status messages */

.form-msg {
    grid-column: 1 / -1;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-msg.success {
    background: rgba(22, 163, 74, 0.18);
    color: #4ADE80;
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.form-msg.error {
    background: rgba(239, 68, 68, 0.18);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}


/* ===== FOOTER ===== */

.footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 28px 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    transition: color .2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.55);
}

.footer-link-button {
    border: 0;
    padding: 0;
    background: transparent;
    font: inherit;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: color .2s;
}

.footer-link-button:hover {
    color: rgba(255, 255, 255, 0.55);
}


/* ===== COOKIE CONSENT ===== */

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 18px;
    background: rgba(6, 14, 24, 0.72);
    backdrop-filter: blur(10px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 -16px 48px rgba(13, 27, 42, 0.16);
}

.cookie-consent-copy {
    max-width: 700px;
}

.cookie-consent-copy h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.cookie-consent-copy p {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent-actions .btn {
    padding: 11px 18px;
    font-size: 14px;
}

.cookie-consent-actions a {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.cookie-consent-actions a:hover {
    text-decoration: underline;
}


/* ===== ANIMATIONS ===== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
}

.fade-up.visible {
    animation: fadeUp .55s ease forwards;
}

.fade-up:nth-child(2) {
    animation-delay: .1s;
}

.fade-up:nth-child(3) {
    animation-delay: .2s;
}

.fade-up:nth-child(4) {
    animation-delay: .3s;
}

.fade-up:nth-child(5) {
    animation-delay: .4s;
}

.fade-up:nth-child(6) {
    animation-delay: .5s;
}


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

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-mockup {
        display: none;
    }
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .steps-flow::before {
        display: none;
    }
    .demo-layout {
        grid-template-columns: 1fr;
    }
    .demo-sidebar {
        display: none;
    }
    .trust-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .refs-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .full {
        grid-column: 1;
    }
    .contact-submit {
        grid-column: 1;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    .cookie-consent-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .cookie-consent-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 20px;
    }
    .section {
        padding: 60px 0;
    }
    .stats-inner {
        padding: 0 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .trust-checks {
        grid-template-columns: 1fr;
    }
    .cookie-consent {
        padding: 10px;
    }
    .cookie-consent-inner {
        padding: 18px;
    }
    .cookie-consent-actions,
    .cookie-consent-actions .btn {
        width: 100%;
    }
    .cookie-consent-actions .btn {
        justify-content: center;
    }
}