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

:root {
    --bg:        #0D0D0D;
    --bg-2:      #141414;
    --bg-3:      #1C1C1C;
    --border:    #2A2A2A;
    --text:      #FFFFFF;
    --muted:     #888888;
    --orange:    #E07230;
    --orange-dk: #C05E20;
    --gold:      #C9A55A;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --max-w:     1200px;
    --radius:    8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
    width: 90%;
    max-width: var(--max-w);
    margin: 0 auto;
}

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

.label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.btn--orange {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.btn--orange:hover {
    background: var(--orange-dk);
    border-color: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 114, 48, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn--ghost {
    background: transparent;
    color: var(--muted);
    border-color: transparent;
    padding-left: 0;
}
.btn--ghost:hover { color: var(--text); }

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background var(--transition), border-bottom var(--transition);
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 5%;
    max-width: calc(var(--max-w) + 10%);
    margin: 0 auto;
}

.nav__logo-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text);
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.03em;
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

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

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
    display: none;
    background: rgba(13, 13, 13, 0.98);
    border-top: 1px solid var(--border);
    padding: 2rem 5%;
}

.nav__mobile.open { display: block; }

.nav__mobile ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav__mobile a {
    font-size: 1.1rem;
    color: var(--muted);
    transition: color var(--transition);
}

.nav__mobile a:hover { color: var(--text); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #0D0D0D, #0D0D0D 40%, #1a0b02 74%, #2a1104 88%);
}

/* Three-column border grid overlay */
.hero__grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: clamp(28px, 10vw, 120px) auto clamp(28px, 10vw, 120px);
    border-bottom: 1px solid var(--border);
    pointer-events: none;
}
.hero__grid-overlay > div { height: 100%; }
.hero__grid-center {
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
}

/* Bottom ellipse depth ring */
.hero__ellipse {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(700px, 100%, 1400px);
    height: 500px;
    border-radius: 100%;
    border: 1px solid rgba(224,114,48,0.12);
    background: radial-gradient(closest-side, #0D0D0D 82%, #3a1a08);
    pointer-events: none;
    z-index: 1;
}

/* Ambient blur orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    margin: 0;
}
.hero__orb--bottom {
    bottom: -70%;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    aspect-ratio: 1;
    background: rgba(224,114,48,0.15);
    filter: blur(200px);
    z-index: 0;
}
.hero__orb--left {
    top: 64px;
    left: 4vw;
    width: 32vw;
    aspect-ratio: 1;
    background: rgba(224,114,48,0.07);
    filter: blur(100px);
    display: none;
    z-index: 0;
}
.hero__orb--right {
    bottom: -50px;
    right: 7vw;
    width: 30vw;
    aspect-ratio: 1;
    background: rgba(224,114,48,0.07);
    filter: blur(100px);
    display: none;
    z-index: 0;
}
@media (min-width: 768px) {
    .hero__orb--left,
    .hero__orb--right { display: block; }
}

/* Inner content wrapper */
.hero__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 5% 80px;
    width: 100%;
}

/* Badge */
.hero__badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.hero__badge {
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    padding: 0.4rem 1.2rem;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
}

/* Headline + sub */
.hero__text-block {
    max-width: 80vw;
    margin: 0 auto 2rem;
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}
.hero h1 em { font-style: italic; font-weight: 600; }
.hero__sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA column */
.hero__ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 392px;
    margin: 2.5rem auto 0;
}
.hero__cta-ghost {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    background: transparent;
    backdrop-filter: blur(12px);
    color: var(--text);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s;
    border-radius: 0;
}
.hero__cta-ghost:hover { background: rgba(255,255,255,0.05); }
.hero__cta-primary {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C05E20, #E07230, #f0a060);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0;
    transition: opacity 0.15s;
}
.hero__cta-primary:hover { opacity: 0.9; }

/* Animated logo cloud */
.hero__logos {
    width: 100%;
    padding: 3.5rem 0 1rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.hero__logos-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: hero-logo-scroll 28s linear infinite;
}
.hero__logos-track img {
    height: 36px;
    width: 112px;
    object-fit: contain;
    padding: 0 8px;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    flex-shrink: 0;
}
@keyframes hero-logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    padding: 2.5rem 0;
}

.trust-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-bar__item {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-align: center;
    padding: 0.8rem 2rem;
}

.trust-bar__num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.trust-bar__label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.trust-bar__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
    padding: 7rem 0;
}

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

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

.service-card--featured {
    border-color: rgba(224, 114, 48, 0.35);
    position: relative;
}

.service-card--featured:hover { border-color: var(--orange); }

.service-card__badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.service-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 114, 48, 0.08);
    border: 1px solid rgba(224, 114, 48, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.service-card__num {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.service-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.service-card__list li {
    font-size: 0.85rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
}

.service-card__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 0.75rem;
}

.service-card__link {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.03em;
    transition: opacity var(--transition);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-card__link:hover { opacity: 0.7; }

/* ── About ────────────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: var(--bg-2);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
}

.about__image { position: relative; }

.about__image-inner {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
}

.about__photo-initials {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 600;
    color: var(--orange);
}

.about__photo-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__image-border {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 1px solid var(--orange);
    border-radius: var(--radius);
    opacity: 0.2;
    z-index: -1;
}

.about__content { display: flex; flex-direction: column; gap: 1.2rem; }

.about__content h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.1;
}

.about__content h2 em { font-style: italic; }

.about__role {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.about__content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about__content blockquote {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    border-left: 2px solid var(--orange);
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

/* ── Process ──────────────────────────────────────────────── */
.process {
    padding: 7rem 0;
}

.process__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.process__grid--five {
    flex-wrap: nowrap;
}

.process__grid--five .process__step {
    flex: 1;
}

.process__grid--five .process__arrow {
    flex-shrink: 0;
}

.process__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color var(--transition);
}

.process__step:hover { border-color: var(--orange); }

.process__num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.process__step h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
}

.process__step p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.8rem;
    color: var(--orange);
    font-size: 1.3rem;
    flex-shrink: 0;
    padding-top: 3.5rem;
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog {
    padding: 7rem 0;
    background: var(--bg-2);
}

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

.blog-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color var(--transition), transform var(--transition);
}

.blog-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.blog-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(224, 114, 48, 0.08);
    border: 1px solid rgba(224, 114, 48, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    width: fit-content;
}

.blog-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.75;
    flex: 1;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--muted);
}

.blog-card__link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    transition: opacity var(--transition);
}

.blog-card__link:hover { opacity: 0.7; }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 30vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(224, 114, 48, 0.03);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
}

.cta-section p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 420px;
}

.cta-section__contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 600px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
}

.cta-section__contact a:hover { color: var(--orange); }

.cta-section__social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    max-width: 360px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}

.cta-section__social a:hover { color: var(--orange); }
.cta-section__social span { opacity: 0.4; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.5rem; max-width: 360px; }

.footer__logo-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer__brand p {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer__disclaimer {
    font-size: 0.72rem !important;
    color: #555 !important;
    line-height: 1.6;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin-top: 0.5rem;
}

.footer__nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer__nav a {
    font-size: 0.82rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer__nav a:hover { color: var(--text); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--muted);
    flex-wrap: wrap;
}

/* ── Modal ────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal__box {
    position: relative;
    z-index: 2;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.open .modal__box { transform: translateY(0); }

.modal__close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal__close:hover { color: var(--text); }

.modal__logo-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.modal__header { margin-bottom: 2rem; }

.modal__header h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.modal__header p { color: var(--muted); font-size: 0.9rem; }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form__group label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-transform: uppercase;
}

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

.form__group input,
.form__group select,
.form__group textarea {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: #555; }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--orange); }

.form__group select { cursor: pointer; appearance: none; }
.form__group select option { background: var(--bg-3); }
.form__group textarea { resize: vertical; }

.form__submit { width: 100%; justify-content: center; text-align: center; margin-top: 0.5rem; }

.modal__success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
}

.modal__success.show { display: flex; }

.modal__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(224, 114, 48, 0.1);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--orange);
}

.modal__success h3 {
    font-family: var(--font-head);
    font-size: 1.6rem;
}

.modal__success p { color: var(--muted); }

/* ── Journey ──────────────────────────────────────────────── */
.journey {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}

.journey__visual {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

/* Pause all SVG animations until section is scrolled into view */
.journey__visual svg * {
    animation-play-state: paused !important;
}
.journey__visual.is-visible svg * {
    animation-play-state: running !important;
}

@media (max-width: 768px) {
    .journey__visual { overflow-x: auto; }
    .journey__visual svg { min-width: 600px; }
}

/* ── Providers Carousel ───────────────────────────────────── */
.providers {
    padding: 6rem 0 0;
    border-top: 1px solid var(--border);
}

.providers .section-header {
    margin-bottom: 3rem;
}

.providers__carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

@keyframes providerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.providers__track {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: max-content;
    animation: providerScroll 32s linear infinite;
}

.providers__track:hover {
    animation-play-state: paused;
}

.provider-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: var(--bg-2);
    border: 1px solid #1a1a1a;
    border-radius: var(--radius);
    min-width: 140px;
    height: 68px;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.provider-tile img {
    display: block;
    max-height: 28px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    transition: filter var(--transition), opacity var(--transition);
}

/* Dark logos — invert to white so they read on dark bg */
.provider-tile--anz img,
.provider-tile--milford img,
.provider-tile--fisher img,
.provider-tile--koura img,
.provider-tile--pathfinder img {
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

/* White/light logos — reduce opacity for cohesion */
.provider-tile--booster img,
.provider-tile--generate img,
.provider-tile--consilium img,
.provider-tile--superlife img,
.provider-tile--investnow img {
    opacity: 0.6;
}

.provider-tile:hover {
    border-color: rgba(224, 114, 48, 0.4);
}

.provider-tile:hover img {
    filter: none !important;
    opacity: 1 !important;
}

/* ── Reviews ──────────────────────────────────────────────── */
.reviews {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
}

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

.review-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: border-color var(--transition);
}

.review-card:hover { border-color: var(--orange); }

.review-card__stars {
    color: var(--orange);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.review-card__body {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.review-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(224, 114, 48, 0.12);
    border: 1px solid rgba(224, 114, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
}

.review-card__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.review-card__meta {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

/* ── Animated Testimonials ────────────────────────────────── */
.ta-section {
    padding: 6rem 0;
    background: var(--bg-2);
}
.ta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ta-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ta-left h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.ta-subtitle {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
}
.ta-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-top: 0.5rem;
}
.ta-dot {
    height: 10px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 10px;
    background: rgba(255,255,255,0.15);
}
.ta-dot--active {
    width: 36px;
    background: var(--orange);
}
.ta-right {
    position: relative;
    min-height: 380px;
}
.ta-deco {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    background: rgba(224,114,48,0.05);
    pointer-events: none;
    z-index: 0;
}
.ta-deco--bl { bottom: -24px; left: -24px; }
.ta-deco--tr { top: -24px; right: -24px; }
.ta-card {
    position: absolute;
    inset: 0;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
    pointer-events: none;
}
.ta-card--active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
    pointer-events: auto;
}
.ta-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.ta-quote-wrap {
    position: relative;
    flex: 1;
}
.ta-quote-icon {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    color: var(--orange);
    opacity: 0.2;
}
.ta-body {
    position: relative;
    font-size: 1.05rem;
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text);
    padding-left: 0.5rem;
}
.ta-separator {
    height: 1px;
    background: var(--border);
    width: 100%;
}
.ta-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange);
    flex-shrink: 0;
}
.ta-name { font-weight: 600; font-size: 0.95rem; }
.ta-meta { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 768px) {
    .ta-grid { grid-template-columns: 1fr; }
    .ta-right { min-height: 440px; margin-top: 2rem; }
    .ta-deco { display: none; }
}

/* ── Reveal ───────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: 120px; }
    .hero__visual { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .hero__card { max-width: 280px; }
    .hero__card--sm { margin-left: 0; }
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .about__image { max-width: 360px; }
    .about__image-inner { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
    .nav__links, .nav > .btn { display: none; }
    .nav__hamburger { display: flex; }

    .services__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    /* providers carousel is full-width, no change needed at 768px */

    .trust-bar__divider { display: none; }
    .trust-bar__grid { gap: 1rem; }

    .process__grid--five {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
        flex-wrap: unset;
    }
    .process__grid--five .process__arrow { display: none; }
    .process__grid--five > :nth-child(1) { grid-column: 1 / 3; }
    .process__grid--five > :nth-child(3) { grid-column: 3 / 5; }
    .process__grid--five > :nth-child(5) { grid-column: 5 / 7; }
    .process__grid--five > :nth-child(7) { grid-column: 2 / 4; }
    .process__grid--five > :nth-child(9) { grid-column: 4 / 6; }

    .process__grid:not(.process__grid--five) { flex-direction: column; }
    .process__grid:not(.process__grid--five) .process__arrow { transform: rotate(90deg); padding: 0; }

    .footer__top { flex-direction: column; }
    .footer__bottom { flex-direction: column; }

    .hero__visual { display: none; }
}

@media (max-width: 600px) {
    .modal__box { padding: 2rem 1.5rem; }
    .form__row { grid-template-columns: 1fr; }
    /* providers carousel is full-width, no change needed at 600px */
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .section-header h2 { font-size: 1.8rem; }
}

/* ── Orange Shine Theme ───────────────────────────────────── */
:root {
    --shine: linear-gradient(135deg, #B85518 0%, #FF9A56 45%, #E07230 100%);
}

/* Orange text elements get the shine gradient */
.orange {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Labels (small uppercase section openers) */
.label {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process step numbers */
.process__num {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service card numbers */
.service-card__num {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About role badge */
.about__role {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Review stars */
.review-card__stars {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process arrows */
.process__arrow {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav hover underline */
.nav__links a::after {
    background: var(--shine);
}

/* Orange button gets the shine as background */
.btn--orange {
    background: var(--shine);
    border-color: transparent;
    color: #fff;
}
.btn--orange:hover {
    background: linear-gradient(135deg, #9E4812 0%, #E07230 45%, #C05E20 100%);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(224, 114, 48, 0.35);
}

/* Form focus glow matches shine */
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: #FF9A56;
    box-shadow: 0 0 0 2px rgba(255, 154, 86, 0.12);
}

/* Modal success icon */
.modal__success-icon {
    border-color: #FF9A56;
    background: rgba(255, 154, 86, 0.08);
    color: #FF9A56;
}

/* Trust bar accent numbers */
.trust-bar__num.orange {
    background: var(--shine);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
