:root {
    --ink: #121214;
    --ink-soft: #4b4b52;
    --paper: #fff;
    --tint: #F6F5FC;
    --tint-deep: #EDEBFA;
    --indigo: #353895;
    --indigo-deep: #23255F;
    --saffron: #F89938;
    --green: #0C8040;
    --red: #ED1F24;
    --magenta: #B9519F;
    --cyan: #6ECDDD;
    --yellow: #F3EC19;
    --blue: #3853A4;
    --line: rgba(18, 18, 20, .1);
    --line-strong: rgba(18, 18, 20, .18);
    --radius: 14px;
    --maxw: 1220px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--indigo-deep);
    line-height: 1.12;
    margin: 0 0 .5em;
    letter-spacing: -.01em
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--indigo);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px
}

.eyebrow:before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--saffron);
    flex: none
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 2px solid var(--indigo);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap
}

.btn-primary {
    background: var(--indigo);
    color: #fff
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(53, 56, 149, .28)
}

.btn-ghost {
    background: transparent;
    color: var(--indigo-deep)
}

.btn-ghost:hover {
    background: var(--indigo);
    color: #fff;
    transform: translateY(-2px)
}

.btn-on-dark {
    border-color: #fff;
    color: #fff
}

.btn-on-dark.btn-primary {
    background: #fff;
    color: var(--indigo-deep)
}

.btn-on-dark.btn-primary:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28)
}

header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.brand-text {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 19px;
    color: var(--indigo-deep);
    letter-spacing: -.01em
}

.brand-text span {
    color: var(--saffron)
}

nav.links {
    display: flex;
    align-items: center;
    gap: 30px
}

nav.links ul {
    display: flex;
    gap: 28px;
    align-items: center
}

nav.links a.top-link {
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 14.5px;
    color: var(--ink);
    padding: 6px 2px;
    position: relative
}

nav.links a.top-link:hover {
    color: var(--indigo)
}

.has-drop {
    position: relative
}

.drop {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(20, 20, 40, .12);
    padding: 10px;
    min-width: 240px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    translate: 0 8px;
    transition: opacity .15s ease, translate .15s ease, visibility .15s
}

.has-drop:hover .drop {
    opacity: 1;
    visibility: visible;
    translate: 0 0
}

.drop a {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--ink)
}

.drop a:hover {
    background: var(--tint);
    color: var(--indigo)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .2s ease, opacity .2s ease
}

.burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.is-active span:nth-child(2) {
    opacity: 0
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}


section {
    padding: 92px 0
}

.section-tint {
    background: var(--tint)
}

/* ========================================================
   INDEX / HOMEPAGE SPECIFIC STYLES
   ======================================================== */

/* ---------- HERO (index only) ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 60px;
    background: var(--paper)
}

.hero .rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center
}

.hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 22px
}

.hero h1 em {
    font-style: normal;
    color: var(--saffron)
}

.hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 32px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.hero-strip {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line)
}

.hero-strip div {
    font-family: 'JetBrains Mono';
    font-size: 12.5px;
    color: var(--ink-soft);
    letter-spacing: .03em
}

.hero-strip strong {
    display: block;
    font-family: 'Space Grotesk';
    color: var(--indigo-deep);
    font-size: 15px;
    margin-bottom: 3px
}

.hero-art {
    position: relative
}

.hero-art .frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(35, 37, 95, .14)
}

.hero-art img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.hero-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 20px 40px rgba(20, 20, 40, .16);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line)
}

.hero-badge img {
    height: 38px;
    width: auto
}

.hero-badge div {
    font-family: 'Space Grotesk';
    font-weight: 600;
    font-size: 13.5px;
    color: var(--indigo-deep)
}

.hero-badge span {
    display: block;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 12px;
    color: var(--ink-soft)
}

/* ---------- ABOUT SECTION (index) ---------- */
.about-media {
    position: relative
}

.about-media img {
    border-radius: 20px;
    height: 440px;
    object-fit: cover;
    border: 1px solid var(--line)
}

.about-media .stripe {
    position: absolute;
    left: -18px;
    top: 36px;
    bottom: 36px;
    width: 10px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--saffron), #fff 48%, var(--green));
    border: 1px solid var(--line-strong)
}

.about-copy p {
    color: var(--ink-soft);
    font-size: 16px;
    margin-bottom: 18px
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px
}

.about-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: 'Space Grotesk';
    font-size: 14.5px;
    font-weight: 500;
    color: var(--indigo-deep)
}

.about-points li:before {
    content: "▸";
    color: var(--saffron);
    font-size: 15px;
    line-height: 1.5
}

/* ---------- SERVICES GRID (index) ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(35, 37, 95, .12);
    border-color: transparent
}

.svc-card .num {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--ink-soft);
    opacity: .6;
    margin-bottom: 14px;
    display: block
}

.svc-card h3 {
    font-size: 19px;
    margin-bottom: 10px
}

.svc-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin-bottom: 0
}

.svc-card .dot {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.svc-card:nth-child(11n+1) .dot { background: var(--red) }
.svc-card:nth-child(11n+2) .dot { background: var(--saffron) }
.svc-card:nth-child(11n+3) .dot { background: var(--green) }
.svc-card:nth-child(11n+4) .dot { background: var(--blue) }
.svc-card:nth-child(11n+5) .dot { background: var(--magenta) }
.svc-card:nth-child(11n+6) .dot { background: var(--cyan) }
.svc-card:nth-child(11n+7) .dot { background: var(--red) }
.svc-card:nth-child(11n+8) .dot { background: var(--saffron) }
.svc-card:nth-child(11n+9) .dot { background: var(--green) }
.svc-card:nth-child(11n+10) .dot { background: var(--blue) }
.svc-card:nth-child(11n+11) .dot { background: var(--magenta) }

.svc-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--indigo-deep);
    color: #fff;
    border-radius: var(--radius);
    padding: 28px 26px
}

.svc-more h3 {
    color: #fff;
    font-size: 19px
}

.svc-more p {
    color: rgba(255, 255, 255, .72);
    font-size: 14.5px;
    margin-bottom: 18px
}

/* ---------- TESTIMONIALS (index) ---------- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.stars {
    color: var(--saffron);
    font-size: 14px;
    letter-spacing: 2px
}

.testi-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    font-style: italic;
    flex: 1
}

.testi-who {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 14px
}

.testi-who div strong {
    display: block;
    font-family: 'Space Grotesk';
    font-size: 14px;
    color: var(--indigo-deep)
}

.testi-who div span {
    font-size: 12.5px;
    color: var(--ink-soft)
}

.testi-note {
    margin-top: 32px;
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--ink-soft);
    background: var(--tint);
    border: 1px dashed var(--line-strong);
    border-radius: 10px;
    padding: 14px 16px
}

/* ---------- SOCIAL ROW (index contact) ---------- */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 26px
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--indigo-deep);
    transition: background .15s, color .15s
}

.social-row a:hover {
    background: var(--indigo);
    color: #fff;
    border-color: var(--indigo)
}

/* ========================================================
   INNER / SERVICE PAGES SPECIFIC STYLES
   ======================================================== */

.page-hero {
    padding: 82px 0 66px;
    background: linear-gradient(122deg, #fff 54%, var(--tint) 54%);
    overflow: hidden
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: center
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    margin-bottom: 20px
}

.page-hero h1 em {
    font-style: normal;
    color: var(--saffron)
}

.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 590px;
    margin: 0 0 30px
}

/* page-hero hero-art (service pages) */
.page-hero .hero-art .frame {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(35, 37, 95, .14)
}

.page-hero .hero-art img {
    width: 100%;
    height: 365px;
    object-fit: cover
}

.page-hero .hero-badge {
    margin-top: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    box-shadow: 0 16px 30px rgba(20, 20, 40, .12);
    border: 1px solid var(--line);
    font-family: 'Space Grotesk';
    font-weight: 600;
    color: var(--indigo-deep);
    display: inline-block;
    position: static
}

/* ========================================================
   SHARED SECTION COMPONENTS
   ======================================================== */

.head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 52px;
    flex-wrap: wrap
}

.head-row h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    max-width: 670px
}

.head-row p {
    color: var(--ink-soft);
    max-width: 420px;
    font-size: 15.5px
}

/* about-grid: inner pages use 1fr 1fr; index overrides below */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

/* Index about-grid has slightly asymmetric columns */
[data-page="index"] .about-grid {
    grid-template-columns: .95fr 1.05fr
}

.copy p {
    color: var(--ink-soft);
    font-size: 16px;
    margin: 0 0 18px
}

.feature-grid,
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.feature-card,
.solution-card,
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 27px 25px
}

.feature-card .num {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--saffron);
    display: block;
    margin-bottom: 14px
}

.feature-card h3,
.solution-card h3 {
    font-size: 19px;
    margin-bottom: 10px
}

.feature-card p,
.solution-card p,
.faq-item p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin: 0
}

.solution-card {
    position: relative;
    overflow: hidden
}

.solution-card:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--magenta);
    position: absolute;
    right: 24px;
    top: 25px
}

.solution-card:nth-child(2):before {
    background: var(--green)
}

.solution-card:nth-child(3):before {
    background: var(--saffron)
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.chip {
    font-family: 'Space Grotesk';
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--line-strong);
    color: var(--indigo-deep);
    background: #fff
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.why-card .idx {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    background: var(--red)
}

/* Index why-card has no padding */
[data-page="index"] .why-card {
    padding: 0
}

.why-card:nth-child(2) .idx {
    background: var(--indigo)
}

.why-card:nth-child(3) .idx {
    background: var(--green)
}

.why-card:nth-child(4) .idx {
    background: var(--saffron)
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px
}

.why-card p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin: 0
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden
}

.proc-step {
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    background: #fff;
    position: relative
}

.proc-step:last-child {
    border-right: 0
}

.tag {
    font-family: 'JetBrains Mono';
    font-size: 12px;
    color: var(--saffron);
    letter-spacing: .08em;
    display: block;
    margin-bottom: 14px
}

.proc-step h3 {
    font-size: 18px;
    margin-bottom: 10px
}

.proc-step p {
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0
}

/* Arrow (index process only) */
.proc-step .arrow {
    position: absolute;
    right: -13px;
    top: 38px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--indigo);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2
}

.proc-step:last-child .arrow {
    display: none
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 9px
}

.cta-banner {
    background: var(--indigo-deep);
    color: #fff;
    border-radius: 26px;
    padding: 64px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 36px);
    max-width: 550px;
    margin-bottom: 0
}

.cta-banner:after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--saffron);
    opacity: .45;
    right: -50px;
    top: -65px
}

/* Ray dots (index CTA) */
.cta-banner .ray-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .5
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px
}

.contact-info h2 {
    font-size: clamp(26px, 3vw, 34px)
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start
}

.info-item .ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--tint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 18px
}

.info-item strong {
    display: block;
    font-family: 'Space Grotesk';
    color: var(--indigo-deep);
    font-size: 14.5px;
    margin-bottom: 2px
}

.info-item span {
    font-size: 14px;
    color: var(--ink-soft)
}

form.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 30px 60px rgba(35, 37, 95, .08)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-family: 'Space Grotesk';
    font-size: 12.5px;
    font-weight: 600;
    color: var(--indigo-deep)
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid var(--line-strong);
    border-radius: 10px;
    padding: 11px 13px;
    font-family: Inter;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--tint);
    outline: none;
    transition: border-color .15s, background .15s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--indigo);
    background: #fff
}

.field textarea {
    min-height: 100px;
    resize: vertical
}

form.quote .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px
}

.form-note {
    font-size: 12px;
    color: var(--ink-soft);
    margin: 14px 0 0;
    text-align: center
}

footer {
    background: var(--indigo-deep);
    color: #fff;
    padding: 64px 0 0
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.foot-brand img {
    height: 52px;
    margin-bottom: 16px
}

.foot-brand p {
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    max-width: 280px
}

footer h4 {
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 18px;
    letter-spacing: .02em
}

footer ul li {
    margin-bottom: 11px
}

footer ul a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px
}

footer ul a:hover {
    color: var(--saffron)
}

.foot-newsletter form {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.foot-newsletter input {
    flex: 1;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
    padding: 11px 16px;
    font-family: Inter;
    font-size: 13.5px;
    outline: none
}

.foot-newsletter input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.foot-newsletter button {
    border: 0;
    background: var(--saffron);
    color: #fff;
    border-radius: 999px;
    padding: 0 20px;
    font-family: 'Space Grotesk';
    font-weight: 600;
    cursor: pointer;
    font-size: 13.5px
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    flex-wrap: wrap;
    gap: 10px
}

.foot-bottom a {
    color: rgba(255, 255, 255, .6)
}

.foot-bottom a:hover {
    color: #fff
}

.footer-contact { display: grid; gap: 7px; margin-top: 18px }
.footer-contact a, .footer-contact address { color: rgba(255, 255, 255, .72); font-size: 13px; font-style: normal; line-height: 1.55 }
.footer-contact a:hover { color: var(--saffron) }
.footer-social { display: flex; gap: 9px; margin-top: 18px }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: background .15s, color .15s, border-color .15s }
.footer-social a:hover { background: var(--saffron); border-color: var(--saffron) }

/* Get a Free Quote clone lives only inside the mobile menu — hidden everywhere else by default */
nav.links .mobile-cta {
    display: none
}

/* ================================================================
   STICKY WHATSAPP BUTTON — START
   ================================================================ */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.wa-float svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    transition: transform .2s ease
}

.wa-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, .55)
}

.wa-float:hover svg {
    transform: scale(1.12)
}
/* ================================================================
   STICKY WHATSAPP BUTTON — END
   ================================================================ */


@media(max-width:980px) {
    nav.links {
        display: none
    }

    .burger {
        display: block
    }

    .nav-cta .btn {
        display: none
    }

    /* ---------- MOBILE MENU (dropdown panel under the header) ---------- */
    nav.links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        padding: 12px 24px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 40px rgba(20, 20, 40, .14);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        z-index: 55;
        gap: 0
    }

    nav.links.mobile-open ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    nav.links.mobile-open ul > li {
        width: 100%;
    }

    nav.links.mobile-open a.top-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 4px;
        border-bottom: 1px solid var(--line)
    }

    /* Services becomes a vertical accordion on mobile, no hover needed */
    nav.links.mobile-open .has-drop {
        position: static
    }

    nav.links.mobile-open .drop {
        position: static;
        opacity: 1;
        visibility: visible;
        translate: none;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--tint);
        border-radius: 10px;
        padding: 6px;
        min-width: 0;
        width: 100%;
        margin: 4px 0 10px;
        display: none;
        text-align: left
    }

    nav.links.mobile-open .drop a {
        text-align: left
    }

    nav.links.mobile-open .has-drop.open .drop {
        display: grid
    }

    /* "Get a Free Quote" button, injected as the LAST item in the mobile menu */
    nav.links.mobile-open .mobile-cta {
        display: block;
        width: 100%;
        margin-top: 16px;
        border-bottom: none
    }

    nav.links.mobile-open .mobile-cta .btn {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center
    }

    /* Index hero */
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-art {
        order: -1;
        max-width: 640px
    }

    /* Service pages */
    .page-hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .feature-grid,
    .solution-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    /* Services grid */
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    /* Process arrow hidden on mobile */
    .proc-step .arrow {
        display: none
    }

    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-step:nth-child(2) {
        border-right: 0
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-banner {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:600px) {
    section {
        padding: 64px 0
    }

    .feature-grid,
    .solution-grid,
    .svc-grid,
    .why-grid,
    .process,
    .foot-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .about-points {
        grid-template-columns: 1fr
    }

    .proc-step {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .form-row {
        grid-template-columns: 1fr
    }

    /* Index hero badge */
    .hero-badge {
        position: static;
        margin-top: 16px
    }

    .hero-art .frame img {
        height: 280px
    }

    .cta-banner {
        padding: 44px 28px
    }

    .nav {
        padding: 10px 20px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    * {
        transition: none !important
    }
}

/* index.html about section css for responsive mode  */
/* ---- About section mobile fix: image first, then text ---- */
@media (max-width: 900px) {
  #about .about-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  #about .about-media {
    order: 1 !important;
    width: 100% !important;
  }
  #about .about-copy {
    order: 2 !important;
  }
  #about .about-media img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
  }
  #about .about-media .stripe {
    display: none !important;
  }
}