/* ================================================================
   BBI Theme — Main Stylesheet
   BlockBridge Investments
   Production-ready • Premium fintech redesign
   ================================================================ */

/* ── Google Fonts loaded via PHP (Raleway + Open Sans) ─────────── */

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
    --navy:          #0d2035;
    --teal:          #2d8c89;
    --teal-light:    #a8d8d6;
    --teal-mid:      #4aa8a5;
    --cream:         #fdf5f0;
    --white:         #ffffff;
    --footer-bg:     #f2f2f2;
    --text:          #0d2035;
    --text-body:     #4a5568;
    --border:        #e2e8f0;
    --font-heading:  'Raleway', sans-serif;
    --font-body:     'Open Sans', sans-serif;
    --transition:    0.25s ease;
    --radius-card:   16px;
    --radius-pill:   50px;
    --shadow-card:   0 8px 40px rgba(13,32,53,0.10);
    --shadow-teal:   0 8px 24px rgba(45,140,137,0.35);
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

svg { display: inline-block; flex-shrink: 0; }

/* ── Layout Container ───────────────────────────────────────────── */
.container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Page Wrapper (offset fixed header) ────────────────────────── */
.page-wrapper {
    padding-top: 76px;
}

/* ── Skip Link ──────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -999px;
    left: 0;
    background: var(--teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ── Eyebrow Label ──────────────────────────────────────────────── */
.eyebrow-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(13,32,53,0.08);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 73px;
}

/* ── Logo ───────────────────────────────────────────────────────── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__img {
    height: 48px;
    width: auto;
}

.site-logo__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.08em;
}

.logo-line2 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.18em;
}

/* ── Primary Nav ────────────────────────────────────────────────── */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Nav link with animated teal underline */
.primary-nav a:not(.btn-appointment) {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.primary-nav a:not(.btn-appointment)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
}

.primary-nav a:not(.btn-appointment):hover,
.primary-nav a:not(.btn-appointment).active {
    color: var(--teal);
}

.primary-nav a:not(.btn-appointment):hover::after,
.primary-nav a:not(.btn-appointment).active::after {
    transform: scaleX(1);
}

/* Phone in nav */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy) !important;
    white-space: nowrap;
}

.nav-phone:hover { color: var(--teal) !important; }

/* Appointment button — pill style */
.btn-appointment {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.4rem;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy) !important;
    background: transparent;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
}

.btn-appointment:hover {
    background: var(--navy);
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(13,32,53,0.2);
    border-color: var(--navy);
}

/* ── Hamburger Toggle ───────────────────────────────────────────── */
.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: 4px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   BUTTONS (global)
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}

/* Teal filled — pill */
.btn-teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-teal:hover {
    background: var(--teal-mid);
    border-color: var(--teal-mid);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

/* Full width */
.btn-full {
    width: 100%;
    display: flex;
}

/* Outlined white (used on dark navy sections) — pill */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ================================================================
   TWO-COLUMN GRID
   ================================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col--contact {
    gap: 5rem;
    align-items: start;
}

/* Image column — dark section treatment */
.section-dark .two-col__image img {
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

/* Light section image */
.two-col__image img {
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Image placeholder */
.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.img-placeholder--fintech {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(45,140,137,0.12) 100%);
}

.img-placeholder--team {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(45,140,137,0.1) 100%);
}

.placeholder-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Content column (dark bg) */
.section-dark .two-col__content h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.section-dark .two-col__content p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    background:
        radial-gradient(ellipse 70% 80% at 60% 50%, rgba(168,216,214,0.18) 0%, transparent 65%),
        var(--cream);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 5rem;
}

/* Dot-grid texture overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13,32,53,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero text */
.hero-content h1 {
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.2rem;
    color: #5a6a7e;
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* ── Hero visual ────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    padding-right: 1.5rem;
}

.hero-crypto-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(13,32,53,0.2));
}

.crypto-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* CSS hexagon using clip-path */
.crypto-hex {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.crypto-hex:hover { transform: translateY(-4px) scale(1.04); }

.crypto-hex--btc {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    box-shadow: 0 8px 30px rgba(45,140,137,0.35);
    width: 130px;
    height: 130px;
}

.crypto-hex--eth {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
    box-shadow: 0 6px 24px rgba(45,140,137,0.3);
    width: 115px;
    height: 115px;
    margin-left: 2rem;
}

.crypto-hex--sol {
    background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-light) 100%);
    box-shadow: 0 6px 24px rgba(168,216,214,0.4);
    width: 105px;
    height: 105px;
    margin-left: -1rem;
}

.crypto-hex__symbol {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-heading);
}

.crypto-hex--sol .crypto-hex__symbol {
    color: var(--navy);
}

/* ── Hero hex decorations ───────────────────────────────────────── */
.hex-deco {
    position: absolute;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    opacity: 0.15;
    pointer-events: none;
}

.hex-deco--tl {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: -60px;
    left: -80px;
}

.hex-deco--br {
    width: 280px;
    height: 280px;
    background: var(--teal-light);
    bottom: -100px;
    right: -100px;
}

.hex-accent {
    position: absolute;
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
    pointer-events: none;
    z-index: 1;
}

.hex-accent--dark {
    width: 180px;
    height: 180px;
    background: var(--navy);
    opacity: 0.08;
    right: -20px;
    top: 0;
}

/* ================================================================
   FEATURE STRIP
   ================================================================ */
.feature-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.75rem;
    border-radius: 12px;
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(13,32,53,0.08);
    transform: translateY(-3px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(45,140,137,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card__icon svg {
    color: var(--teal);
    stroke: var(--teal);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

.feature-card__body {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   DARK NAVY SECTIONS
   ================================================================ */
.section-dark {
    background: linear-gradient(135deg, #0a1826 0%, #0d2035 50%, #0f2840 100%);
    padding: 96px 0;
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
    background: linear-gradient(135deg, var(--teal) 0%, #1a6e6b 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay on CTA band */
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-band__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.cta-band__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-band__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 560px;
}

/* CTA band outlined button that fills on hover */
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.875rem 2.2rem;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* ================================================================
   ABOUT HERO SECTION
   ================================================================ */
.about-hero {
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(168,216,214,0.15) 0%, transparent 65%),
        var(--cream);
    padding: 6.5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Dot-grid texture on about/contact hero */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(13,32,53,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0 auto;
}

.about-hero__content h1 {
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.about-hero__content p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* Accent line under h1 in about hero */
.hero-accent-line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--teal);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ── About hero hex decorations — more visible ──────────────────── */
.about-hex-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
    z-index: 1;
}

.about-hex-group--left  { left: 2.5rem; }
.about-hex-group--right { right: 2.5rem; }

.ahex {
    clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
}

.ahex--lg { width: 110px; height: 110px; }
.ahex--md { width:  85px; height:  85px; }
.ahex--sm { width:  62px; height:  62px; }

.ahex--dark  { background: var(--navy);       opacity: 0.20; }
.ahex--teal  { background: var(--teal);       opacity: 0.65; }
.ahex--light { background: var(--teal-light); opacity: 0.60; }

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.section-contact {
    background: var(--cream);
    padding: 96px 0;
}

/* ── Contact Info ───────────────────────────────────────────────── */
.contact-info .eyebrow-label {
    color: #1fa89e;
}

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
}

.contact-details li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details a {
    color: var(--navy);
    font-weight: 500;
}

.contact-details a:hover { color: var(--teal); }

/* ── Contact Form — card wrap ───────────────────────────────────── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgba(13,32,53,0.10);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row--half {
    flex-direction: row;
    gap: 1rem;
}

.form-row input,
.form-row textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
}

.form-row input:focus,
.form-row textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,140,137,0.12);
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

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

.form-row--half input {
    flex: 1;
}

/* Form feedback */
.form-feedback {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-feedback--success {
    background: rgba(45,140,137,0.1);
    color: var(--teal);
    border: 1px solid rgba(45,140,137,0.3);
}

.form-feedback--error {
    background: rgba(220,38,38,0.08);
    color: #dc2626;
    border: 1px solid rgba(220,38,38,0.2);
}

/* ================================================================
   FOOTER  — dark navy, 3-column
   ================================================================ */
.site-footer {
    background: var(--navy);
    border-top: 3px solid var(--teal);
    color: rgba(255,255,255,0.75);
}

.footer-main {
    padding: 4.5rem 0 3.5rem;
}

/* 3-col grid: brand (wider) | company links | contact */
.footer-cols {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}

.footer-col--brand .footer-logo-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-col--brand img {
    height: 46px;
    width: auto;
}

.footer-brand-desc {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin: 0;
    max-width: 300px;
}

/* Column headings */
.footer-col__heading {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

/* Nav links in footer */
.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col-nav a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col-nav a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Contact info list in footer */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.60);
    line-height: 1.65;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.70);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--white); }

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Bottom bar */
.footer-bottom-bar {
    padding: 1.5rem 0;
    background: rgba(0,0,0,0.22);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.28);
    line-height: 1.6;
    max-width: 680px;
    margin: 0;
}

/* ================================================================
   RESPONSIVE — TABLET (max 900px)
   ================================================================ */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        min-height: 260px;
        padding-right: 0;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .two-col--contact {
        gap: 2.5rem;
    }

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

    .feature-strip__grid .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-address,
    .footer-phone {
        justify-content: center;
    }

    .about-hex-group--left,
    .about-hex-group--right {
        display: none;
    }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {

    /* Show hamburger */
    .nav-toggle {
        display: flex;
    }

    /* Collapse nav into dropdown */
    .primary-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        z-index: 999;
    }

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

    .primary-nav a:not(.btn-appointment),
    .primary-nav .nav-phone,
    .primary-nav .btn-appointment {
        width: 100%;
        padding: 0.9rem 1.5rem;
        border: none;
        border-radius: 0;
        background: transparent;
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        color: var(--navy) !important;
        border-bottom: 1px solid var(--border);
    }

    /* Remove underline pseudo in mobile menu */
    .primary-nav a:not(.btn-appointment)::after {
        display: none;
    }

    .primary-nav .btn-appointment {
        border-left: 3px solid var(--teal);
        border-bottom: 1px solid var(--border);
    }

    .primary-nav a:hover,
    .primary-nav .nav-phone:hover {
        color: var(--teal) !important;
        background: rgba(45,140,137,0.05);
    }

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 4.5rem 0 4rem;
    }

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

    .hero-content .btn {
        margin: 0 auto;
    }

    .hero-visual {
        padding-right: 0;
    }

    .crypto-stack {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .crypto-hex--btc,
    .crypto-hex--eth,
    .crypto-hex--sol {
        width: 90px;
        height: 90px;
        margin: 0;
    }

    .crypto-hex__symbol { font-size: 1.6rem; }

    .hex-deco--tl { width: 120px; height: 120px; top: -30px; left: -40px; }
    .hex-deco--br { width: 160px; height: 160px; bottom: -50px; right: -50px; }

    /* Feature strip */
    .feature-strip {
        padding: 2.5rem 0;
    }

    .feature-strip__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-strip__grid .feature-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .feature-card {
        padding: 1.5rem;
    }

    /* Dark section */
    .section-dark {
        padding: 64px 0;
    }

    /* CTA band */
    .cta-band {
        padding: 3.5rem 0;
    }

    .cta-band__heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    /* Contact */
    .section-contact {
        padding: 64px 0;
    }

    .contact-form-wrap {
        padding: 1.75rem 1.5rem;
    }

    .form-row--half {
        flex-direction: column;
    }

    /* About hero */
    .about-hero {
        padding: 4.5rem 0 4rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-full { width: 100%; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ================================================================ */
@media (max-width: 480px) {
    .container { width: 92%; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.55rem; }

    .hero-section { padding: 4rem 0 3.5rem; }

    .crypto-hex--btc,
    .crypto-hex--eth,
    .crypto-hex--sol {
        width: 76px;
        height: 76px;
    }

    .crypto-hex__symbol { font-size: 1.35rem; }

    .contact-form-wrap { padding: 1.5rem 1.1rem; }

    .logo-line1 { font-size: 0.875rem; }
    .logo-line2 { font-size: 0.65rem; }

    .btn { padding: 0.8rem 1.6rem; }

    .cta-band { padding: 3rem 0; }
    .cta-band__sub { font-size: 0.95rem; }
}

/* ================================================================
   ACCESSIBILITY & MISC
   ================================================================ */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ================================================================
   TRANSITIONS & MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .primary-nav a:not(.btn-appointment)::after {
        transition: none;
    }
}

/* ================================================================
   STATS STRIP  (home page — after feature strip)
   ================================================================ */
.stats-strip {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.5rem;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    line-height: 1.45;
}

/* ================================================================
   SECTION HEADER  (centered heading block — reusable)
   ================================================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-header .eyebrow-label {
    margin-bottom: 0.6rem;
}

.section-header h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header__sub {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   PROCESS SECTION  (home page — how it works)
   ================================================================ */
.section-process {
    background: var(--white);
    padding: 96px 0;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem 2rem;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid transparent;
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition),
                border-color var(--transition);
}

.process-step:hover {
    box-shadow: 0 12px 40px rgba(13,32,53,0.08);
    transform: translateY(-4px);
    border-color: rgba(45,140,137,0.2);
}

.process-step__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 1.25rem;
    opacity: 0.75;
}

.process-step h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-step p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   VALUES SECTION  (about page)
   ================================================================ */
.section-values {
    background: var(--white);
    padding: 96px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 2rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition),
                transform var(--transition);
}

.value-card:hover {
    border-color: var(--teal);
    box-shadow: 0 10px 32px rgba(45,140,137,0.10);
    transform: translateY(-3px);
}

.value-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(45,140,137,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-card__icon svg { stroke: var(--teal); }

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.3;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   CONTACT INFO CARDS  (contact page — 3 cards above form)
   ================================================================ */
.section-contact-cards {
    background: var(--white);
    padding: 4rem 0 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition),
                transform var(--transition);
}

.contact-card:hover {
    border-color: var(--teal-light);
    box-shadow: 0 10px 32px rgba(45,140,137,0.08);
    transform: translateY(-3px);
}

.contact-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(45,140,137,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.contact-card__icon svg { stroke: var(--teal); }

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

.contact-card a {
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-card a:hover { color: var(--teal); }

/* Contact page — centered form section */
.section-contact-form {
    background: var(--white);
    padding: 3rem 0 96px;
}

.contact-form-centered {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-intro h2 {
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.contact-form-intro p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.75;
}

/* ================================================================
   RESPONSIVE — new sections (appended)
   ================================================================ */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
    }
    .stat-item { border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-item + .stat-item::before { display: none; }

    .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }

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

    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .stats-strip { padding: 3rem 0; }
    .stat-item { padding: 1.25rem 0.75rem; }

    .section-process { padding: 64px 0; }
    .process-step { padding: 1.75rem 1.5rem; }

    .section-values { padding: 64px 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }

    .section-contact-cards { padding: 3rem 0 0; }
    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .section-contact-form { padding: 2.5rem 0 64px; }

    .footer-main { padding: 3.5rem 0 2.5rem; }
    .footer-cols {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .footer-col--brand { grid-column: auto; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.75rem; }

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

    .contact-cards-grid { max-width: none; }
}
