/* ============================================================
   ARO — COMPLETE STYLESHEET v2
   Palette: Ivory #FAF9F6 | Navy #0F1728 | Gold #C5A059
   ============================================================ */

:root {
    --ivory: #FAF9F6;
    --ivory-dim: #F0EDE6;
    --navy: #0F1728;
    --navy-mid: #1B2B4B;
    --navy-light: #253555;
    --gold: #C5A059;
    --gold-hover: #D4AF6A;
    --gold-muted: rgba(197, 160, 89, 0.12);
    --text-dark: #1A1E2E;
    --text-mid: #4A5568;
    --text-light: rgba(250, 249, 246, 0.82);
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-md: 0 8px 32px rgba(15, 23, 40, 0.12);
    --shadow-lg: 0 24px 64px rgba(15, 23, 40, 0.16);
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   CONTAINERS & LAYOUT
   ============================================================ */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

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

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    margin-bottom: 3.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 2rem;
    border-radius: var(--r-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: 0 6px 24px rgba(197, 160, 89, 0.35);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(250, 249, 246, 0.08);
    color: var(--ivory);
    border-color: rgba(250, 249, 246, 0.28);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(250, 249, 246, 0.15);
    border-color: rgba(250, 249, 246, 0.55);
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    font-size: 0.88rem;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--ivory);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: background 0.4s var(--ease-in-out), box-shadow 0.4s var(--ease-in-out);
}

.navbar.at-top .logo,
.navbar.at-top .nav-link {
    color: var(--ivory);
}

.navbar.scrolled {
    background: rgba(15, 23, 40, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-link {
    color: var(--ivory);
}

.nav-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 74px;
    gap: 2rem;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-img {
    height: 30px;
    width: auto;
    display: block;
    /* The SVG is gold — visible on dark navbar */
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    gap: 2.4rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory);
    transition: color 0.25s;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-btn {
    margin-left: 1rem;
    padding: 0.55rem 1.4rem;
    font-size: 0.88rem;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ivory);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(15, 23, 40, 0.97);
    padding: 1.5rem 5%;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu .nav-link {
    font-size: 1.05rem;
}

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

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(10, 16, 32, 0.85) 0%,
            rgba(10, 16, 32, 0.55) 52%,
            rgba(10, 16, 32, 0.22) 100%),
        linear-gradient(to bottom,
            rgba(10, 16, 32, 0.3) 0%,
            rgba(10, 16, 32, 0.0) 35%,
            rgba(10, 16, 32, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 680px;
    margin-left: calc((100% - 1200px) / 2 + 30px);
    color: var(--ivory);
}

@media (max-width: 1280px) {
    .hero-content {
        margin-left: 5%;
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0;
    font-weight: 300;
    line-height: 1.75;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
}

/* Floating glass panels */
.hero-float {
    position: absolute;
    z-index: 10;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    padding: 1.2rem 1.4rem;
    color: var(--ivory);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    min-width: 180px;
}

.float-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.float-metric {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.float-metric.small {
    font-size: 1.5rem;
}

.float-sub {
    font-size: 0.78rem;
    color: rgba(250, 249, 246, 0.6);
}

.float-bar-row {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 45px;
}

.f-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(197, 160, 89, 0.4) 100%);
    border-radius: 3px 3px 0 0;
    min-height: 4px;
}

.float-nodes {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0.6rem 0;
}

.node {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.node.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.node-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.float-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(250, 249, 246, 0.7);
}

.dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.float-1 {
    right: 12%;
    top: 22%;
    animation: floatY 6s ease-in-out infinite;
}

.float-2 {
    right: 7%;
    top: 52%;
    min-width: 200px;
    animation: floatY 7s ease-in-out 1.2s infinite;
}

.float-3 {
    right: 18%;
    bottom: 14%;
    animation: floatY 5.5s ease-in-out 0.6s infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(250, 249, 246, 0.45);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.4s both;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, rgba(197, 160, 89, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ============================================================
   WHAT WE DO — EDITORIAL STRIP
   ============================================================ */

.what-band {
    background: var(--navy);
    padding: 2rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.what-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.what-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.what-divider {
    width: 40px;
    height: 1px;
    background: rgba(197, 160, 89, 0.4);
    flex-shrink: 0;
}

.what-text {
    font-size: 1rem;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================================
   SERVICES — EDITORIAL TWO-COLUMN
   ============================================================ */

.services-section {
    background: var(--ivory);
}

.services-editorial {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.services-left {
    position: sticky;
    top: 100px;
}

.services-left-sub {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 340px;
}

.services-right {
    display: flex;
    flex-direction: column;
}

.svc-item {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(15, 23, 40, 0.1);
    align-items: flex-start;
    transition: border-color 0.3s;
}

.svc-item:last-child {
    border-bottom: 1px solid rgba(15, 23, 40, 0.1);
}

.svc-item:hover {
    border-color: var(--gold);
}

.svc-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--gold);
    opacity: 0.45;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 4px;
    min-width: 52px;
    transition: opacity 0.3s;
}

.svc-item:hover .svc-num {
    opacity: 0.85;
}

.svc-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.svc-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.svc-tools {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ============================================================
   PROCESS — HORIZONTAL TIMELINE
   ============================================================ */

.process-section {
    background: var(--ivory-dim);
}

.process-timeline {
    position: relative;
    margin-top: 3.5rem;
}

.timeline-line {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--gold) 0%, rgba(197, 160, 89, 0.15) 100%);
    z-index: 0;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.tl-step {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ivory-dim);
    border: 2px solid var(--gold);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.tl-step:hover .tl-dot {
    background: var(--gold);
    transform: scale(1.2);
}

.tl-num {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.tl-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.tl-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================================
   WHY ARO — TWO COLUMN WITH IMAGE
   ============================================================ */

.why-section {
    background: var(--ivory);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}

.why-para {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.why-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(15, 23, 40, 0.08);
}

.pillar {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(15, 23, 40, 0.08);
}

.pillar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.pillar-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
}

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

.cta-section {
    background: var(--navy);
    padding: 100px 0;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cta-text .section-eyebrow.light {
    color: var(--gold);
}

.cta-text .section-h2.light {
    color: var(--ivory);
}

.cta-para {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.cta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(250, 249, 246, 0.7);
}

.check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

/* FORM */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    backdrop-filter: blur(6px);
}

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

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 249, 246, 0.55);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-sm);
    padding: 0.8rem 1rem;
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.25s, background 0.25s;
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 249, 246, 0.28);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
}

.form-error-msg {
    font-size: 0.78rem;
    color: #c0392b;
    margin-top: 0.25rem;
    display: none;
}

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

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #c0392b;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.35);
    text-align: center;
    margin-top: -0.5rem;
}

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

.footer {
    background: #080e1d;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3.5rem;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    color: var(--ivory);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(250, 249, 246, 0.4);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-contact-email {
    font-size: 0.85rem;
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(250, 249, 246, 0.35);
    margin-bottom: 0.35rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.6);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--ivory);
}

.footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.25);
}

/* ============================================================
   CLIENTS SECTION (TRUSTED BY)
   ============================================================ */

.clients-section {
    background: #080e1d;
    /* Deep navy matching the footer */
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.clients-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.75rem;
    opacity: 0.75;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.client-link {
    display: block;
    transition: transform 0.3s var(--ease-out);
}

.client-link:hover {
    transform: translateY(-2px);
}

.client-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.3);
    transition: filter 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.client-link:hover .client-logo-img {
    filter: brightness(0) invert(1) opacity(0.75);
}

.premium-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.25) 50%, transparent);
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
}

/* ============================================================
   EXAMPLES / USE CASES SECTION (Typographic Tabbed Style)
   ============================================================ */

.examples-section {
    background: var(--ivory);
}

.examples-interactive {
    margin-top: 4rem;
}

.examples-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(15, 23, 40, 0.06);
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.ex-tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.ex-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ex-tab-btn:hover {
    color: var(--navy);
}

.ex-tab-btn.active {
    color: var(--navy);
    font-weight: 600;
}

.ex-tab-btn.active::after {
    transform: scaleX(1);
}

.ex-tab-num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold);
}

.examples-container-box {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(15, 23, 40, 0.03);
    border-radius: var(--r-lg);
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 40, 0.01);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.ex-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ex-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.ex-panel-split {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 3rem;
}

.ex-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ex-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: 4px;
    width: fit-content;
}

.ex-badge.before {
    background: rgba(231, 76, 60, 0.05);
    color: #d63031;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.ex-badge.after {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.ex-text {
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.75;
}

.ex-time-tag {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ex-time-tag.before {
    color: #d63031;
}

.ex-time-tag.after {
    color: var(--gold);
}

.ex-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
}

.ex-arrow-svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    animation: exArrowPulse 2.5s infinite ease-in-out;
}

@keyframes exArrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

/* ============================================================
   FOOTER UPDATE STYLES
   ============================================================ */

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(250, 249, 246, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(250, 249, 246, 0.45);
    transition: all 0.25s var(--ease-out);
}

.social-icon-link:hover {
    color: var(--ivory);
    background: rgba(250, 249, 246, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-side-svc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-side {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.footer-privacy-link {
    color: rgba(250, 249, 246, 0.3);
    transition: color 0.2s;
    text-decoration: underline;
}

.footer-privacy-link:hover {
    color: var(--ivory);
}

/* ============================================================
   CAL.COM CUSTOM EMBED OVERRIDES
   ============================================================ */

cal-floating-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    display: block !important;
    transform: scale(0.95) !important;
    transform-origin: bottom right !important;
    margin-bottom: 5px !important;
    margin-right: 5px !important;
    z-index: 99999 !important;
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

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

.reveal-hero {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

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

.reveal-float {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

@media (max-width: 1024px) {
    .services-editorial {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-left {
        position: static;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-img {
        height: 380px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-steps {
        grid-template-columns: 1fr 1fr;
    }

    .hero-float {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 5%;
    }

    .ex-panel-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .ex-side {
        align-items: center;
    }

    .ex-arrow-container {
        transform: rotate(90deg);
    }

    .ex-arrow-svg {
        animation: exArrowPulseV 2.5s infinite ease-in-out;
    }
}

@keyframes exArrowPulseV {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@media (max-width: 768px) {

    .scroll-indicator {
        display: none !important;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn {
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .hero-h1 {
        font-size: 2.6rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .tl-dot {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        gap: 2rem;
    }

    .what-band-inner {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .what-divider {
        display: none;
    }

    .clients-grid {
        gap: 2.5rem;
    }

    .examples-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: stretch;
        border-bottom: none;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .ex-tab-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        border-left: 3px solid transparent;
        background: rgba(15, 23, 40, 0.02);
        border-radius: var(--r-sm);
        transition: all 0.2s ease;
    }

    .ex-tab-btn:hover {
        background: rgba(15, 23, 40, 0.04);
        color: var(--navy);
    }

    .ex-tab-btn.active {
        background: rgba(197, 160, 89, 0.08);
        border-left-color: var(--gold);
        color: var(--navy);
    }

    .ex-tab-btn::after {
        display: none !important; /* Hide horizontal underline on vertical stack */
    }

    /* Fix Cal.com floating button styling on mobile */
    cal-floating-button {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    cal-floating-button button {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        box-shadow: 0 4px 16px rgba(0, 105, 255, 0.35) !important;
    }

    cal-floating-button button div,
    cal-floating-button button span {
        display: none !important; /* Hide empty text/spaces */
    }

    cal-floating-button button svg {
        margin: 0 !important;
        width: 22px !important;
        height: 22px !important;
    }

    .examples-container-box {
        padding: 1.75rem 1.25rem;
        border-radius: var(--r-md);
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 2.1rem;
    }

    .contact-form {
        padding: 1.75rem 1.25rem;
    }

    .services-editorial {
        gap: 2rem;
    }
}