:root {
    color-scheme: dark;
    --bg: #0b0b0b;
    --surface: rgba(255,255,255,.05);
    --surface-2: rgba(255,255,255,.035);
    --surface-light: #f6f6f2;
    --panel: rgba(255,255,255,.05);
    --panel-strong: #121212;
    --border: rgba(255,255,255,.1);
    --text: rgba(255,255,255,.96);
    --muted: rgba(255,255,255,.72);
    --dim: rgba(255,255,255,.5);
    --accent: #ffd600;
    --font-body: Inter, system-ui, sans-serif;
    --font-display: "Space Grotesk", "Montserrat", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255,214,0,.15), transparent 18%),
        radial-gradient(circle at left, rgba(255,255,255,.04), transparent 24%),
        var(--bg);
}

.container { width: min(1220px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 6rem 0; position: relative; }

.eyebrow {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 700;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: -.03em;
    margin: 0;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.3rem); line-height: .95; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
p { margin: 0; }

.lead {
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.btn-primary, .btn-outline, .btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border-radius: 999px;
    padding: .95rem 1.3rem;
    font-weight: 700;
    transition: .22s ease;
    border: 1px solid transparent;
}

.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { color: var(--accent); border-color: var(--accent); }
.btn-dark { background: #0b0b0b; color: white; }
.btn-dark:hover { transform: translateY(-1px); }

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(11,11,11,.92);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.nav a { color: rgba(255,255,255,.8); font-size: .95rem; }
.nav a:hover { color: var(--accent); }
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.header-social {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.88);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}
.header-social:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.mobile-nav-toggle { display: none; }
.mobile-nav-panel[hidden] { display: none; }
.mobile-nav-toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .28rem;
}
.mobile-nav-toggle span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav-panel {
    display: block;
    border-top: 1px solid var(--border);
    background: rgba(11,11,11,.98);
}
.mobile-nav-links {
    display: grid;
    gap: .35rem;
    padding: .9rem 0 1.1rem;
}
.mobile-nav-links a {
    padding: .9rem 0;
    color: rgba(255,255,255,.86);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav-links a:last-child { border-bottom: 0; }

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
}
.hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1);
    opacity: 1;
    transition: transform .25s linear, opacity .25s linear;
    will-change: transform, opacity;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.7) 100%);
}
.hero-shell {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5rem;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    align-items: center;
}
.hero-copy {
    max-width: 42rem;
}
.hero-subheadline,
.hero-microcopy,
.hero-scroll-hint,
.portrait-wrap,
.yellow-bar,
[data-hero-ctas] {
    will-change: transform, opacity;
}
.hero-word {
    display: inline-block;
    margin-right: .3em;
    opacity: 0;
    transform: translateY(30px);
    transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .7s cubic-bezier(.16,1,.3,1);
}
.hero.is-animated .hero-word {
    opacity: 1;
    transform: translateY(0);
}
.yellow-bar {
    width: 14rem;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
    margin: 1.6rem 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .55s cubic-bezier(.16,1,.3,1) .3s;
}
.hero.is-animated .yellow-bar { transform: scaleX(1); }
.hero [data-hero-subheadline],
.hero [data-hero-ctas],
.hero-microcopy,
.hero-scroll-hint,
.portrait-wrap {
    opacity: 0;
}
.hero [data-hero-subheadline],
.hero [data-hero-ctas] {
    transform: translateY(20px);
    transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .55s ease;
}
.hero.is-animated [data-hero-subheadline],
.hero.is-animated [data-hero-ctas] {
    opacity: 1;
    transform: translateY(0);
}
.hero [data-hero-subheadline] { transition-delay: .45s; }
.hero [data-hero-ctas] { transition-delay: .55s; }
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: .5rem;
}
.hero-cta-row .btn-primary,
.hero-cta-row .btn-outline {
    gap: .55rem;
}
.hero-cta-row svg {
    width: 1.25rem;
    height: 1.25rem;
}
.hero-microcopy {
    position: absolute;
    left: 0;
    bottom: 6rem;
    max-width: 28rem;
    color: rgba(255,255,255,.62);
    transition: opacity .45s ease .75s;
}
.hero-microcopy-line {
    width: 4rem;
    height: 1px;
    margin-bottom: 1rem;
    background: rgba(255,255,255,.2);
}
.hero-microcopy p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: clamp(.95rem, 1.3vw, 1rem);
    line-height: 1.7;
}
.hero.is-animated .hero-microcopy { opacity: 1; }
.portrait-wrap {
    transform: translateX(80px) scale(.98);
    transition: transform .8s cubic-bezier(.16,1,.3,1) .3s, opacity .8s ease .3s;
}
.hero.is-animated .portrait-wrap {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.portrait-wrap img {
    margin-left: auto;
    max-height: 100vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.42);
    transition: opacity .45s ease .8s;
}
.hero-scroll-hint span {
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.hero-scroll-hint svg {
    width: 1.25rem;
    height: 1.25rem;
    animation: hero-bounce 1.6s ease-in-out infinite;
}
.hero.is-animated .hero-scroll-hint { opacity: 1; }

@keyframes hero-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.about-section {
    min-height: 100vh;
    padding: 5rem 0 0;
}
.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: calc(100vh - 5rem);
}
.about-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 16rem;
}
.about-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(11,11,11,.12) 42%, rgba(11,11,11,.5) 100%);
}
.about-accent-line {
    position: absolute;
    left: 50%;
    top: 25%;
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,.1);
    transform-origin: top;
}
.about-content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem clamp(1.25rem, 4vw, 4rem);
}
.about-copy-stack {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}
.about-credentials {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}
.about-credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: .85rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
    text-decoration: none;
}
.about-credential:hover {
    border-color: rgba(255,214,0,.4);
    background: rgba(255,255,255,.07);
    transform: translateY(-1px);
}
.about-credential:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.about-credential-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255,214,0,.1);
    color: var(--accent);
}
.about-credential-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.about-credential span {
    color: #fff;
    font-weight: 600;
}
.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.about-response-time {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
}

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

.card, .panel, .metric, .faq-item, .contact-card {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 1.5rem;
}

.card { overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,214,0,.35); }
.card-body { padding: 1.5rem; }
.image-card { overflow: hidden; border-radius: 1.6rem; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 0;
    flex: 0 0 auto;
}
.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}
.expertise-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    will-change: transform, opacity;
}
.expertise-card-media {
    position: relative;
    height: 14rem;
    overflow: hidden;
}
.expertise-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,11,11,1), rgba(11,11,11,.55), transparent);
}
.expertise-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    transform: scale(1);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.expertise-card:hover .expertise-card-media img {
    transform: scale(1.04);
}
.expertise-card-icon,
.service-format-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.expertise-card-icon {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    z-index: 1;
}
.expertise-card-icon svg,
.service-format-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
.expertise-card-title {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
}
.expertise-card-title h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1.1;
}
.expertise-card-body {
    display: grid;
    gap: 1.25rem;
    padding: 1.5rem;
}
.expertise-detail-box {
    border-radius: 1rem;
    padding: .95rem 1rem;
}
.expertise-detail-dark {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.2);
}
.expertise-detail-muted {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
}
.expertise-detail-accent {
    border: 1px solid rgba(255,214,0,.2);
    background: rgba(255,214,0,.07);
}
.expertise-detail-label {
    margin: 0 0 .5rem;
    color: var(--accent);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.expertise-detail-copy {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    line-height: 1.7;
}
.expertise-detail-copy-dim {
    color: rgba(255,255,255,.8);
}
.expertise-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
}
.services-formats-intro h3 {
    margin-bottom: 0;
}
.services-format-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}
.service-format-card {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.5rem;
    background: rgba(255,255,255,.04);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.service-format-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,214,0,.35);
    background: rgba(255,255,255,.05);
}
.service-format-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
}
.service-format-card h4 {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
}
.service-format-description {
    margin: 0;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
}
.service-format-features {
    display: grid;
    gap: .9rem;
}
.service-format-feature {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: rgba(255,255,255,.88);
}
.service-format-bullet {
    width: .65rem;
    height: .65rem;
    margin-top: .4rem;
    border-radius: 999px;
    background: var(--accent);
    flex: 0 0 auto;
}
.service-format-link {
    margin-top: auto;
}

.metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.metric { padding: 1.4rem; text-align: center; }
.metric strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.05;
}

.testimonials { background: var(--surface-light); color: #0b0b0b; }
.testimonials .eyebrow { color: rgba(11,11,11,.6); }
.testimonials .lead, .testimonials .muted, .testimonials p { color: rgba(11,11,11,.74); }
.testimonials-heading {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}
.testimonials-heading .lead {
    margin: 1rem auto 0;
    max-width: 34rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: white;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 1.4rem;
    padding: 1.6rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.testimonial-card-premium {
    padding: 1.6rem;
}
.testimonial-quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,214,0,.1);
    color: var(--accent);
}
.testimonial-quote-icon svg,
.testimonial-star svg {
    width: 1.25rem;
    height: 1.25rem;
}
.testimonial-rating {
    display: flex;
    gap: .25rem;
    margin-bottom: 1rem;
}
.testimonial-star {
    color: var(--accent);
    display: inline-flex;
}
.testimonial-quote {
    margin: 0 0 1.5rem;
    color: rgba(11,11,11,.8);
    font-size: 1.05rem;
    line-height: 1.75;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #0b0b0b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.testimonial-avatar span {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
}
.testimonial-name,
.testimonials .testimonial-name {
    margin: 0;
    color: #0b0b0b;
    font-weight: 600;
}
.testimonial-age,
.testimonials .testimonial-age {
    margin: 0;
    color: rgba(11,11,11,.6);
    font-size: .9rem;
}
.testimonials-cta {
    margin-top: 3rem;
    text-align: center;
}
.testimonials-cta-link {
    border-radius: 10px;
    padding-inline: 1.5rem;
}

.plans { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.plan { padding: 1.8rem; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--surface); position: relative; }
.plan.highlight { border-color: var(--accent); box-shadow: inset 0 4px 0 var(--accent); }
.tag {
    display: inline-block;
    margin-bottom: .8rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    font-size: .72rem;
    font-weight: 800;
}
.pricing-plan {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pricing-badge-wrap {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
}
.pricing-badge {
    margin-bottom: 0;
    padding: .35rem .85rem;
}
.pricing-price {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
    color: #fff;
}
.pricing-price span {
    margin-left: .45rem;
    color: var(--dim);
    font-size: .9rem;
    font-weight: 400;
    font-family: var(--font-body);
}
.pricing-description {
    margin-top: 1rem;
    font-size: 1rem;
}
.pricing-features {
    display: grid;
    gap: .8rem;
    margin-top: 1.35rem;
    margin-bottom: 1.75rem;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: rgba(255,255,255,.82);
    font-size: .92rem;
}
.pricing-check {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 800;
    flex: 0 0 auto;
}
.pricing-cta {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    margin-top: auto;
}
.tax-card {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    background: transparent;
}
.tax-card-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,214,0,.2);
    background: rgba(255,214,0,.1);
    transition: background-color .2s ease;
}
.tax-card-summary:hover {
    background: rgba(255,214,0,.05);
}
.tax-card-summary::-webkit-details-marker { display: none; }
.tax-card-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-weight: 600;
}
.tax-card-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.tax-card-icon svg { width: 100%; height: 100%; }
.tax-card-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255,255,255,.6);
    flex: 0 0 auto;
}
.tax-card-chevron svg { width: 100%; height: 100%; }
.tax-card-chevron-up { display: none; }
.tax-card[open] .tax-card-chevron-up { display: inline-flex; }
.tax-card[open] .tax-card-chevron-down { display: none; }
.tax-card-body {
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    background: rgba(255,255,255,.05);
}
.tax-card-example {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,214,0,.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.35rem; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.35rem 1.3rem; color: var(--muted); line-height: 1.7; }

.field { display: block; }
.field label { display: block; margin-bottom: .5rem; color: rgba(255,255,255,.82); font-size: .95rem; }
.field input, .field textarea {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: white;
    padding: .95rem 1rem;
    outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field-errors { margin-top: .4rem; color: #ff8d8d; font-size: .85rem; }
.flash-wrap { margin-bottom: 1rem; display: grid; gap: .8rem; }
.flash { padding: 1rem 1.1rem; border-radius: 1rem; font-weight: 600; }
.flash.success { background: rgba(111,255,143,.12); border: 1px solid rgba(111,255,143,.26); color: #baf8c2; }
.flash.error { background: rgba(255,107,107,.12); border: 1px solid rgba(255,107,107,.26); color: #ffc2c2; }
.contact-list { display: grid; gap: 1rem; }
.contact-card { display: block; padding: 1rem 1.1rem; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}
.contact-form-column h2 {
    color: #fff;
}
.contact-intro {
    margin: 1rem 0 2rem;
    max-width: 36rem;
}
.contact-form-shell {
    padding: 0;
}
.contact-form-fields {
    display: grid;
    gap: 1.25rem;
}
.contact-submit {
    width: 100%;
}
.contact-submit svg {
    width: 1.25rem;
    height: 1.25rem;
}
.contact-info-column {
    padding-top: 5rem;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: .95rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    transition: border-color .2s ease, background-color .2s ease;
}
.contact-info-card:hover {
    border-color: rgba(255,214,0,.5);
}
.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255,214,0,.1);
    color: var(--accent);
    transition: background-color .2s ease;
}
.contact-info-card:hover .contact-info-icon {
    background: rgba(255,214,0,.2);
}
.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.contact-info-label {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}
.contact-info-value {
    margin: 0;
    color: #fff;
    font-weight: 500;
}
.contact-socials {
    margin-top: 2.5rem;
}
.contact-socials-label {
    margin: 0 0 1rem;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
}
.contact-socials-row {
    display: flex;
    gap: .75rem;
}
.contact-social-link {
    width: 3rem;
    height: 3rem;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.7);
    transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.contact-social-link:hover {
    border-color: var(--accent);
    background: rgba(255,214,0,.1);
    color: var(--accent);
}
.contact-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}
.footer { padding: 2rem 0 3rem; border-top: 1px solid var(--border); color: rgba(255,255,255,.45); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; transition-delay: var(--reveal-delay, 0s); }
[data-reveal][data-anim="left"] { transform: translateX(-6vw); }
[data-reveal][data-anim="right"] { transform: translateX(6vw); }
[data-reveal][data-anim="up"] { transform: translateY(28px); }
[data-reveal][data-anim="scale-up"] { transform: translateY(40px) scale(.98); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.blog-hero {
    min-height: auto;
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border);
    background: none;
}

.stats-card, .cta-panel {
    border: 1px solid var(--border);
    background: var(--panel);
    border-radius: 2rem;
}

.stats-card { padding: 1.5rem; }
.grid-hero { display: grid; gap: 2rem; align-items: end; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); }
.pill-row { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 2.25rem; }
.pill {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .75rem 1rem;
    font-size: .95rem;
    color: rgba(255,255,255,.84);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.pill.active { border-color: var(--accent); color: var(--accent); }
.layout { padding: 3rem 0 5rem; }
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-media { position: relative; aspect-ratio: 1.4 / 1; overflow: hidden; background: #181818; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,11,.92), rgba(11,11,11,.12)); }
.card-cats { position: absolute; top: 1rem; left: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; z-index: 1; }
.meta { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; color: var(--dim); font-size: .82rem; }
.excerpt { margin-top: .85rem; color: var(--muted); line-height: 1.65; }
.readmore { margin-top: 1rem; color: var(--accent); font-weight: 700; display: inline-flex; gap: .45rem; align-items: center; }
.cta-panel { margin: 0 0 2rem; padding: 1.5rem; }
.pagination { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.page-btn {
    min-width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.78);
}
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; }
.article-wrap { padding: 3rem 0 5rem; }
.article-cover { margin-top: 2rem; overflow: hidden; border-radius: 2rem; border: 1px solid var(--border); }
.article-cover img { width: 100%; max-height: 32rem; object-fit: cover; }
.article-content {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    line-height: 1.8;
    color: rgba(255,255,255,.86);
}
.article-content h2, .article-content h3, .article-content h4 { margin: 2rem 0 1rem; color: #fff; }
.article-content p, .article-content ul, .article-content ol, .article-content blockquote { margin: 1rem 0; }
.article-content a { color: var(--accent); }
.article-content img { border-radius: 1rem; }
.article-video-block {
    margin: 2rem 0;
    display: grid;
    gap: .8rem;
}
.article-video-block video,
.article-video-embed {
    width: 100%;
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    box-shadow: 0 18px 40px rgba(0,0,0,.24);
}
.article-video-block video {
    display: block;
    aspect-ratio: 16 / 9;
}
.article-video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
}
.article-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.article-video-block figcaption {
    font-size: .95rem;
    color: rgba(255,255,255,.68);
}
.back-link { display: inline-flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.65); margin-bottom: 1.2rem; }
.back-link:hover { color: var(--accent); }
.empty { text-align: center; padding: 2rem; }
.footer-space { height: 1rem; }
.home-blog-heading {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}
.home-blog-heading .lead {
    margin: .9rem auto 0;
    max-width: 42rem;
}
.home-blog-categories {
    margin: 3rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
}
.home-blog-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--blog-pill-color, var(--accent)) 45%, rgba(255,255,255,.1));
    background: color-mix(in srgb, var(--blog-pill-color, var(--accent)) 12%, rgba(255,255,255,.02));
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.home-blog-pill:hover {
    color: var(--blog-pill-color, var(--accent));
    border-color: var(--blog-pill-color, var(--accent));
    transform: translateY(-1px);
}
.home-blog-featured {
    margin-top: 3rem;
}
.home-blog-featured-shell {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
    transition: border-color .3s ease;
}
.home-blog-featured-shell:hover {
    border-color: rgba(255,214,0,.3);
}
.home-blog-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-blog-featured-media {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
}
.home-blog-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(11,11,11,.12) 44%, rgba(11,11,11,.5) 100%);
}
.home-blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
}
.home-blog-featured-badge {
    align-self: flex-start;
    display: inline-flex;
    padding: .35rem .75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.home-blog-featured-content h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 1rem;
}
.home-blog-featured-content p {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.home-blog-featured-link,
.home-blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--accent);
    font-weight: 600;
}
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.home-blog-card {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    transition: border-color .25s ease, transform .25s ease;
}
.home-blog-card:hover {
    border-color: rgba(255,214,0,.3);
    transform: translateY(-3px);
}
.home-blog-card-media {
    position: relative;
    aspect-ratio: 1.15 / 1;
    overflow: hidden;
    background: #181818;
}
.home-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,11,11,.82), rgba(11,11,11,.08));
}
.home-blog-card-body {
    padding: 1.35rem;
}
.home-blog-card-category {
    display: inline-flex;
    padding: .3rem .65rem;
    border-radius: 999px;
    margin-bottom: .9rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.home-blog-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: .8rem;
}
.home-blog-card p {
    color: rgba(255,255,255,.68);
    line-height: 1.7;
    margin: 0 0 1rem;
}
.home-blog-cta {
    margin-top: 3rem;
    text-align: center;
}
.home-blog-empty {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.75rem;
    background: rgba(255,255,255,.05);
}
.home-blog-empty h3 {
    color: #fff;
    margin-bottom: .75rem;
}
.home-blog-empty p {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
}
.signal-shell {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    border-radius: 2rem;
    padding: 2rem;
}
.accent-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.timeline { display: grid; gap: 1.5rem; }
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
    border-left: 2px solid rgba(255,255,255,.1);
}
.timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}
.timeline-dot {
    position: absolute;
    left: -.9rem;
    top: 0;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .72rem;
}
.result-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.result-shot {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}
.result-shot img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
}
.result-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent 55%);
}
.result-caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
}
.faq-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; }
.floating-stack {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 45;
    display: grid;
    gap: .8rem;
}
.floating-pill {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.32);
}
.floating-pill.whatsapp { background: #25D366; color: #fff; }
.floating-pill.phone { background: var(--accent); color: #000; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .btn-primary:hover, .btn-dark:hover, .card:hover { transform: none; }
    .expertise-card-media img { transition: none; }
    .expertise-card:hover .expertise-card-media img { transform: none; }
}

@media (max-width: 1080px) {
    .hero-grid, .grid-2, .grid-3, .grid-4, .plans, .metrics, .grid-hero, .cards, .result-gallery, .faq-layout, .services-expertise-grid, .services-format-grid, .about-grid, .testimonials-grid, .home-blog-featured-grid, .home-blog-grid, .contact-grid { grid-template-columns: 1fr; }
    .portrait-wrap { display: none; }
    .nav { display: none; }
    .header-inner > a:first-child { order: 2; margin-left: auto; }
    .mobile-nav-toggle { order: 1; }
    .header-actions { order: 3; }
    .header-actions .btn-primary { display: none; }
    .mobile-nav-toggle { display: inline-flex; }
    .floating-stack { right: 1rem; bottom: 1rem; }
    .tax-card-body { padding: 1rem; }
    .expertise-card-title h3 { font-size: 1.7rem; }
    .about-section { min-height: auto; padding-top: 4rem; }
    .about-grid { min-height: auto; }
    .about-image-panel { height: 16rem; }
    .about-image-overlay { background: linear-gradient(180deg, transparent 0%, rgba(11,11,11,.15) 40%, rgba(11,11,11,.48) 100%); }
    .about-accent-line { display: none; }
    .about-content-panel { padding: 3rem 1rem 0; }
    .home-blog-featured-media { height: 18rem; min-height: 0; }
    .home-blog-featured-overlay { background: linear-gradient(to top, rgba(11,11,11,.92), transparent); }
    .home-blog-featured-content { padding: 1.5rem; }
    .contact-info-column { padding-top: 0; }
    .hero {
        min-height: 100vh;
        height: auto;
    }
    .hero-shell {
        min-height: 100vh;
        justify-content: center;
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
    .hero-microcopy {
        position: static;
        margin-top: 2rem;
    }
}
