﻿/* ===============================
   CSS Reset / Base
================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
    margin: 0;
}

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

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

ul,
ol {
    padding-left: 1.2rem;
}

button,
input,
textarea {
    font: inherit;
}

/* ===============================
   Variables & Theme
================================= */
:root {
    --color-primary: #ff6f00;
    --color-secondary: #1a237e;
    --color-accent: #ffd700;
    --color-text-dark: #2c3e50;
    --color-text-light: #6c757d;
    --color-bg: #fff9f0;
    --color-success: #28a745;
    --color-white: #ffffff;

    --font-heading: "Playfair Display", serif;
    --font-body: "Poppins", sans-serif;
    --font-size-body: 16px;
    --font-size-lead: clamp(1.02rem, 0.97rem + 0.24vw, 1.18rem);
    --font-size-small: 14px;
    --line-height-body: 1.75;

    --container-width: 1200px;
    --section-padding: 60px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 20px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 18px 40px rgba(44, 62, 80, 0.12);
    --transition: 0.3s ease;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    letter-spacing: 0.01em;
    color: var(--color-text-dark);
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 111, 0, 0.12), transparent 28%),
        var(--color-bg);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--color-secondary);
}

h1 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

small {
    font-size: var(--font-size-small);
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
}

.section {
    padding: var(--section-padding) 0;
}

.section--light {
    background: rgba(255, 255, 255, 0.7);
}

.section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.section-heading p {
    max-width: 700px;
    margin: 12px auto 0;
    font-size: var(--font-size-lead);
    color: var(--color-text-light);
}

/* ===============================
   SEO FAQ Accordion
================================= */
.seo-faq {
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 215, 0, 0.16), transparent 34%),
        radial-gradient(circle at 10% 86%, rgba(26, 35, 126, 0.12), transparent 36%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 240, 0.88));
}

.seo-faq__heading {
    margin-bottom: 26px;
}

.seo-faq__badge {
    margin-bottom: 8px;
    border: 1px solid rgba(255, 111, 0, 0.28);
    background: linear-gradient(140deg, rgba(255, 111, 0, 0.14), rgba(255, 215, 0, 0.2));
}

.seo-faq__list {
    display: grid;
    gap: 12px;
}

.seo-faq__item {
    border-radius: 14px;
    border: 1px solid rgba(26, 35, 126, 0.16);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(252, 245, 236, 0.92));
    box-shadow: 0 10px 24px rgba(26, 35, 126, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.seo-faq__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 111, 0, 0.32);
    box-shadow: 0 14px 28px rgba(26, 35, 126, 0.12);
}

.seo-faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--color-secondary);
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.5;
    padding: 14px 48px 14px 16px;
    position: relative;
}

.seo-faq__question::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1a237e, #3f51b5);
    box-shadow: 0 6px 12px rgba(26, 35, 126, 0.24);
    transition: transform var(--transition), background var(--transition);
}

.seo-faq__item.is-open .seo-faq__question::after {
    content: "-";
    background: linear-gradient(135deg, #ff6f00, #ff9800);
}

.seo-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease;
}

.seo-faq__answer p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--color-text-dark);
}

/* ===============================
   Buttons
================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(26, 35, 126, 0.25);
    color: var(--color-secondary);
}

.btn--whatsapp {
    background: var(--color-success);
    color: var(--color-white);
}

.btn--text {
    padding: 0;
    min-height: auto;
    color: var(--color-primary);
}

.btn--text:hover {
    transform: none;
    box-shadow: none;
    color: var(--color-secondary);
}

.btn--large {
    min-height: 52px;
    padding: 14px 28px;
}

/* ===============================
   Header / Navigation
================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(26, 35, 126, 0.08);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header--scrolled {
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-logo__symbol {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 111, 0, 0.35);
    background: #fff;
}

.site-logo__text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.05rem + 0.48vw, 1.5rem);
    font-weight: 700;
    color: var(--color-secondary);
    white-space: nowrap;
}

.site-nav {
    margin-left: auto;
}

.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.site-nav__list a {
    font-weight: 500;
    font-size: 0.96rem;
    color: var(--color-text-dark);
    position: relative;
}

.site-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--color-primary);
    transition: transform var(--transition);
}

.site-nav__list a:hover::after {
    transform: scaleX(1);
}

.site-header__cta {
    white-space: nowrap;
    padding-inline: 18px;
}

.site-header__toggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(26, 35, 126, 0.2);
    background: var(--color-white);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.site-header__toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-secondary);
}

.mobile-drawer {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100dvh - 98px);
    overflow: auto;
    background: var(--color-white);
    transform: translateY(-10px) scale(0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    box-shadow: 0 20px 38px rgba(26, 35, 126, 0.2);
    padding: 14px 14px 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 1100;
    border-radius: 14px;
    border: 1px solid rgba(26, 35, 126, 0.15);
}

.mobile-drawer--open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-drawer__close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(26, 35, 126, 0.25);
    background: rgba(255, 255, 255, 0.82);
    margin-left: auto;
}

.mobile-drawer__list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.mobile-drawer__list a {
    display: block;
    padding: 11px 12px;
    border-radius: 10px;
    background: rgba(255, 111, 0, 0.08);
    font-weight: 500;
}

.mobile-drawer__list a.is-active {
    background: rgba(26, 35, 126, 0.1);
    border-color: rgba(26, 35, 126, 0.2);
    color: var(--color-secondary);
}

.mobile-drawer__cta {
    width: 100%;
}

.mobile-drawer__overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 11, 39, 0.34);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1050;
}

.mobile-drawer__overlay--visible {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

/* ===============================
   Hero / Page Hero
================================= */
.hero-home {
    position: relative;
    padding: 118px 0 96px;
    background-image:
        linear-gradient(128deg, rgba(12, 19, 82, 0.93), rgba(26, 35, 126, 0.62)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1920&q=80");
    background-size: auto, var(--pattern-size), cover;
    background-repeat: no-repeat, repeat, no-repeat;
    background-position: center, center, center;
    color: var(--color-white);
    min-height: clamp(620px, 86vh, 820px);
}

.hero-home__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: center;
}

.hero-home__content {
    max-width: 760px;
    display: grid;
    gap: 16px;
}

.hero-home__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.42);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.hero-home__eyebrow i {
    font-size: 12px;
}

.hero-home h1 {
    color: var(--color-white);
    margin-bottom: 0;
    font-size: clamp(2.08rem, 2.48vw + 1.16rem, 3.74rem);
    line-height: 1.08;
    max-width: 17.5ch;
    text-wrap: balance;
}

.hero-home__subtitle {
    font-size: clamp(1.01rem, 0.92rem + 0.31vw, 1.22rem);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 56ch;
}

.hero-home__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-home__ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
    color: var(--color-white);
}

.hero-home__ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
}

.hero-home__proof {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.hero-home__proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-home__proof i {
    color: #67e38f;
    font-size: 14px;
}

.hero-home__intent {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-home__intent-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-weight: 600;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.hero-home__intent-item i {
    color: var(--color-accent);
    font-size: 14px;
}

.hero-home__intent-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.58);
    background: rgba(255, 255, 255, 0.16);
}

.hero-home__micro {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-home__visual {
    justify-self: end;
    width: 100%;
    max-width: 520px;
    display: grid;
    justify-items: center;
    padding-bottom: 4px;
}

.hero-wheel {
    position: relative;
    width: min(100%, 500px);
    margin-inline: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: visible;
    transform-style: preserve-3d;
    transition: transform 0.22s ease-out;
    will-change: transform;
}

.hero-wheel::before,
.hero-wheel::after {
    content: "";
    position: absolute;
    inset: 3%;
    border-radius: 50%;
    pointer-events: none;
}

.hero-wheel::before {
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, 0.07),
        0 0 56px rgba(255, 215, 0, 0.16);
}

.hero-wheel::after {
    inset: 14%;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    opacity: 0.62;
}

.hero-wheel__ring {
    position: absolute;
    inset: 11%;
    border-radius: 50%;
    border: 1px solid transparent;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)) padding-box,
        conic-gradient(from 0deg, rgba(255, 215, 0, 0.5), rgba(255, 255, 255, 0.16), rgba(255, 111, 0, 0.54), rgba(255, 255, 255, 0.16), rgba(255, 215, 0, 0.5)) border-box;
    box-shadow:
        inset 0 0 0 18px rgba(255, 255, 255, 0.03),
        0 0 58px rgba(255, 215, 0, 0.21);
    animation: heroRingPulse 8s ease-in-out infinite, heroRingRotate 48s linear infinite;
}

.hero-wheel__center {
    position: absolute;
    inset: 30.5%;
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 4px;
    padding: 10px 12px;
    text-align: center;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 215, 0, 0.44), rgba(255, 215, 0, 0)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 0 24px rgba(255, 255, 255, 0.12),
        0 20px 38px rgba(8, 10, 46, 0.42);
}

.hero-wheel__symbol {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--color-accent);
    line-height: 1;
}

.hero-wheel__center--dynamic {
    inset: 32%;
    gap: 0;
    place-items: center;
    padding: 0;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 233, 164, 0.46), rgba(255, 233, 164, 0)),
        linear-gradient(145deg, rgba(255, 213, 88, 0.4), rgba(255, 144, 52, 0.28));
    border: 1px solid rgba(255, 231, 158, 0.48);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.16),
        0 18px 34px rgba(8, 10, 46, 0.4),
        0 0 30px rgba(255, 193, 64, 0.3);
}

.hero-wheel__center--dynamic::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(255, 242, 190, 0.5);
    box-shadow: inset 0 0 18px rgba(255, 221, 119, 0.22);
}

.hero-wheel__symbol--dynamic {
    font-size: clamp(2.1rem, 3.7vw, 3.1rem);
    color: #ffd739;
    text-shadow: 0 0 16px rgba(255, 214, 70, 0.45), 0 0 28px rgba(255, 157, 58, 0.26);
    transform: translateY(-1px);
}

.hero-wheel__center--dynamic[data-center-theme="fire"] .hero-wheel__symbol--dynamic {
    color: #ffd55e;
    text-shadow: 0 0 16px rgba(255, 208, 92, 0.5), 0 0 26px rgba(255, 135, 66, 0.28);
}

.hero-wheel__center--dynamic[data-center-theme="earth"] .hero-wheel__symbol--dynamic {
    color: #ffe17c;
    text-shadow: 0 0 16px rgba(255, 226, 135, 0.48), 0 0 26px rgba(167, 203, 98, 0.3);
}

.hero-wheel__center--dynamic[data-center-theme="air"] .hero-wheel__symbol--dynamic {
    color: #b8ecff;
    text-shadow: 0 0 16px rgba(150, 229, 255, 0.48), 0 0 26px rgba(142, 166, 255, 0.3);
}

.hero-wheel__center--dynamic[data-center-theme="water"] .hero-wheel__symbol--dynamic {
    color: #c9d1ff;
    text-shadow: 0 0 16px rgba(169, 198, 255, 0.48), 0 0 26px rgba(186, 125, 255, 0.3);
}

.hero-wheel__center strong {
    display: block;
    font-size: clamp(0.84rem, 1.36vw, 1.24rem);
    letter-spacing: 0.01em;
    line-height: 1.08;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-inline: auto;
}

.hero-wheel__center small {
    display: block;
    font-size: 0.74rem;
    line-height: 1.2;
    max-width: 13ch;
    margin-inline: auto;
    text-wrap: balance;
    color: rgba(255, 255, 255, 0.86);
}

.hero-wheel__signs {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 0;
    animation: zodiacOrbit 96s linear infinite;
}

.hero-wheel__signs li {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(calc(var(--i) * 30deg)) translate(0, -205px) rotate(calc(var(--i) * -30deg));
    --sign-glow: rgba(255, 215, 0, 0.25);
}

.hero-wheel__signs a {
    --z-hover-shift: 0px;
    --z-hover-scale: 1;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 4px 5px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #d4b1ff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.06)),
        linear-gradient(160deg, rgba(28, 40, 124, 0.9), rgba(85, 91, 164, 0.58));
    box-shadow:
        inset 0 0 16px rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(6, 10, 45, 0.44),
        0 0 28px var(--sign-glow);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
    text-decoration: none;
    animation: zodiacCounterOrbit 96s linear infinite;
    transform: translateY(var(--z-hover-shift)) scale(var(--z-hover-scale));
}

.hero-wheel__signs em {
    display: block;
    font-style: normal;
    font-size: 0.53rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: none;
    color: rgba(255, 255, 255, 0.92);
    transition: color var(--transition);
}

.hero-wheel__signs li:nth-child(7) em,
.hero-wheel__signs li:nth-child(9) em,
.hero-wheel__signs li:nth-child(10) em,
.hero-wheel__signs li:nth-child(11) em {
    font-size: 0.49rem;
}

.hero-wheel__signs a:hover,
.hero-wheel__signs a:focus-visible {
    --z-hover-shift: -4px;
    --z-hover-scale: 1.08;
    border-color: rgba(255, 215, 0, 0.7);
    color: #f5ddff;
    background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.1)),
        linear-gradient(160deg, rgba(38, 52, 142, 0.95), rgba(119, 88, 195, 0.72));
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.2),
        0 14px 30px rgba(7, 11, 46, 0.5),
        0 0 38px rgba(255, 215, 0, 0.34);
}

.hero-wheel__signs a:hover em,
.hero-wheel__signs a:focus-visible em {
    color: var(--color-white);
}

.hero-wheel__signs a:focus-visible {
    outline: 2px solid rgba(255, 215, 0, 0.64);
    outline-offset: 2px;
}

.hero-wheel__signs li:nth-child(1) { --sign-glow: rgba(255, 121, 79, 0.28); }
.hero-wheel__signs li:nth-child(2) { --sign-glow: rgba(255, 181, 95, 0.27); }
.hero-wheel__signs li:nth-child(3) { --sign-glow: rgba(142, 187, 255, 0.29); }
.hero-wheel__signs li:nth-child(4) { --sign-glow: rgba(120, 219, 255, 0.28); }
.hero-wheel__signs li:nth-child(5) { --sign-glow: rgba(255, 210, 104, 0.32); }
.hero-wheel__signs li:nth-child(6) { --sign-glow: rgba(162, 255, 194, 0.3); }
.hero-wheel__signs li:nth-child(7) { --sign-glow: rgba(255, 184, 222, 0.3); }
.hero-wheel__signs li:nth-child(8) { --sign-glow: rgba(255, 146, 201, 0.3); }
.hero-wheel__signs li:nth-child(9) { --sign-glow: rgba(201, 166, 255, 0.3); }
.hero-wheel__signs li:nth-child(10) { --sign-glow: rgba(130, 186, 255, 0.28); }
.hero-wheel__signs li:nth-child(11) { --sign-glow: rgba(120, 233, 255, 0.3); }
.hero-wheel__signs li:nth-child(12) { --sign-glow: rgba(176, 162, 255, 0.3); }

.hero-home__visual-caption {
    margin-top: clamp(42px, 4.5vw, 58px);
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 38ch;
    padding-inline: 10px;
}

@keyframes heroRingPulse {
    0%,
    100% {
        box-shadow:
            inset 0 0 0 16px rgba(255, 255, 255, 0.03),
            0 0 44px rgba(255, 215, 0, 0.24);
    }
    50% {
        box-shadow:
            inset 0 0 0 20px rgba(255, 255, 255, 0.045),
            0 0 62px rgba(255, 215, 0, 0.34);
    }
}

@keyframes heroRingRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zodiacOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zodiacCounterOrbit {
    from {
        transform: rotate(0deg) translateY(var(--z-hover-shift)) scale(var(--z-hover-scale));
    }
    to {
        transform: rotate(-360deg) translateY(var(--z-hover-shift)) scale(var(--z-hover-scale));
    }
}

.page-hero {
    padding: 110px 0 70px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-image:
        linear-gradient(140deg, rgba(26, 35, 126, 0.86), rgba(255, 111, 0, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?auto=format&fit=crop&w=1920&q=80");
    background-size: auto, var(--pattern-size), cover;
    background-repeat: no-repeat, repeat, no-repeat;
    background-position: center, center, center;
    color: var(--color-white);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.page-hero::before {
    width: 360px;
    height: 360px;
    right: -140px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.36), rgba(255, 215, 0, 0));
    opacity: 0.62;
}

.page-hero::after {
    inset: 0;
    opacity: 0.26;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34) 0 1.2px, transparent 1.2px),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
        radial-gradient(circle at 74% 72%, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px);
    background-size: 220px 220px, 280px 280px, 340px 340px;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero--about {
    background-image:
        linear-gradient(140deg, rgba(26, 35, 126, 0.86), rgba(255, 111, 0, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--about::before {
    background: radial-gradient(circle, rgba(255, 185, 96, 0.35), rgba(255, 185, 96, 0));
}

.page-hero--services {
    background-image:
        linear-gradient(140deg, rgba(20, 33, 118, 0.88), rgba(217, 116, 42, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--services::before {
    background: radial-gradient(circle, rgba(255, 134, 56, 0.42), rgba(255, 134, 56, 0));
}

.page-hero--blog {
    background-image:
        linear-gradient(140deg, rgba(26, 35, 126, 0.86), rgba(255, 111, 0, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--blog::before {
    background: radial-gradient(circle, rgba(104, 216, 255, 0.4), rgba(104, 216, 255, 0));
}

.page-hero--contact {
    background-image:
        linear-gradient(140deg, rgba(26, 35, 126, 0.86), rgba(255, 111, 0, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--contact::before {
    background: radial-gradient(circle, rgba(115, 255, 191, 0.38), rgba(115, 255, 191, 0));
}

.page-hero--videos {
    background-image:
        linear-gradient(140deg, rgba(18, 27, 120, 0.86), rgba(232, 119, 45, 0.72)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--videos::before {
    background: radial-gradient(circle, rgba(255, 184, 120, 0.42), rgba(255, 184, 120, 0));
}

.page-hero--payment {
    background-image:
        linear-gradient(140deg, rgba(16, 34, 112, 0.9), rgba(20, 141, 95, 0.68)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1920&q=80");
}

.page-hero--payment::before {
    background: radial-gradient(circle, rgba(115, 255, 188, 0.42), rgba(115, 255, 188, 0));
}

.page-hero--legal {
    background-image:
        linear-gradient(140deg, rgba(26, 35, 126, 0.86), rgba(255, 111, 0, 0.74)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=1920&q=80");
}

.page-hero h1 {
    color: var(--color-white);
    margin: 8px 0 10px;
}

.page-hero__eyebrow {
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero__grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.page-hero__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.page-hero__grid.page-hero__grid--feature {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 34px;
}

.page-hero__content {
    display: grid;
    gap: 14px;
    max-width: 690px;
}

.page-hero__content .page-hero__actions {
    margin-top: 2px;
}

.page-hero__chips {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.34);
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.84rem;
    font-weight: 500;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.page-hero__chips span:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.54);
    background: rgba(255, 255, 255, 0.18);
}

.page-hero__chips i {
    color: var(--color-accent);
    font-size: 0.78rem;
}

.page-hero__visual {
    --hero-accent: rgba(255, 215, 0, 0.44);
    --hero-core-tint: rgba(255, 215, 0, 0.3);
    position: relative;
    max-width: 480px;
    width: 100%;
    justify-self: end;
    display: grid;
    place-items: center;
    padding: 12px;
    transform-style: preserve-3d;
}

.page-hero__visual--about {
    --hero-accent: rgba(255, 196, 128, 0.5);
    --hero-core-tint: rgba(255, 188, 109, 0.32);
}

.page-hero__visual--services {
    --hero-accent: rgba(255, 111, 0, 0.52);
    --hero-core-tint: rgba(255, 125, 56, 0.32);
}

.page-hero__visual--blog {
    --hero-accent: rgba(117, 212, 255, 0.5);
    --hero-core-tint: rgba(120, 209, 255, 0.32);
}

.page-hero__visual--videos {
    --hero-accent: rgba(255, 170, 95, 0.52);
    --hero-core-tint: rgba(255, 178, 114, 0.3);
}

.page-hero__visual--contact {
    --hero-accent: rgba(130, 255, 196, 0.52);
    --hero-core-tint: rgba(129, 255, 200, 0.3);
}

.page-hero__visual--payment {
    --hero-accent: rgba(125, 255, 185, 0.56);
    --hero-core-tint: rgba(138, 255, 192, 0.32);
}

.page-hero__chakra {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 44%, rgba(4, 11, 42, 0.95), rgba(5, 10, 34, 0.8) 48%, rgba(5, 9, 28, 0.62) 100%),
        radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 0 48px rgba(255, 255, 255, 0.06),
        0 22px 48px rgba(2, 9, 35, 0.42),
        0 0 52px rgba(255, 215, 0, 0.2);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.page-hero__chakra::before,
.page-hero__chakra::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero__chakra::before {
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow:
        inset 0 0 24px rgba(255, 255, 255, 0.08),
        0 0 38px rgba(255, 215, 0, 0.2);
}

.page-hero__chakra::after {
    inset: 16%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    opacity: 0.74;
    animation: pageChakraRotateReverse 48s linear infinite;
}

.page-hero__chakra-axis {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72%;
    height: 1px;
    transform-origin: center;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    opacity: 0.46;
    z-index: 2;
}

.page-hero__chakra-axis--a {
    transform: translate(-50%, -50%) rotate(0deg);
}

.page-hero__chakra-axis--b {
    transform: translate(-50%, -50%) rotate(60deg);
}

.page-hero__chakra-axis--c {
    transform: translate(-50%, -50%) rotate(120deg);
}

.page-hero__chakra-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    z-index: 2;
}

.page-hero__chakra-ring--outer {
    inset: 6%;
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 36px rgba(255, 215, 0, 0.24);
    animation: pageChakraRotate 56s linear infinite;
}

.page-hero__chakra-ring--middle {
    inset: 20%;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.25);
    animation: pageChakraRotateReverse 40s linear infinite;
}

.page-hero__chakra-ring--inner {
    inset: 30%;
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 0 24px rgba(255, 215, 0, 0.16),
        0 0 20px rgba(255, 215, 0, 0.16);
    animation: pageChakraPulse 7s ease-in-out infinite;
}

.page-hero__chakra-nodes {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    inset: 8%;
    z-index: 3;
    animation: pageChakraRotate 62s linear infinite;
}

.page-hero__chakra-nodes li {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-172px);
    background: rgba(255, 255, 255, 0.86);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, 0.06),
        0 0 16px rgba(255, 215, 0, 0.24);
    animation: pageNodePulse 5.4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.page-hero__chakra-nodes li:nth-child(3n + 1) {
    background: rgba(255, 220, 140, 0.9);
}

.page-hero__chakra-nodes li:nth-child(3n + 2) {
    background: rgba(178, 232, 255, 0.88);
}

.page-hero__chakra-nodes li:nth-child(3n + 3) {
    background: rgba(186, 255, 219, 0.86);
}

.page-hero__chakra-core {
    position: absolute;
    inset: 34%;
    z-index: 4;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 3px;
    background:
        radial-gradient(circle at 35% 24%, var(--hero-core-tint), rgba(255, 255, 255, 0)),
        linear-gradient(155deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 0 0 16px rgba(255, 255, 255, 0.14),
        0 16px 30px rgba(6, 10, 37, 0.44);
    animation: pageCoreBreath 6.8s ease-in-out infinite;
}

.page-hero__chakra-symbol {
    display: block;
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    line-height: 1;
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", var(--font-heading), sans-serif;
    color: var(--color-accent);
}

.page-hero__chakra-core strong {
    font-family: var(--font-heading);
    font-size: clamp(0.88rem, 1vw, 1.04rem);
    font-weight: 700;
    line-height: 1.18;
    color: rgba(255, 255, 255, 0.98);
}

.page-hero__chakra-core small {
    font-size: 0.73rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero__chakra-nodes li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(13, 20, 88, 0.9);
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

/* About: soft lotus-zodiac chakra */
.page-hero__visual--about .page-hero__chakra {
    background:
        radial-gradient(circle at 50% 46%, rgba(42, 26, 76, 0.9), rgba(22, 14, 40, 0.9) 54%, rgba(12, 8, 26, 0.76) 100%),
        radial-gradient(circle at 28% 22%, rgba(255, 193, 122, 0.22), rgba(255, 193, 122, 0));
}

.page-hero__visual--about .page-hero__chakra-ring--outer {
    border-style: solid;
    border-color: rgba(255, 204, 142, 0.48);
}

.page-hero__visual--about .page-hero__chakra-ring--middle {
    border-style: dotted;
    border-color: rgba(255, 221, 166, 0.54);
}

.page-hero__visual--about .page-hero__chakra-nodes li {
    border-radius: 45% 55% 50% 50%;
    background: linear-gradient(160deg, rgba(255, 230, 189, 0.96), rgba(255, 182, 120, 0.9));
}

.page-hero__visual--about .page-hero__chakra-nodes li::before {
    opacity: 0.96;
}

.page-hero__visual--about .page-hero__chakra-nodes li:nth-child(4n + 1)::before { content: "\2648"; }
.page-hero__visual--about .page-hero__chakra-nodes li:nth-child(4n + 2)::before { content: "\264B"; }
.page-hero__visual--about .page-hero__chakra-nodes li:nth-child(4n + 3)::before { content: "\264E"; }
.page-hero__visual--about .page-hero__chakra-nodes li:nth-child(4n + 4)::before { content: "\2651"; }

/* Services: yantra-grid orbital */
.page-hero__visual--services .page-hero__chakra {
    background:
        linear-gradient(145deg, rgba(34, 18, 67, 0.9), rgba(12, 10, 36, 0.92)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 14px);
}

.page-hero__visual--services .page-hero__chakra-axis {
    opacity: 0.26;
}

.page-hero__visual--services .page-hero__chakra-ring--outer,
.page-hero__visual--services .page-hero__chakra-ring--middle,
.page-hero__visual--services .page-hero__chakra-ring--inner {
    border-radius: 22%;
}

.page-hero__visual--services .page-hero__chakra-ring--outer {
    transform: rotate(8deg);
    border-color: rgba(255, 164, 90, 0.44);
}

.page-hero__visual--services .page-hero__chakra-ring--middle {
    transform: rotate(-18deg);
    border-style: solid;
    border-color: rgba(255, 212, 157, 0.36);
}

.page-hero__visual--services .page-hero__chakra-nodes li {
    border-radius: 2px;
    background: linear-gradient(150deg, rgba(255, 229, 191, 0.96), rgba(255, 144, 82, 0.9));
}

.page-hero__visual--services .page-hero__chakra-nodes li::before {
    opacity: 0.95;
    font-size: 0.55rem;
}

.page-hero__visual--services .page-hero__chakra-nodes li:nth-child(3n + 1)::before { content: "\2609"; }
.page-hero__visual--services .page-hero__chakra-nodes li:nth-child(3n + 2)::before { content: "\263F"; }
.page-hero__visual--services .page-hero__chakra-nodes li:nth-child(3n + 3)::before { content: "\2643"; }

/* Blog: constellation manuscript */
.page-hero__visual--blog .page-hero__chakra {
    background:
        radial-gradient(circle at 52% 42%, rgba(24, 33, 94, 0.9), rgba(8, 15, 52, 0.92) 56%, rgba(5, 12, 34, 0.76) 100%),
        radial-gradient(circle at 18% 26%, rgba(148, 224, 255, 0.2), rgba(148, 224, 255, 0));
}

.page-hero__visual--blog .page-hero__chakra::after {
    border-style: dotted;
}

.page-hero__visual--blog .page-hero__chakra-axis {
    opacity: 0.34;
}

.page-hero__visual--blog .page-hero__chakra-nodes li {
    background: rgba(180, 234, 255, 0.9);
    box-shadow:
        0 0 0 4px rgba(156, 217, 255, 0.08),
        0 0 20px rgba(133, 210, 255, 0.4);
}

.page-hero__visual--blog .page-hero__chakra-nodes li::before {
    opacity: 1;
    color: rgba(11, 25, 68, 0.92);
}

.page-hero__visual--blog .page-hero__chakra-nodes li:nth-child(3n + 1)::before { content: "\2726"; }
.page-hero__visual--blog .page-hero__chakra-nodes li:nth-child(3n + 2)::before { content: "\2736"; }
.page-hero__visual--blog .page-hero__chakra-nodes li:nth-child(3n + 3)::before { content: "\2727"; }

/* Videos: eclipse-orbit play mandala */
.page-hero__visual--videos .page-hero__chakra {
    background:
        radial-gradient(circle at 50% 48%, rgba(52, 32, 82, 0.92), rgba(20, 16, 50, 0.9) 48%, rgba(10, 8, 26, 0.78) 100%),
        conic-gradient(from 0deg, rgba(255, 172, 82, 0.16), rgba(255, 95, 42, 0.12), rgba(142, 123, 255, 0.12), rgba(255, 172, 82, 0.16));
}

.page-hero__visual--videos .page-hero__chakra-ring--outer {
    border-width: 2px;
    border-color: rgba(255, 173, 111, 0.48);
}

.page-hero__visual--videos .page-hero__chakra-ring--middle {
    border-style: solid;
    border-color: rgba(255, 198, 143, 0.3);
}

.page-hero__visual--videos .page-hero__chakra-nodes li {
    background: linear-gradient(155deg, rgba(255, 227, 182, 0.94), rgba(255, 158, 88, 0.92));
}

.page-hero__visual--videos .page-hero__chakra-nodes li::before {
    opacity: 0.95;
    font-size: 0.56rem;
}

.page-hero__visual--videos .page-hero__chakra-nodes li:nth-child(4n + 1)::before { content: "\25B6"; }
.page-hero__visual--videos .page-hero__chakra-nodes li:nth-child(4n + 2)::before { content: "\2604"; }
.page-hero__visual--videos .page-hero__chakra-nodes li:nth-child(4n + 3)::before { content: "\2736"; }
.page-hero__visual--videos .page-hero__chakra-nodes li:nth-child(4n + 4)::before { content: "\25C9"; }

/* Contact: moon-compass aura */
.page-hero__visual--contact .page-hero__chakra {
    background:
        radial-gradient(circle at 48% 46%, rgba(12, 42, 56, 0.92), rgba(8, 26, 39, 0.92) 52%, rgba(6, 16, 24, 0.78) 100%),
        radial-gradient(circle at 78% 26%, rgba(156, 255, 215, 0.24), rgba(156, 255, 215, 0));
}

.page-hero__visual--contact .page-hero__chakra-axis {
    background: linear-gradient(90deg, transparent, rgba(164, 255, 221, 0.48), transparent);
}

.page-hero__visual--contact .page-hero__chakra-ring--outer {
    border-color: rgba(162, 255, 220, 0.42);
}

.page-hero__visual--contact .page-hero__chakra-ring--middle {
    border-style: dotted;
    border-color: rgba(176, 255, 230, 0.4);
}

.page-hero__visual--contact .page-hero__chakra-nodes li {
    background: linear-gradient(150deg, rgba(220, 255, 242, 0.95), rgba(134, 248, 204, 0.9));
}

.page-hero__visual--contact .page-hero__chakra-nodes li::before {
    opacity: 0.95;
    color: rgba(7, 49, 42, 0.9);
}

.page-hero__visual--contact .page-hero__chakra-nodes li:nth-child(3n + 1)::before { content: "\263D"; }
.page-hero__visual--contact .page-hero__chakra-nodes li:nth-child(3n + 2)::before { content: "\263E"; }
.page-hero__visual--contact .page-hero__chakra-nodes li:nth-child(3n + 3)::before { content: "\2726"; }

/* Payment: golden coin yantra */
.page-hero__visual--payment .page-hero__chakra {
    background:
        radial-gradient(circle at 50% 44%, rgba(46, 30, 16, 0.9), rgba(24, 16, 8, 0.9) 54%, rgba(13, 10, 5, 0.82) 100%),
        radial-gradient(circle at 68% 24%, rgba(255, 216, 134, 0.22), rgba(255, 216, 134, 0));
}

.page-hero__visual--payment .page-hero__chakra-ring--outer {
    border-width: 2px;
    border-style: double;
    border-color: rgba(255, 212, 122, 0.58);
}

.page-hero__visual--payment .page-hero__chakra-ring--middle {
    border-style: solid;
    border-color: rgba(255, 234, 178, 0.4);
}

.page-hero__visual--payment .page-hero__chakra-ring--inner {
    border-color: rgba(255, 226, 132, 0.65);
    box-shadow:
        inset 0 0 26px rgba(255, 204, 94, 0.28),
        0 0 22px rgba(255, 190, 72, 0.22);
}

.page-hero__visual--payment .page-hero__chakra-nodes li {
    background: linear-gradient(150deg, rgba(255, 242, 209, 0.95), rgba(255, 205, 108, 0.92));
}

.page-hero__visual--payment .page-hero__chakra-nodes li::before {
    content: "\20B9";
    opacity: 0.95;
    color: rgba(70, 42, 8, 0.92);
    font-size: 0.57rem;
}

.page-hero__visual--payment .page-hero__chakra-symbol {
    color: #ffd56b;
}

/* Unified zodiac icon set for all internal-page chakras */
.page-hero__chakra-nodes li::before {
    opacity: 1;
    font-size: clamp(0.6rem, 0.64rem + 0.1vw, 0.78rem);
    color: rgba(19, 26, 92, 0.94);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.22);
}

.page-hero__chakra-nodes li:nth-child(1)::before { content: "\1F40F"; }
.page-hero__chakra-nodes li:nth-child(2)::before { content: "\1F402"; }
.page-hero__chakra-nodes li:nth-child(3)::before { content: "\1F46F"; }
.page-hero__chakra-nodes li:nth-child(4)::before { content: "\1F980"; }
.page-hero__chakra-nodes li:nth-child(5)::before { content: "\1F981"; }
.page-hero__chakra-nodes li:nth-child(6)::before { content: "\1F469"; }
.page-hero__chakra-nodes li:nth-child(7)::before { content: "\2696"; }
.page-hero__chakra-nodes li:nth-child(8)::before { content: "\1F982"; }
.page-hero__chakra-nodes li:nth-child(9)::before { content: "\1F3F9"; }
.page-hero__chakra-nodes li:nth-child(10)::before { content: "\1F410"; }
.page-hero__chakra-nodes li:nth-child(11)::before { content: "\1F3FA"; }
.page-hero__chakra-nodes li:nth-child(12)::before { content: "\1F41F"; }

.page-hero__visual:hover .page-hero__chakra {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 0 50px rgba(255, 255, 255, 0.07),
        0 24px 52px rgba(2, 9, 35, 0.46),
        0 0 58px rgba(255, 215, 0, 0.26);
}

@keyframes pageChakraRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pageChakraRotateReverse {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes pageChakraPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes pageNodePulse {
    0%,
    100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        box-shadow:
            0 0 0 5px rgba(255, 255, 255, 0.08),
            0 0 20px rgba(255, 215, 0, 0.34);
    }
}

@keyframes pageCoreBreath {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero__chakra::after,
    .page-hero__chakra-ring,
    .page-hero__chakra-nodes,
    .page-hero__chakra-nodes li,
    .page-hero__chakra-core {
        animation: none;
    }
}

body[data-page="blog"] .page-hero--blog {
    background-image:
        linear-gradient(140deg, rgba(16, 31, 110, 0.9), rgba(186, 117, 44, 0.72)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=1920&q=80");
}

body[data-page="contact"] .page-hero--contact {
    background-image:
        linear-gradient(140deg, rgba(17, 40, 126, 0.88), rgba(24, 138, 119, 0.7)),
        var(--pattern-sacred),
        url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1920&q=80");
}

/* ===============================
   About Page
================================= */
body[data-page="about"] .page-hero {
    position: relative;
    overflow: hidden;
}

body[data-page="about"] .page-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -110px;
    top: -130px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.28), rgba(255, 215, 0, 0));
}

.about-hero__content {
    display: grid;
    gap: 14px;
}

.about-hero__content h1 {
    max-width: 18ch;
    text-wrap: balance;
}

.about-hero__proof {
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.about-hero__proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-hero__proof i {
    color: #7cf3a0;
    font-size: 13px;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-story__grid {
    display: grid;
    gap: 24px;
    align-items: start;
}

.about-story__content,
.about-story__panel {
    border-radius: var(--radius-lg);
    background: linear-gradient(var(--surface-glass), var(--surface-glass)) padding-box,
        linear-gradient(140deg, rgba(255, 111, 0, 0.24), rgba(26, 35, 126, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    padding: clamp(20px, 2.4vw, 30px);
}

.about-story__content h2 {
    margin-bottom: 10px;
}

.about-story__content p {
    color: var(--color-text-light);
}

.about-story__content p + p {
    margin-top: 12px;
}

.about-story__panel h3 {
    margin-bottom: 12px;
}

.about-story__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.about-story__checklist li {
    display: flex;
    gap: 10px;
    line-height: 1.55;
    color: var(--color-text-dark);
}

.about-story__checklist i {
    color: var(--color-primary);
    margin-top: 5px;
}

.about-story__panel-meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(26, 35, 126, 0.2);
    display: grid;
    gap: 8px;
}

.about-story__panel-meta p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 500;
}

.about-story__panel-meta i {
    color: var(--color-primary);
}

.about-story__panel .btn {
    margin-top: 18px;
}

.about-journey__grid {
    display: grid;
    gap: 18px;
}

.about-journey__item {
    position: relative;
    border-radius: 16px;
    padding: 22px;
    background: linear-gradient(var(--surface-glass), var(--surface-glass)) padding-box,
        linear-gradient(140deg, rgba(255, 111, 0, 0.24), rgba(26, 35, 126, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.about-journey__item::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.about-journey__phase {
    width: fit-content;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--color-secondary);
    border: 1px solid rgba(26, 35, 126, 0.2);
    background: rgba(26, 35, 126, 0.08);
    border-radius: 999px;
    padding: 6px 10px;
}

.about-journey__item p {
    color: var(--color-text-light);
}

.about-purpose__grid {
    display: grid;
    gap: 24px;
    align-items: start;
}

.about-purpose__content,
.about-purpose__prep {
    border-radius: var(--radius-lg);
    background: linear-gradient(var(--surface-solid), var(--surface-solid)) padding-box,
        linear-gradient(140deg, rgba(255, 111, 0, 0.24), rgba(26, 35, 126, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    padding: clamp(20px, 2.4vw, 30px);
}

.about-purpose__content p + p {
    margin-top: 10px;
}

.about-purpose__content .btn {
    margin-top: 18px;
}

.about-purpose__prep-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.about-purpose__prep-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 126, 0.14);
    background: rgba(255, 255, 255, 0.86);
    font-weight: 500;
}

.about-purpose__prep-list i {
    color: var(--color-primary);
    width: 16px;
}

.about-purpose__prep-note {
    margin-top: 12px;
    color: var(--color-text-light);
}

.about-location .services-location__card h3 {
    margin-top: 4px;
}

/* ===============================
   Grid / Cards
================================= */
.card-grid {
    display: grid;
    gap: 30px;
}

.about-brief__grid {
    display: grid;
    gap: clamp(24px, 3.5vw, 52px);
    align-items: center;
}

.about-brief__image-wrap {
    position: relative;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
    border-radius: calc(var(--radius-lg) + 2px);
    padding: 10px;
    background: linear-gradient(145deg, rgba(255, 111, 0, 0.32), rgba(255, 215, 0, 0.2), rgba(26, 35, 126, 0.18));
    box-shadow: 0 20px 46px rgba(26, 35, 126, 0.14);
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-brief__image-wrap::before {
    content: "";
    position: absolute;
    inset: -24%;
    pointer-events: none;
    background: conic-gradient(from 90deg, rgba(255, 215, 0, 0.14), rgba(51, 90, 255, 0.18), rgba(255, 111, 0, 0.14), rgba(255, 215, 0, 0.14));
    filter: blur(16px);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity var(--transition), transform var(--transition);
}

.about-brief__image-wrap::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -32px;
    bottom: -26px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.34), rgba(255, 215, 0, 0));
}

.about-brief__image {
    border-radius: calc(var(--radius-lg) - 6px);
    box-shadow: 0 16px 30px rgba(26, 35, 126, 0.2);
    width: 100%;
    object-fit: contain;
    object-position: center center;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at 50% 40%, rgba(255, 241, 194, 0.88), rgba(255, 248, 227, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.62);
    transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
}

.about-brief__image-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-white);
    background: rgba(26, 35, 126, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 0.84rem;
    font-weight: 600;
    backdrop-filter: blur(3px);
}

.about-brief__image-badge i {
    color: var(--color-accent);
    font-size: 12px;
}

.about-brief__image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 52px rgba(15, 22, 90, 0.24);
}

.about-brief__image-wrap:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-brief__image-wrap:hover .about-brief__image {
    transform: scale(1.035) rotate(-0.8deg);
    filter: saturate(1.08) contrast(1.05);
    box-shadow: 0 22px 42px rgba(10, 17, 84, 0.28);
}

.about-brief__image-wrap:hover .about-brief__image-badge {
    transform: translateY(-2px);
}

.about-brief__content {
    position: relative;
    z-index: 1;
    padding: clamp(20px, 2.1vw, 30px);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 35, 126, 0.11);
    box-shadow: var(--shadow-sm);
}

.about-brief__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.16), rgba(255, 215, 0, 0.16));
    border: 1px solid rgba(255, 111, 0, 0.26);
    color: #915203;
    font-size: 0.83rem;
    font-weight: 600;
    margin: 0;
}

.about-brief__eyebrow i {
    color: var(--color-secondary);
    font-size: 11px;
}

.about-brief__content h2 {
    margin-top: 12px;
    font-size: clamp(2rem, 1.7rem + 0.9vw, 2.7rem);
    line-height: 1.12;
}

.about-brief__lead {
    margin-top: 14px;
    font-size: clamp(1rem, 0.95rem + 0.24vw, 1.1rem);
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.74;
}

.about-brief__highlights {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-brief__highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.16);
    background: linear-gradient(130deg, rgba(26, 35, 126, 0.1), rgba(255, 111, 0, 0.08));
    color: #32445f;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-brief__highlights i {
    color: var(--color-primary);
    font-size: 0.84rem;
}

.about-brief__content > p:not(.about-brief__eyebrow) {
    margin-top: 11px;
    color: #5e6f84;
    max-width: 63ch;
}

.about-brief__actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-brief__actions .btn {
    min-width: 168px;
}

.service-card,
.feature-card,
.info-card,
.blog-card,
.service-detail-card,
.video-card,
.contact-form-card,
.contact-info-card {
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1px solid rgba(26, 35, 126, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.feature-card:hover,
.info-card:hover,
.blog-card:hover,
.service-detail-card:hover,
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card,
.feature-card,
.info-card {
    padding: 24px;
}

.service-card__icon,
.feature-card__icon,
.info-card__icon,
.service-detail-card__icon {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.service-card__price {
    font-weight: 700;
    color: var(--color-secondary);
    margin: 8px 0 10px;
}

.service-card p,
.feature-card p,
.info-card p {
    color: var(--color-text-light);
}

.service-card .btn {
    margin-top: 18px;
}

.service-detail-list {
    display: grid;
    gap: 24px;
}

.service-detail-card {
    padding: 24px;
}

.service-detail-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.service-detail-card__price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.service-detail-card h3 {
    margin-top: 12px;
}

.service-detail-card ul {
    margin: 10px 0 14px;
}

.service-detail-card .btn {
    margin-top: 8px;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.services-catalog {
    display: grid;
    gap: 30px;
}

.services-category {
    border-radius: var(--radius-md);
    background: linear-gradient(var(--surface-glass), var(--surface-glass)) padding-box,
        linear-gradient(135deg, rgba(255, 111, 0, 0.22), rgba(26, 35, 126, 0.2)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.services-category__head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.services-category__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.18), rgba(255, 215, 0, 0.2));
    border: 1px solid rgba(255, 111, 0, 0.26);
    font-size: 20px;
}

.services-category__head h2 {
    margin-bottom: 6px;
}

.services-category__head p {
    color: var(--color-text-light);
}

.services-category__grid {
    display: grid;
    gap: 16px;
}

.service-item-card {
    border-radius: 14px;
    border: 1px solid rgba(26, 35, 126, 0.14);
    background: rgba(255, 255, 255, 0.9);
    padding: 18px;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(26, 35, 126, 0.12);
    border-color: rgba(255, 111, 0, 0.25);
}

.service-item-card h3 {
    margin-bottom: 6px;
    font-size: clamp(1.16rem, 1.04rem + 0.3vw, 1.36rem);
}

.service-item-card p {
    color: var(--color-text-light);
    margin-bottom: 14px;
    font-size: 0.97rem;
    line-height: 1.62;
}

.services-location__card {
    display: grid;
    gap: 22px;
    border-radius: var(--radius-lg);
    background: linear-gradient(var(--surface-glass), var(--surface-glass)) padding-box,
        linear-gradient(140deg, rgba(255, 111, 0, 0.22), rgba(26, 35, 126, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
    padding: 24px;
}

.services-location__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.2);
    background: rgba(26, 35, 126, 0.06);
    color: var(--color-secondary);
    font-size: 13px;
    font-weight: 600;
}

.services-location__content p {
    color: var(--color-text-light);
}

.services-location__meta {
    margin-top: 14px;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.services-location__meta li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.services-location__meta i {
    color: var(--color-primary);
    width: 18px;
    margin-top: 4px;
}

.services-location__actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-location__map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(26, 35, 126, 0.14);
    min-height: 290px;
}

.services-location__map iframe {
    width: 100%;
    min-height: 290px;
    border: 0;
}

/* ===============================
   Services Creative Refresh
================================= */
.services-catalog .container {
    display: grid;
    gap: 14px;
}

.services-category {
    --cat-accent: var(--color-primary);
    --cat-soft: rgba(255, 111, 0, 0.2);
    --cat-shadow: rgba(26, 35, 126, 0.12);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(26, 35, 126, 0.14);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 246, 0.94)),
        radial-gradient(circle at 100% 0%, var(--cat-soft), transparent 34%);
    box-shadow: 0 12px 30px var(--cat-shadow);
}

.services-category::before,
.services-category::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.services-category::before {
    inset: 0;
    background-image: var(--pattern-sacred);
    background-size: 150px 150px;
    opacity: 0.035;
}

.services-category::after {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cat-soft), rgba(255, 255, 255, 0));
}

.services-category > * {
    position: relative;
    z-index: 1;
}

.services-category--core,
.services-category--muhurat,
.services-category--career,
.services-category--relationship,
.services-category--health,
.services-category--vedic,
.services-category--annual {
    --cat-accent: var(--color-primary);
    --cat-soft: rgba(255, 111, 0, 0.2);
    --cat-shadow: rgba(26, 35, 126, 0.12);
}

.services-category__head {
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(26, 35, 126, 0.2);
}

.services-category__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 23px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(145deg, var(--cat-accent), var(--color-secondary));
    box-shadow:
        0 10px 18px rgba(26, 35, 126, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.services-category__head h2 {
    margin-bottom: 4px;
    font-size: clamp(1.58rem, 1.34rem + 0.45vw, 1.95rem);
    letter-spacing: 0.01em;
}

.services-category__head p {
    color: #5a6f82;
    font-weight: 500;
}

.services-category__grid {
    gap: 18px;
}

.services-catalog .service-item-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 20px 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(26, 35, 126, 0.13);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.93)),
        radial-gradient(circle at top right, var(--cat-soft), rgba(255, 255, 255, 0));
    box-shadow: 0 10px 22px rgba(26, 35, 126, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.services-catalog .service-item-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--cat-accent), rgba(255, 255, 255, 0));
}

.services-catalog .service-item-card::after {
    content: "\2726";
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 13px;
    color: var(--cat-accent);
    opacity: 0.6;
}

.services-catalog .service-item-card:hover {
    transform: translateY(-4px);
    border-color: var(--cat-accent);
    box-shadow: 0 16px 32px rgba(26, 35, 126, 0.14);
}

.services-catalog .service-item-card h3 {
    margin-bottom: 8px;
    padding-right: 20px;
    font-size: clamp(1.12rem, 1.05rem + 0.26vw, 1.28rem);
    color: #1e2c7d;
    line-height: 1.35;
}

.services-catalog .service-item-card h3::before {
    content: "\2609";
    color: var(--cat-accent);
    margin-right: 8px;
    font-size: 0.8em;
    vertical-align: baseline;
}

.services-catalog .service-item-card p {
    margin-bottom: 14px;
    color: #516477;
    font-size: 0.95rem;
    line-height: 1.64;
}

.services-catalog .service-item-card .btn {
    width: 100%;
    margin-top: auto;
    min-height: 42px;
    border-radius: 12px;
    font-size: 0.93rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: none;
}

.services-catalog .service-item-card .btn.btn--secondary {
    border: 1px solid transparent;
    background: linear-gradient(145deg, var(--cat-accent), var(--color-secondary));
}

.services-catalog .service-item-card .btn.btn--secondary:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
}

.services-location__card {
    border-radius: 22px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.95)),
        radial-gradient(circle at 88% 12%, rgba(255, 111, 0, 0.15), rgba(255, 255, 255, 0));
    box-shadow: 0 16px 34px rgba(26, 35, 126, 0.12);
}

.services-location__content h2 {
    margin-bottom: 8px;
}

.services-location__actions .btn {
    min-width: 182px;
}

.services-location__map {
    border-radius: 16px;
    border: 1px solid rgba(26, 35, 126, 0.15);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.two-column-content {
    display: grid;
    gap: 28px;
}

.two-column-content p + p {
    margin-top: 10px;
}

.read-more {
    max-width: 900px;
}

.read-more__content {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.read-more__content--collapsed {
    max-height: 240px;
}

.read-more__toggle {
    margin-top: 16px;
}

/* ===============================
   Testimonials
================================= */
.testimonials__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: -2px 0 20px;
}

.testimonials__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.16);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.08);
}

.testimonials__trust i {
    color: var(--color-primary);
}

.testimonials__carousel {
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 2px;
}

.testimonials__track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card {
    position: relative;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.13), rgba(255, 215, 0, 0));
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 35, 126, 0.13);
    box-shadow: 0 12px 30px rgba(26, 35, 126, 0.1);
    padding: 28px 30px 24px;
    flex: 0 0 calc((100% - 40px) / 3);
    min-height: 282px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, rgba(255, 111, 0, 0.92), rgba(255, 215, 0, 0.9), rgba(26, 35, 126, 0.9));
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(26, 35, 126, 0.15);
    border-color: rgba(26, 35, 126, 0.24);
}

.testimonial-card__stars {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #f6b203;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(26, 35, 126, 0.16);
}

.testimonial-card__stars i {
    font-size: 15px;
    filter: drop-shadow(0 2px 4px rgba(246, 178, 3, 0.28));
}

.testimonial-card__stars::after {
    content: "Verified Client";
    margin-left: auto;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: linear-gradient(140deg, rgba(26, 35, 126, 0.1), rgba(26, 35, 126, 0.05));
    border: 1px solid rgba(26, 35, 126, 0.2);
    border-radius: 999px;
    padding: 6px 10px;
}

.testimonial-card p {
    color: var(--color-text-light);
}

.testimonial-card h3 {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: clamp(1.68rem, 1.35rem + 0.48vw, 2rem);
    line-height: 1.2;
    color: var(--color-secondary);
}

.testimonial-card__quote {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.66;
    color: #42576b;
}

.testimonial-card__quote::before {
    content: "\201C";
    color: rgba(26, 35, 126, 0.34);
    font-size: 1.7em;
    line-height: 0;
    margin-right: 3px;
}

.testimonial-card__meta {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #566778;
    border-top: 1px dashed rgba(26, 35, 126, 0.18);
    padding-top: 12px;
}

.testimonials__footer {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-top: 16px;
}

.testimonials__counter {
    margin: 0;
    font-size: 15px;
    color: #5b6b7a;
    font-weight: 600;
}

.testimonials__controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.testimonials__controls .btn {
    width: 58px;
    height: 52px;
    min-width: 58px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.26);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
    color: var(--color-secondary);
    box-shadow: 0 8px 18px rgba(26, 35, 126, 0.08);
}

.testimonials__controls .btn:hover {
    border-color: rgba(26, 35, 126, 0.45);
    background: rgba(255, 255, 255, 0.95);
}

.testimonials__controls .btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.testimonials__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: min(360px, 100%);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.34);
    background: rgba(26, 35, 126, 0.16);
    cursor: pointer;
    transition: width var(--transition), background var(--transition), border-color var(--transition);
}

.testimonials__dot.is-active {
    width: 30px;
    border-color: rgba(26, 35, 126, 0.9);
    background: var(--color-secondary);
}

/* ===============================
   Blog
================================= */
.blog-card {
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.blog-card__content {
    padding: 20px;
}

.blog-card__content h2,
.blog-card__content h3 {
    margin: 8px 0;
}

.blog-card__content p {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.blog-card.is-hidden {
    display: none;
}

.badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
    background: rgba(26, 35, 126, 0.12);
    border-radius: 999px;
    padding: 4px 10px;
}

.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.blog-filter .btn.is-active {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.blog-post__hero {
    position: relative;
}

.blog-post__hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.blog-post__hero-content {
    margin-top: 22px;
}

.blog-post__meta-dot {
    margin: 0 6px;
    color: rgba(26, 35, 126, 0.56);
}

.blog-post__layout {
    display: grid;
    gap: 24px;
}

.blog-post__toc {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 35, 126, 0.1);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.blog-post__toc nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.blog-post__toc nav a {
    color: var(--color-secondary);
}

.blog-post__content-wrap {
    display: grid;
    gap: 20px;
}

.blog-post__content {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 35, 126, 0.08);
    padding: 24px;
}

.blog-post__content h2 {
    margin-top: 18px;
}

.blog-post__content h3 {
    margin-top: 12px;
    color: var(--color-text-dark);
}

.blog-post__content p + p {
    margin-top: 10px;
}

.blog-post__whatsapp-note {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    background: rgba(40, 167, 69, 0.09);
}

.blog-post__whatsapp-note a {
    color: #1f8b39;
    font-weight: 600;
}

.blog-post__cta {
    background: linear-gradient(120deg, rgba(26, 35, 126, 0.96), rgba(255, 111, 0, 0.9));
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 22px;
}

.blog-post__cta h2,
.blog-post__cta p {
    color: var(--color-white);
}

.blog-post__cta .btn {
    margin-top: 14px;
}

/* ===============================
   Payment / CTA / Steps
================================= */
.payment-section__grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.payment-section__content p {
    margin-top: 10px;
}

.payment-section__upi {
    color: var(--color-secondary);
}

.payment-section__actions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-section__image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-inline: auto;
}

.steps-list {
    margin: 12px 0;
}

.contact-cta__box {
    text-align: center;
    background: linear-gradient(130deg, rgba(26, 35, 126, 0.94), rgba(255, 111, 0, 0.88));
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.contact-cta__box h2,
.contact-cta__box p,
.contact-cta__phone a {
    color: var(--color-white);
}

.contact-cta__box .btn {
    margin: 14px 0 10px;
}

/* ===============================
   Contact Page
================================= */
.contact-layout {
    display: grid;
    gap: 30px;
}

.contact-form-card,
.contact-info-card {
    padding: 24px;
}

.contact-form {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid rgba(26, 35, 126, 0.2);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.85);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.form-error {
    color: #c62828;
    min-height: 18px;
}

.contact-info-card__list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.contact-info-card__list i {
    color: var(--color-primary);
    width: 20px;
}

.contact-info-card__map {
    margin: 14px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(26, 35, 126, 0.12);
}

.contact-info-card__map iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
}

.contact-info-card__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.contact-info-card__socials a,
.site-footer__socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: var(--color-secondary);
    transition: transform var(--transition), background var(--transition);
}

.contact-info-card__socials a:hover,
.site-footer__socials a:hover {
    transform: translateY(-2px);
    background: var(--color-primary);
}

/* ===============================
   Videos
================================= */
.video-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.videos-showcase {
    display: grid;
    gap: 24px;
}

.videos-showcase__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 16px;
    border: 1px solid rgba(26, 35, 126, 0.12);
    background:
        linear-gradient(140deg, rgba(26, 35, 126, 0.1), rgba(255, 111, 0, 0.08)),
        linear-gradient(var(--surface-glass), var(--surface-glass));
    box-shadow: 0 10px 24px rgba(26, 35, 126, 0.1);
}

.videos-showcase__meta p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 600;
}

.videos-showcase__meta i {
    color: var(--color-primary);
}

.video-card {
    overflow: hidden;
}

.video-card--local {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(26, 35, 126, 0.16);
    background:
        linear-gradient(154deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 242, 0.9)),
        radial-gradient(circle at 100% 0%, rgba(255, 215, 0, 0.14), transparent 40%);
    box-shadow: 0 14px 32px rgba(26, 35, 126, 0.12);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.video-card--local:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 111, 0, 0.24);
    box-shadow: 0 20px 38px rgba(26, 35, 126, 0.16);
}

.video-card--local::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.video-card--local .video-card__content {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.video-card__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2px;
}

.video-card__thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-card__content {
    padding: 22px 22px 20px;
}

.video-card__content p {
    margin-top: 8px;
    color: var(--color-text-light);
}

.video-card__embed {
    margin-top: 6px;
    aspect-ratio: 9 / 16;
    width: min(100%, 340px);
    margin-inline: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(26, 35, 126, 0.14);
    background: #020617;
    box-shadow: 0 14px 28px rgba(5, 9, 28, 0.2);
}

.video-card__embed iframe,
.video-card__embed video {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
}

.video-card__player {
    display: block;
    aspect-ratio: 9 / 16;
    width: 100%;
    background: #020617;
}

.video-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
    width: 100%;
}

.video-card__actions .btn {
    flex: 1 1 auto;
    min-height: 46px;
}

body[data-page="videos"] .video-card__head .badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.42px;
    font-weight: 700;
    border-color: rgba(26, 35, 126, 0.18);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.16), rgba(255, 215, 0, 0.18));
}

/* ===============================
   Footer
================================= */
.site-footer {
    margin-top: 20px;
    position: relative;
    background: linear-gradient(160deg, #101758 0%, #131d6e 46%, #1a237e 100%);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.18);
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: -35% -22% auto;
    height: 380px;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 30%, rgba(255, 111, 0, 0.2), transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255, 215, 0, 0.18), transparent 42%);
    opacity: 0.35;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: var(--pattern-sacred);
    background-size: var(--pattern-size);
    background-repeat: repeat;
    opacity: 0.05;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.site-subfooter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 10, 44, 0.52);
}

.site-subfooter__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    padding: 12px 0;
}

.site-subfooter__title {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.96);
}

.site-subfooter__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.site-subfooter__links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.93rem;
    transition: color var(--transition), transform var(--transition);
}

.site-subfooter__links a:hover {
    color: var(--color-accent);
    transform: translateY(-1px);
}

.site-footer__top {
    padding: 48px 0 42px;
}

.site-footer__cities {
    margin-bottom: 20px;
}

.site-footer__cities-head {
    margin-bottom: 14px;
}

.site-footer__cities-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    max-width: 68ch;
    line-height: 1.56;
}

.site-footer__city-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.site-footer__city-card {
    min-width: 0;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.site-footer__city-card h4 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.97);
}

.site-footer__city-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.site-footer__city-links li {
    margin: 0;
    padding: 0;
}

.site-footer__city-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.42;
    transition: color var(--transition), transform var(--transition);
}

.site-footer__city-links a:hover {
    color: var(--color-accent);
    transform: translateX(2px);
}

.site-footer__grid {
    display: grid;
    gap: 18px;
}

.site-footer__grid > div {
    min-width: 0;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 24px rgba(7, 11, 51, 0.28);
    backdrop-filter: blur(2px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.site-footer__grid > div:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.site-footer h3 {
    color: var(--color-white);
    margin-bottom: 12px;
    font-size: clamp(1.38rem, 1.2rem + 0.45vw, 1.62rem);
    position: relative;
    padding-bottom: 9px;
}

.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.95), rgba(255, 111, 0, 0.85));
}

.site-footer__list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer__list--compact {
    gap: 7px;
}

.site-footer__list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-footer__list li::before {
    content: "\2726";
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.05rem;
    color: rgba(255, 215, 0, 0.95);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.35);
}

.site-footer__list li:nth-child(12n + 1)::before {
    content: "\2648";
}

.site-footer__list li:nth-child(12n + 2)::before {
    content: "\2649";
}

.site-footer__list li:nth-child(12n + 3)::before {
    content: "\264A";
}

.site-footer__list li:nth-child(12n + 4)::before {
    content: "\264B";
}

.site-footer__list li:nth-child(12n + 5)::before {
    content: "\264C";
}

.site-footer__list li:nth-child(12n + 6)::before {
    content: "\264D";
}

.site-footer__list li:nth-child(12n + 7)::before {
    content: "\264E";
}

.site-footer__list li:nth-child(12n + 8)::before {
    content: "\264F";
}

.site-footer__list li:nth-child(12n + 9)::before {
    content: "\2650";
}

.site-footer__list li:nth-child(12n + 10)::before {
    content: "\2651";
}

.site-footer__list li:nth-child(12n + 11)::before {
    content: "\2652";
}

.site-footer__list li:nth-child(12n + 12)::before {
    content: "\2653";
}
.site-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition), transform var(--transition);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-footer__list a::before {
    content: none;
}

.site-footer__list a:hover,
.site-footer__bottom a:hover {
    color: var(--color-accent);
}

.site-footer__list a:hover::before {
    content: none;
}

.site-footer__list a:hover {
    transform: translateX(3px);
}

.site-footer__list--compact li {
    padding-left: 21px;
    font-size: 0.94rem;
    line-height: 1.36;
}

.site-footer__list--compact li::before {
    content: "\2726";
    top: 0;
    font-size: 0.92rem;
}

.site-footer__group-title {
    margin: 10px 0 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.94rem;
}

.site-footer__details {
    margin-top: 11px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.site-footer__details summary {
    cursor: pointer;
    list-style: none;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.site-footer__details summary::-webkit-details-marker {
    display: none;
}

.site-footer__details summary::after {
    content: "+";
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1;
}

.site-footer__details[open] summary::after {
    content: "-";
}

.site-footer__details-body {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.site-footer__service-tags {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__service-tags li {
    margin: 0;
    padding: 0;
}

.site-footer__service-tags a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    line-height: 1.2;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.site-footer__service-tags a:hover {
    background: rgba(255, 215, 0, 0.16);
    border-color: rgba(255, 215, 0, 0.42);
    color: var(--color-white);
}

.site-footer__keywords {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    letter-spacing: 0.01em;
    white-space: normal;
    overflow-wrap: anywhere;
}

.site-footer__socials {
    margin-top: 14px;
    display: flex;
    gap: 10px;
}

.site-footer__socials a {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    background: rgba(7, 10, 42, 0.35);
}

.site-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer__bottom-inner p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer__credit {
    flex-basis: 100%;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.86);
}

/* ===============================
   Utility / Legal / Back To Top
================================= */
.legal-content {
    display: grid;
    gap: 14px;
}

.legal-content h2 {
    margin-top: 8px;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-white);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
    z-index: 1000;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
}

.lazy-image {
    transition: filter 0.35s ease, opacity 0.35s ease;
}

img.lazy-image[data-src] {
    filter: blur(6px);
    opacity: 0.7;
}

img.lazy-image.is-loaded {
    filter: blur(0);
    opacity: 1;
}

/* ===============================
   Desktop Defaults
================================= */
.card-grid--services {
    grid-template-columns: 1fr;
}

.card-grid--why-us,
.card-grid--three,
.card-grid--blog,
.card-grid--blog-list {
    grid-template-columns: 1fr;
}

/* ===============================
   Creative Audit Upgrades
================================= */
:root {
    --gradient-primary: linear-gradient(135deg, #ff7f11 0%, #ff6f00 45%, #e65100 100%);
    --gradient-secondary: linear-gradient(135deg, #283593 0%, #1a237e 55%, #0d1458 100%);
    --gradient-whatsapp: linear-gradient(135deg, #2cbc4d 0%, #1f9f3e 100%);
    --surface-glass: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --shadow-lg: 0 24px 45px rgba(26, 35, 126, 0.18);
    --pattern-size: 160px 160px;
    --pattern-opacity: 0.04;
    --pattern-sacred: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23233142' stroke-width='0.8' stroke-opacity='0.35'%3E%3Cpath d='M8 32L34 18L58 34L86 22L112 40L144 24'/%3E%3Cpath d='M14 118L42 102L68 118L96 104L126 122L150 108'/%3E%3Cpath d='M26 58L52 74L82 62L108 78L134 64'/%3E%3C/g%3E%3Cg fill='%23344556' fill-opacity='0.45'%3E%3Ccircle cx='8' cy='32' r='1.2'/%3E%3Ccircle cx='34' cy='18' r='1.2'/%3E%3Ccircle cx='58' cy='34' r='1.2'/%3E%3Ccircle cx='86' cy='22' r='1.2'/%3E%3Ccircle cx='112' cy='40' r='1.2'/%3E%3Ccircle cx='144' cy='24' r='1.2'/%3E%3Ccircle cx='14' cy='118' r='1.2'/%3E%3Ccircle cx='42' cy='102' r='1.2'/%3E%3Ccircle cx='68' cy='118' r='1.2'/%3E%3Ccircle cx='96' cy='104' r='1.2'/%3E%3Ccircle cx='126' cy='122' r='1.2'/%3E%3Ccircle cx='150' cy='108' r='1.2'/%3E%3Ccircle cx='26' cy='58' r='1.2'/%3E%3Ccircle cx='52' cy='74' r='1.2'/%3E%3Ccircle cx='82' cy='62' r='1.2'/%3E%3Ccircle cx='108' cy='78' r='1.2'/%3E%3Ccircle cx='134' cy='64' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
}

body {
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 111, 0, 0.08), transparent 20%),
        radial-gradient(circle at 84% 20%, rgba(26, 35, 126, 0.12), transparent 24%),
        radial-gradient(circle at 78% 75%, rgba(255, 215, 0, 0.16), transparent 22%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: var(--pattern-sacred);
    background-size: var(--pattern-size);
    background-repeat: repeat;
    opacity: var(--pattern-opacity);
    z-index: -1;
}

main {
    position: relative;
    z-index: 1;
    overflow: clip;
}

.btn {
    letter-spacing: 0.2px;
}

.btn:focus-visible,
.site-nav__list a:focus-visible,
.mobile-drawer__list a:focus-visible,
.site-footer a:focus-visible,
.back-to-top:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(255, 111, 0, 0.35);
    outline-offset: 2px;
}

.btn--primary {
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(230, 81, 0, 0.25);
}

.btn--secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.25);
}

.btn--whatsapp {
    background: var(--gradient-whatsapp);
    box-shadow: 0 10px 20px rgba(31, 159, 62, 0.28);
}

.page-hero .btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(9, 16, 64, 0.28);
}

.page-hero .btn--outline:hover,
.page-hero .btn--outline:focus-visible {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
}

.site-header {
    box-shadow: 0 6px 18px rgba(26, 35, 126, 0.05);
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6f00, #ffd700, #1a237e);
}

.site-logo__symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.18), rgba(255, 215, 0, 0.25));
    border: 1px solid rgba(255, 111, 0, 0.35);
    object-fit: cover;
    overflow: hidden;
}

.site-nav__list a {
    padding: 8px 12px;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition);
}

.site-nav__list a::after {
    bottom: 2px;
    left: 12px;
    width: calc(100% - 24px);
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    color: var(--color-secondary);
    background: rgba(26, 35, 126, 0.08);
}

.site-nav__list a.is-active::after {
    transform: scaleX(1);
}

.mobile-drawer {
    background: linear-gradient(175deg, #fffaf2 0%, #ffffff 55%, #fff5e8 100%);
    border: 1px solid rgba(26, 35, 126, 0.12);
}

.mobile-drawer__list a {
    border: 1px solid rgba(255, 111, 0, 0.18);
}

.hero-home {
    overflow: hidden;
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-home::before {
    width: 260px;
    height: 260px;
    right: -80px;
    top: -70px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.42), rgba(255, 215, 0, 0));
}

.hero-home::after {
    width: 320px;
    height: 320px;
    left: -130px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.35), rgba(255, 111, 0, 0));
}

.hero-home__content {
    position: relative;
    z-index: 1;
}

.section-heading h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.service-card,
.feature-card,
.info-card,
.blog-card,
.service-detail-card,
.video-card,
.contact-form-card,
.contact-info-card,
.testimonial-card,
.blog-post__content,
.blog-post__toc {
    background: linear-gradient(var(--surface-glass), var(--surface-glass)) padding-box,
        linear-gradient(135deg, rgba(255, 111, 0, 0.22), rgba(26, 35, 126, 0.2)) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(4px);
}

.service-card,
.feature-card,
.info-card {
    position: relative;
}

.service-card::before,
.feature-card::before,
.info-card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 999px;
}

.service-card__icon,
.feature-card__icon,
.info-card__icon,
.service-detail-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 215, 0, 0.26));
    border: 1px solid rgba(255, 111, 0, 0.25);
}

.feature-card {
    text-align: center;
}

.feature-card .feature-card__icon {
    margin-inline: auto;
}

.blog-card img {
    transition: transform var(--transition);
}

.blog-card:hover img {
    transform: scale(1.04);
}

.testimonial-card {
    box-shadow: var(--shadow-lg);
}

.badge {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.14), rgba(255, 111, 0, 0.12));
    border: 1px solid rgba(26, 35, 126, 0.14);
}

.contact-cta__box,
.blog-post__cta {
    position: relative;
    overflow: hidden;
}

.contact-cta__box::before,
.blog-post__cta::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: -80px;
    top: -90px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0));
}

.contact-cta__box > *,
.blog-post__cta > * {
    position: relative;
    z-index: 1;
}

.consultation-flow {
    position: relative;
}

.consultation-flow .card-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.consultation-step {
    padding: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(var(--surface-solid), var(--surface-solid)) padding-box,
        linear-gradient(140deg, rgba(255, 111, 0, 0.25), rgba(26, 35, 126, 0.18)) border-box;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.consultation-step__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.consultation-step__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--color-white);
}

.consultation-step__tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary);
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(26, 35, 126, 0.18);
    background: rgba(26, 35, 126, 0.06);
}

.consultation-step h3 {
    margin: 0;
    font-size: 1.55rem;
}

.consultation-step p {
    color: var(--color-text-light);
    margin: 0;
}

.consultation-step__list {
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.consultation-step__list li {
    position: relative;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.5;
    padding-left: 16px;
}

.consultation-step__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.12);
}

.consultation-step__meta {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(26, 35, 126, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.consultation-step__meta i {
    color: var(--color-primary);
}

.consultation-flow__note {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
}

.consultation-flow__cta {
    margin-top: 18px;
    text-align: center;
}

.blog-post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-post__content th,
.blog-post__content td {
    border: 1px solid rgba(26, 35, 126, 0.12);
    padding: 10px 12px;
    text-align: left;
}

.blog-post__content th {
    background: rgba(26, 35, 126, 0.08);
    color: var(--color-secondary);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1200;
    background: linear-gradient(90deg, #ff6f00, #ffd700, #1a237e);
    transition: width 0.08s linear;
}

.floating-whatsapp {
    position: fixed;
    bottom: 22px;
    left: 20px;
    z-index: 1020;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    background: var(--gradient-whatsapp);
    box-shadow: 0 10px 28px rgba(31, 159, 62, 0.36);
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
}

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1010;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(31, 159, 62, 0.96), rgba(28, 147, 56, 0.96));
    color: var(--color-white);
    min-height: 56px;
    font-weight: 600;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -10px 24px rgba(28, 147, 56, 0.32);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .btn,
    .blog-card img,
    .floating-whatsapp,
    .back-to-top,
    .hero-wheel,
    .hero-wheel__signs a,
    .hero-home__intent-item {
        transition: none;
    }

    .hero-wheel__ring {
        animation: none;
    }

    .hero-wheel__signs {
        animation: none;
    }

    .hero-wheel__signs a {
        animation: none;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===============================
   Blog Theme Consistency
================================= */
body[data-page="blog"] .page-hero h1,
body[data-page="blog-post"] .blog-post__hero-content h1 {
    letter-spacing: 0.12px;
    text-wrap: balance;
}

body[data-page="blog"] .blog-card__content {
    padding: 22px 22px 24px;
}

body[data-page="blog"] .blog-card__content h2,
body[data-page="blog"] .blog-card__content h3 {
    font-size: clamp(1.22rem, 1.55vw, 1.54rem);
    line-height: 1.36;
    margin: 10px 0 10px;
    color: var(--color-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body[data-page="blog"] .blog-card__content p {
    font-size: 1rem;
    line-height: 1.74;
    color: var(--color-text-light);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body[data-page="blog"] .badge {
    font-size: 11.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--color-secondary);
    border-color: rgba(26, 35, 126, 0.18);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.14), rgba(255, 215, 0, 0.18));
}

body[data-page="blog-post"] .blog-post__hero-content {
    max-width: 100%;
}

body[data-page="blog-post"] .blog-post__hero-content h1 {
    font-size: clamp(1.9rem, 2.45vw, 2.45rem);
    line-height: 1.12;
    max-width: 100%;
    word-break: normal;
}

body[data-page="blog-post"] .blog-post__hero-content > p {
    color: rgba(26, 35, 126, 0.74);
}

body[data-page="blog-post"] .blog-post__breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-light);
}

body[data-page="blog-post"] .blog-post__breadcrumb a {
    color: var(--color-secondary);
    text-decoration: none;
}

body[data-page="blog-post"] .blog-post__breadcrumb span[aria-hidden="true"] {
    color: rgba(26, 35, 126, 0.36);
}

body[data-page="blog-post"] .blog-post__hero-content > p:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
}

body[data-page="blog-post"] .blog-post__hero-content > p:first-child .blog-post__meta-dot {
    display: none;
}

body[data-page="blog-post"] .blog-post__hero-content > p:first-child .badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15px;
    text-transform: none;
    color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.16), rgba(255, 215, 0, 0.24));
    border: 1px solid rgba(255, 111, 0, 0.3);
    box-shadow: 0 6px 14px rgba(255, 111, 0, 0.13);
}

body[data-page="blog-post"] .blog-post__hero-content > p:first-child span:not(.badge):not(.blog-post__meta-dot) {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1px;
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(26, 35, 126, 0.18);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.09);
}

body[data-page="blog-post"] .blog-post__hero-content > p:nth-of-type(2) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-secondary);
}

body[data-page="blog-post"] .blog-post__hero-content > p:nth-of-type(2)::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.72);
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.14);
}

body[data-page="blog-post"] .blog-post__layout {
    gap: 32px;
}

body[data-page="blog-post"] .blog-post__toc h2 {
    font-size: 1.3rem;
}

body[data-page="blog-post"] .blog-post__toc nav a {
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--color-text-dark);
}

body[data-page="blog-post"] .blog-post__content {
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.96rem + 0.22vw, 1.11rem);
    line-height: 1.88;
    color: var(--color-text-dark);
    max-width: 72ch;
    margin-inline: auto;
    padding: 34px clamp(18px, 3vw, 42px);
}

body[data-page="blog-post"] .blog-post__content p {
    margin: 0 0 14px;
}

body[data-page="blog-post"] .blog-post__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.5vw, 2.24rem);
    line-height: 1.28;
    margin: 40px 0 12px;
    color: var(--color-secondary);
}

body[data-page="blog-post"] .blog-post__content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.12rem, 1.6vw, 1.33rem);
    line-height: 1.45;
    margin: 24px 0 8px;
    color: var(--color-secondary);
}

body[data-page="blog-post"] .blog-post__content ul,
body[data-page="blog-post"] .blog-post__content ol {
    margin: 0 0 16px;
    padding-left: 1.34rem;
}

body[data-page="blog-post"] .blog-post__content li {
    margin-bottom: 8px;
}

body[data-page="blog-post"] .blog-post__content a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body[data-page="blog-post"] .blog-post__content .btn,
body[data-page="blog-post"] .blog-post__content .btn:visited {
    color: var(--color-white);
    text-decoration: none;
}

body[data-page="blog-post"] .blog-post__content .btn--secondary:hover,
body[data-page="blog-post"] .blog-post__content .btn--secondary:focus-visible,
body[data-page="blog-post"] .blog-post__content .btn--whatsapp:hover,
body[data-page="blog-post"] .blog-post__content .btn--whatsapp:focus-visible {
    color: var(--color-white);
}

body[data-page="blog-post"] .blog-post__content figure {
    margin: 26px 0;
}

body[data-page="blog-post"] .blog-post__content figure img {
    border-radius: 14px;
    box-shadow: 0 14px 26px rgba(26, 35, 126, 0.16);
}

body[data-page="blog-post"] .blog-post__takeaways {
    margin: 2px 0 24px;
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid rgba(26, 35, 126, 0.18);
    background:
        linear-gradient(130deg, rgba(255, 111, 0, 0.08), rgba(255, 215, 0, 0.1)),
        rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(26, 35, 126, 0.08);
}

body[data-page="blog-post"] .blog-post__takeaways h2 {
    margin: 0 0 10px;
    font-size: clamp(1.24rem, 1.7vw, 1.5rem);
    line-height: 1.3;
}

body[data-page="blog-post"] .blog-post__takeaways ul {
    margin: 0;
    padding-left: 1.25rem;
}

body[data-page="blog-post"] .blog-post__takeaways li {
    margin-bottom: 6px;
}

body[data-page="blog-post"] .blog-post__author-bio {
    margin-top: 22px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(26, 35, 126, 0.18);
    background: rgba(255, 255, 255, 0.86);
}

body[data-page="blog-post"] .blog-post__author-bio h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 1.28rem;
    color: var(--color-secondary);
}

body[data-page="blog-post"] .blog-post__author-bio p {
    margin: 0;
}


