/* Global */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Brand tokens */
:root {
    --rn-pink: #FF3C68;
    /* primary */
    --rn-purple: #7F56D9;
    /* secondary */
    --rn-gold: #FFD700;
    /* accent */
    --rn-text: #141414;
    --rn-muted: #555555;
    --rn-border: #EAEAEA;
    --rn-bg: #FFFFFF;
    --rn-divider: #EAEAEA;
    --rn-shadow: 0 4px 18px rgba(0, 0, 0, .06);
    --rn-shadow-hover: 0 8px 26px rgba(0, 0, 0, .10);
    --rn-radius: 16px;
    --rn-pad: 24px;
}

body {
    font-family: Inter, system-ui, sans-serif
}

h1,
h2,
h3,
.btn {
    font-family: Roboto, Inter, system-ui, sans-serif
}

/* Generic */

.align-item-center {
    align-items: center;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.8);
    color: #4fb8ea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.service-block .eyebrow {
    color: #5BE1FF;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.service-block .section-title {
    font-family: Poppins, Inter, sans-serif;
    font-weight: 700;
}

.service-block .section-lead {
    color: #4b5563;
    max-width: 720px;
}

.service-bullets-2 li {
    margin-bottom: 14px;
}

.service-bullets-2 h6 {
    margin: 0 0 4px;
    font-weight: 600;
}

.service-bullets-2 p {
    margin: 0;
    color: #475569;
}

/* turn the label + subline into two lines */
.tech-list.two-line li strong {
    display: block;
    font-weight: 600;
    color: #141414;
    margin-bottom: 2px;
}

.tech-list.two-line li span {
    display: block;
    color: #555;
    font-weight: 400;
}

/* Blue/teal dot for right-side lists */
.tech-list.two-line.blue-dots li::before { 
    color: #7F56D9; /* or #0077B6 if you prefer darker */
  }

/* Header */

.shadow-bottom {
    background: #fff;
    /* keep white background */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* subtle shadow */
}

/* Hero Section Expanded */
.hero-expanded {
    /* taller vertical spacing */
    background: #fff;
    height: 75%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: "Roboto", sans-serif;
    font-size: 2.75rem;
    /* ~44px */
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--rn-pink, #FF3C68);
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    /* ~18px */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hero-proof {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    /* muted gray */
}

.header-logo {
    height: 50px;
}

.hero-services {
    color: #fff;
}

.hero-service img {
    height: 60px;
}

/* === HERO with image background === */
.hero-with-image {
    position: relative;
    min-height: 80vh;
    /* padding: 120px 0; */
    /* Use your generated image here */
    background-image: url("images/hero-digidolphins.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark/teal scrim to improve contrast under text block */
.hero-with-image .hero-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* two-layer scrim: a soft radial on the left + linear fade */
    background:
        radial-gradient(900px 560px at 22% 40%,
            rgba(7, 23, 34, 0.70) 0%,
            rgba(7, 23, 34, 0.45) 45%,
            rgba(7, 23, 34, 0.00) 70%),
        linear-gradient(90deg,
            rgba(7, 23, 34, 0.85) 0%,
            rgba(7, 23, 34, 0.50) 35%,
            rgba(7, 23, 34, 0.10) 62%,
            rgba(7, 23, 34, 0.00) 100%);
}

/* Keep content above scrim */
.hero-with-image .container {
    position: relative;
    z-index: 1;
}

/* Typography color adjustments for dark hero */
.hero-with-image .hero-title {
    color: #FFFFFF;
}

.hero-with-image .hero-subtitle {
    color: #CFE9F1;
}

.hero-with-image .hero-proof {
    color: #A9D6E2;
}

/* Buttons for dark background */
.btn-primary-cta {
    /* background: linear-gradient(90deg, #00B4D8 0%, #0077B6 100%); */
    color: #fff;
    border: 0;
    padding: 12px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 119, 182, 0.45);
    background-color: #FF3C68;
    color: #fff;
}

.btn-outline-secondary-cta {
    background: transparent;
    color: #EAF7FB;
    border: 1px solid #fff;
    padding: 12px 22px;
    border-radius: 12px;
    backdrop-filter: saturate(120%) blur(0.5px);
    transform: translateX(0);
    transition: transform 300ms linear;
}

.btn-outline-secondary-cta:hover {
    /* background: rgba(255, 255, 255, 0.06); */
    border-color: rgba(234, 247, 251, 0.75);
    color: #fff;
    transform: translateY(-2px);
    transition: transform 300ms linear;
}

/* Optional: lighten the pink highlight on dark bg */
.hero-with-image .hero-title .highlight {
    color: #5BE1FF;
    /* or keep your brand pink if you prefer */
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .hero-with-image {
        background-position: center bottom 20%;
        padding: 96px 0 72px;
    }

    .hero-with-image .row {
        row-gap: 24px;
    }

    .hero-with-image .hero-title {
        font-size: 2.25rem;
    }

    /* ~36px */
    .hero-with-image .hero-subtitle {
        font-size: 1rem;
    }

    /* hide the empty right column space on mobile */
    .hero-with-image .col-lg-6:last-child {
        display: none;
    }

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

/* HEADER now owns the hero background */
.header-hero {
    position: relative;
    margin-bottom: 0;
    /* remove mb-4 gap */
    padding-bottom: 0;
    /* we'll let .hero-expanded set the lower padding */
    background-image: url("images/hero-section.png");
    /* update path if needed */
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100vh;
}

/* scrim covers nav + hero */
.header-hero .hero-scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 560px at 22% 28%,
            rgba(7, 23, 34, .78) 0%,
            rgba(7, 23, 34, .48) 45%,
            rgba(7, 23, 34, 0) 70%),
        linear-gradient(90deg,
            rgba(7, 23, 34, .88) 0%,
            rgba(7, 23, 34, .50) 35%,
            rgba(7, 23, 34, .12) 62%,
            rgba(7, 23, 34, 0) 100%);
}

/* keep content above scrim */
.header-hero .container,
.header-hero .hero-expanded {
    position: relative;
    z-index: 1;
}

/* NAV appearance on dark bg */
.header-hero .header-nav .nav-link {
    color: rgba(234, 247, 251, .92);
    border-radius: 10px;
}

.header-hero .header-nav .nav-link:hover {
    color: #ffffff;
    /* background: rgba(255, 255, 255, 0.06); */
}

.header-hero .header-nav .nav-link.active {
    color: #0077B6;
    /* background: linear-gradient(90deg, #00B4D8 0%, #0077B6 100%); */
    border: 0;
}

/* logo sizing stays as you had */
.header-logo {
    height: 50px;
}

/* HERO spacing (under the nav) */
.hero-expanded {
    /* padding: 72px 0 120px; */
    /* smaller top pad since nav sits inside now */
    background: transparent;
    /* no white background here */
}

/* Responsive: ensure background centers better on small screens */
@media (max-width: 991.98px) {
    .header-hero {
        background-position: center bottom 20%;
    }

    .hero-expanded {
        /* padding: 56px 0 88px; */
    }
}

/* Reserve space when nav becomes fixed (prevents jump) */
:root {
    --nav-offset: 0px;
}

body.has-fixed-nav {
    padding-top: var(--nav-offset);
}

/* Base nav (on dark hero) — already styled earlier */
.site-nav {
    transition: background .2s ease, box-shadow .2s ease, color .2s ease;
    z-index: 50;
    /* above scrim */
}

/* Solid fixed state after hero */
.site-nav.is-solid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

/* Link colors in solid mode */
.site-nav.is-solid .header-nav .nav-link {
    color: #0f172a;
    /* slate-900 */
}

.site-nav.is-solid .header-nav .nav-link:hover {
    background: rgba(2, 6, 23, .05);
}

.site-nav.is-solid .header-nav .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, #00B4D8 0%, #0077B6 100%);
}

/* Optional: shrink vertical padding a bit when fixed */
.site-nav.is-solid {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

/* Sentinel just marks the end of header */
.hero-sentinel {
    height: 1px;
}


/* CTA buttons (reuse tokens if already defined) */
.btn-primary-cta {
    /* background: var(--rn-pink, #FF3C68); */
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-primary-cta:hover {
    filter: brightness(0.95);
}

.btn-outline-secondary-cta {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-outline-secondary-cta:hover {
    background: rgba(127, 86, 217, 0.06);
}

/* Mockups */
.hero-mockups {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup {
    max-width: 100%;
    height: auto;
}

.mockup.phone {
    z-index: 2;
    width: 220px;
}

.mockup.laptop {
    width: 360px;
    margin-left: -50px;
}

.mockup.stats {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 160px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

/* Responsive */
@media(max-width:991.98px) {
    .hero-expanded {
        /* padding: 80px 0; */
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-mockups {
        flex-direction: column;
        gap: 30px;
    }

    .mockup.stats {
        position: static;
    }
}


/* WHy choose us */
/* Section */
.why-choose-us .feature {
    border: 1px solid var(--rn-border);
    border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.why-choose-us .feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 20, 20, .08);
    border-color: rgba(127, 86, 217, .35);
}

/* Icon circles */
.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F4F4F5;
}

.icon-pink {
    background: rgba(255, 60, 104, .12);
}

.icon-purple {
    background: rgba(127, 86, 217, .12);
}

.icon-gold {
    background: rgba(255, 215, 0, .16);
}

.icon-blue {
    background: rgba(60, 130, 246, .14);
}

.icon-orange {
    background: rgba(249, 115, 22, .14);
}

.icon-green {
    background: rgba(34, 197, 94, .14);
}

/* Typography tweaks */
.why-choose-us h2 {
    color: var(--rn-text);
}

.why-choose-us .card h3 {
    color: var(--rn-text);
}

.why-choose-us .text-muted {
    color: var(--rn-muted) !important;
}

/* Optional: nav shadow utility you asked earlier */
.shadow-bottom {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}



/* ---------- Section ---------- */
.solutions-stage .section-title {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: var(--rn-text);
}

.solutions-stage .section-subtitle {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* ---------- Card ---------- */
.stage-card {
    position: relative;
    background: var(--rn-bg);
    border: 1px solid var(--rn-divider);
    border-radius: var(--rn-radius);
    box-shadow: var(--rn-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
    /* so the tab rounds nicely */
}

.stage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--rn-shadow-hover);
}

.stage-card .stage-tab {
    height: 12px;
    width: 100%;
    background: var(--rn-divider);
    /* default, overridden by modifiers */
}

.stage-card .stage-body {
    padding: var(--rn-pad);
}

.stage-card h3 {
    font-family: "Roboto", sans-serif;
    color: var(--rn-text);
}

/* Lists */
.stage-list {
    margin: 0 0 16px 0;
    padding-left: 1.1rem;
    /* compact indent */
    font-family: "Inter", sans-serif;
    color: #555;
}

.stage-list li {
    margin-bottom: 8px;
}

/* Link */
.stage-link {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
}

.stage-link:hover {
    opacity: .85;
    transform: translateX(1px);
}

/* ---------- Color modifiers ---------- */
.stage-card.is-launch .stage-tab {
    background: var(--rn-pink);
}

.stage-card.is-launch .stage-link {
    color: var(--rn-pink);
}

.stage-card.is-grow .stage-tab {
    background: var(--rn-purple);
}

.stage-card.is-grow .stage-link {
    color: var(--rn-purple);
}

.stage-card.is-scale .stage-tab {
    background: var(--rn-gold);
}

.stage-card.is-scale .stage-link {
    color: #C7A200;
}

/* slightly darker for contrast */

/* New modifier for the 4th card */
.stage-card.is-trust .stage-tab {
    background: var(--rn-text);
}

/* #141414 */
.stage-card.is-trust .stage-link {
    color: var(--rn-text);
}

/* (Keep the previously provided stage-card base styles, color tokens, and cta-band styles.) */


/* ---------- Responsive polish ---------- */
@media (max-width: 575.98px) {
    .stage-card .stage-body {
        padding: 20px;
    }
}

/* ===== Tokens ===== */
:root {
    --rn-pink: #FF3C68;
    --rn-purple: #7F56D9;
    --rn-gold: #FFD700;
    --rn-text: #141414;
    --rn-bg: #FFFFFF;
    --rn-divider: #EAEAEA;
    --cap-peach: #F7C6B8;
    --cap-indigo: #6B6BF8;
    --cap-lavender: #EEE6FF;
    --cap-violet: #B68CFF;
    --cap-shadow: 0 12px 30px rgba(20, 20, 20, .06);
}

/* ===== Timeline ===== */
.cap-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 680px;
    /* keep narrow like the reference */
}

.cap-timeline::before {
    content: "";
    position: absolute;
    left: 34px;
    /* aligns to chip center */
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: var(--rn-divider);
}

.cap-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 64px;
    /* space for chip overlap */
    margin-bottom: 14px;
}

/* Icon chip */
.cap-chip {
    position: absolute;
    left: 16px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #1b1b1b;
    background: #f2f2f2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    z-index: 2;
}

.chip-pink {
    background: var(--rn-pink);
    color: #fff;
}

.chip-purple {
    background: var(--rn-purple);
    color: #fff;
}

.chip-peach {
    background: var(--cap-peach);
    color: #141414;
}

.chip-indigo {
    background: var(--cap-indigo);
    color: #fff;
}

.chip-lavender {
    background: var(--cap-lavender);
    color: #141414;
}

.chip-violet {
    background: var(--cap-violet);
    color: #fff;
}

/* Pill card */
.cap-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--cap-shadow);
    position: relative;
}

.cap-card::before {
    /* rounded flank tucked under the chip (like the screenshot) */
    content: "";
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 28px;
    background: #fff;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

/* Typography */
.cap-card h3 {
    margin: 0 0 4px 0;
    font-family: "Roboto", sans-serif;
    color: var(--rn-text);
}

.cap-card p {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #666;
}

/* ===== Values panel (right column replacement) ===== */
.values-panel {
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
    padding: 24px;
}

.values-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.badge-soft {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #7F56D9;
    background: rgba(127, 86, 217, 0.10);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 16px;
    padding: 12px 14px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
    border-color: #E6E6E6;
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    flex-shrink: 0;
}

.value-title {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: #141414;
    line-height: 1.2;
    margin-bottom: 2px;
}

.value-sub {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* on-brand icon colors */
.icon-pink {
    background: #FF3C68;
}

.icon-purple {
    background: #7F56D9;
}

.icon-gold {
    background: #FFD700;
    color: #141414;
}

.icon-dark {
    background: #141414;
}

/* add two accent colors for the new cards */
.icon-teal {
    background: #21B2C7;
    color: #fff;
}

/* tidy teal (used earlier in your timeline) */
.icon-green {
    background: #22C55E;
    color: #fff;
}

/* positive/metrics vibe */

/* (rest of .values-panel, .values-grid, .value-card styles remain as you already added) */


/* Responsive: stack the grid on small screens */
@media (max-width: 991.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-panel {
        padding: 20px;
    }
}

/* ===== Technology Section ===== */
.tech-section {
    background: #fff;
    /* padding: 120px 0; */
    /* more breathing space like screenshot */
}

.tech-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #7F56D9;
    /* purple accent */
    text-transform: uppercase;
}

.tech-section h2 {
    font-family: "Roboto", sans-serif;
    color: #141414;
    line-height: 1.2;
}

.tech-section h2 .highlight {
    color: var(--rn-pink, #FF3C68);
}

.tech-section p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tech-list li {
    position: relative;
    padding-left: 26px;
    color: #141414;
    font-weight: 500;
}

.tech-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--rn-pink, #FF3C68);
    font-size: 1.4rem;
    line-height: 1;
}

.tech-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width:991.98px) {
    .tech-section {
        padding: 80px 0;
        text-align: center;
    }

    .tech-section p {
        margin: 0 auto 24px;
    }

    .tech-list {
        align-items: center;
    }
}

/* ===== AI & Automation (mirrored) ===== */
.ai-section {
    background: #fff;
    /* padding: 120px 0; */
    /* same vertical rhythm as tech-section */
}

/* Eyebrow + tiny type note (to match screenshot labels) */
.ai-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #141414;
    text-transform: uppercase;
}

.ai-type-note {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #141414;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Heading */
.ai-section h2 {
    font-family: "Roboto", sans-serif;
    color: #141414;
    line-height: 1.2;
}

.highlight-ai {
    color: var(--rn-purple, #7F56D9);
}

/* Reuse your tech list styles, tweak bullet color for AI */
.ai-list li::before {
    color: var(--rn-purple, #7F56D9);
}

/* Illustration */
.ai-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ai-section {
        padding: 80px 0;
        text-align: center;
    }

    .ai-list {
        align-items: center;
    }
}

/* ===== Tokens (already in your file, shown for reference) =====
:root{
  --rn-pink:#FF3C68; --rn-purple:#7F56D9; --rn-gold:#FFD700; --rn-text:#141414;
}
*/

/* ===== Horizontal Process Timeline ===== */
.process-hz {
    background: #fff;
}

.process-hz .text-center p {
    max-width: 660px;
    margin: 0 auto;
}

/* Track */
.process-track {
    list-style: none;
    margin: 0;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

/* Base line behind the dots */
.process-track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    /* aligns with dot center */
    height: 2px;
    background: #EAEAEA;
    z-index: 0;
}

/* Each step */
.step {
    flex: 1 1 0;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

/* Icon above the dot */
.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 8px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #141414;
}

.step-icon img {
    width: 100%;
}

/* Numbered colored dot */
.step-dot {
    position: relative;
    margin: 0 auto 10px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
    box-shadow: 0 12px 28px rgba(20, 20, 20, .10);
}

/* Inner white ring (subtle) */
.step-dot span {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
}

/* Color per step (close to screenshot) */
.step-1 .step-dot {
    background: #D13B6A;
}

/* deep pink */
.step-2 .step-dot {
    background: #E2504F;
}

/* warm red */
.step-3 .step-dot {
    background: #37B37E;
}

/* green */
.step-4 .step-dot {
    background: #21B2C7;
}

/* teal */
.step-5 .step-dot {
    background: #2F4C7E;
}

/* navy */

.step-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--rn-text);
    margin-bottom: 4px;
}

.step-sub {
    font-family: "Inter", sans-serif;
    color: #666;
    font-size: .95rem;
    margin: 0;
}

/* ===== Responsive: stack vertically on small screens ===== */
@media (max-width: 991.98px) {
    .process-track {
        flex-direction: column;
        gap: 18px;
        padding-left: 54px;
        /* room for vertical line + dots */
    }

    .process-track::before {
        left: 34px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .step {
        text-align: left;
    }

    .step-icon {
        margin: 0 0 8px 0;
    }

    .step-dot {
        position: absolute;
        left: 10px;
        top: 8px;
        width: 54px;
        height: 54px;
        font-size: 16px;
    }

    .step-title {
        margin-left: 12px;
    }

    .step-sub {
        margin-left: 12px;
    }
}


/* ===== Final CTA Section ===== */
.final-cta {
    background: #F9F9F9;
    /* light gray to separate from previous */
    padding: 100px 0;
    border-top: 1px solid #EAEAEA;
}

.cta-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    /* ~32px */
    color: #141414;
}

.cta-sub {
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    /* ~18px */
    color: #555;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary-cta {
    background: var(--rn-pink, #FF3C68);
    color: #fff;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary-cta:hover {
    filter: brightness(0.95);
}

.btn-outline-cta {
    border: 2px solid var(--rn-purple, #7F56D9);
    color: var(--rn-purple, #7F56D9);
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-cta:hover {
    background: rgba(127, 86, 217, 0.06);
}

/* ===== Footer ===== */
.site-footer {
    background: #141414;
    color: #fff;
    padding: 80px 0 40px;
    font-family: "Inter", sans-serif;
}

.footer-brand .brand-name {
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-brand .brand-tagline {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0;
}

.footer-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-social a {
    font-size: 1.25rem;
    color: #ccc;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}

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

