/* ============================================================
   EzRelocation — City Landing Pages (Delhi / Mumbai / Gurgaon)
   Prefix: .cy-  (safe to load alongside site.css + tailwind.css)
   ============================================================ */

:root {
    --cy-orange: #f15b29;
    --cy-orange-soft: #fef1eb;
    --cy-ink: #111318;
    --cy-ink-2: #1c1f26;
    --cy-muted: #5c6270;
    --cy-line: #e9e6e1;
    --cy-paper: #faf8f5;
    --cy-card: #ffffff;
    --cy-radius-lg: 32px;
    --cy-radius-md: 22px;
    --cy-radius-sm: 14px;
    --cy-shadow-sm: 0 1px 2px rgba(17, 19, 24, 0.05), 0 8px 24px -12px rgba(17, 19, 24, 0.10);
    --cy-shadow-md: 0 2px 4px rgba(17, 19, 24, 0.04), 0 20px 48px -20px rgba(17, 19, 24, 0.18);
    --cy-shadow-orange: 0 12px 32px -10px rgba(241, 91, 41, 0.45);
}

/* ---------- Page scaffold ---------- */
.cy-page {
    background:
        radial-gradient(1200px 500px at 85% -100px, rgba(241, 91, 41, 0.06), transparent 60%),
        var(--cy-paper);
    color: var(--cy-ink);
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    overflow-x: clip;
}

.cy-wrap {
    width: min(1200px, 100% - 40px);
    margin-inline: auto;
}

.cy-section { padding: 84px 0; }
@media (min-width: 1024px) { .cy-section { padding: 110px 0; } }

.cy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cy-orange);
}
.cy-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--cy-orange);
}

.cy-h2 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--cy-ink);
    margin: 14px 0 0;
}
.cy-h2 em {
    font-style: normal;
    color: var(--cy-orange);
}
.cy-lead {
    color: var(--cy-muted);
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.7;
    max-width: 56ch;
}

.cy-center { text-align: center; }
.cy-center .cy-eyebrow { justify-content: center; }
.cy-center .cy-eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--cy-orange);
}
.cy-center .cy-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.cy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.cy-btn .material-symbols-outlined { font-size: 20px; }
.cy-btn-dark {
    background: var(--cy-ink);
    color: #fff;
    box-shadow: 0 14px 30px -14px rgba(17, 19, 24, 0.55);
}
.cy-btn-dark:hover { transform: translateY(-2px); background: #000; }
.cy-btn-orange {
    background: var(--cy-orange);
    color: #fff;
    box-shadow: var(--cy-shadow-orange);
}
.cy-btn-orange:hover { transform: translateY(-2px); background: #d94a1a; }
.cy-btn-ghost {
    background: #fff;
    color: var(--cy-ink);
    border: 1.5px solid var(--cy-line);
}
.cy-btn-ghost:hover { border-color: var(--cy-orange); color: var(--cy-orange); transform: translateY(-2px); }
.cy-btn-light {
    background: #fff;
    color: var(--cy-ink);
}
.cy-btn-light:hover { transform: translateY(-2px); }

/* ---------- Breadcrumb ---------- */
.cy-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cy-muted);
    margin-bottom: 26px;
}
.cy-crumb a { color: var(--cy-muted); text-decoration: none; transition: color .2s; }
.cy-crumb a:hover { color: var(--cy-orange); }
.cy-crumb .material-symbols-outlined { font-size: 15px; }
.cy-crumb [aria-current] { color: var(--cy-ink); }

/* ---------- Hero ---------- */
.cy-hero { padding: 122px 0 40px; position: relative; }
@media (min-width: 1024px) { .cy-hero { padding: 142px 0 56px; } }

.cy-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}
@media (min-width: 1024px) {
    .cy-hero-grid { grid-template-columns: 10fr 11fr; gap: 64px; }
}

.cy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--cy-line);
    box-shadow: var(--cy-shadow-sm);
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cy-ink);
    margin-bottom: 26px;
}
.cy-hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cy-orange);
    box-shadow: 0 0 0 4px rgba(241, 91, 41, 0.18);
    animation: cy-pulse 1.8s infinite;
}
@keyframes cy-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(241, 91, 41, 0.18); }
    50% { box-shadow: 0 0 0 7px rgba(241, 91, 41, 0.08); }
}

.cy-h1 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0 0 22px;
    color: var(--cy-ink);
}
.cy-h1 .accent {
    background: linear-gradient(92deg, var(--cy-orange) 10%, #f98b3d 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cy-hero-sub {
    font-size: clamp(1.02rem, 1.5vw, 1.17rem);
    line-height: 1.75;
    color: var(--cy-muted);
    max-width: 46ch;
    margin: 0 0 30px;
}

.cy-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.cy-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid var(--cy-line);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cy-ink-2);
}
.cy-chip .material-symbols-outlined { font-size: 17px; color: var(--cy-orange); }

.cy-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.cy-hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cy-avatars { display: flex; }
.cy-avatars .av {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-left: -10px;
    box-shadow: var(--cy-shadow-sm);
}
.cy-avatars .av:first-child { margin-left: 0; }
.cy-proof-text { font-size: 13.5px; color: var(--cy-muted); line-height: 1.5; }
.cy-proof-text strong { color: var(--cy-ink); }
.cy-stars { color: #f5a623; font-size: 15px; letter-spacing: 2px; }

/* Hero media */
.cy-hero-media { position: relative; }
.cy-hero-frame {
    position: relative;
    border-radius: var(--cy-radius-lg);
    overflow: hidden;
    box-shadow: var(--cy-shadow-md);
    aspect-ratio: 16 / 11;
    background: #e8e4de;
}
.cy-hero-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.cy-hero-media:hover .cy-hero-frame img { transform: scale(1.045); }

.cy-hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, rgba(17,19,24,0) 55%, rgba(17,19,24,0.28) 100%);
    pointer-events: none;
}

.cy-float-card {
    position: absolute;
    left: -18px;
    bottom: 30px;
    background: #fff;
    border: 1px solid var(--cy-line);
    border-radius: 20px;
    box-shadow: var(--cy-shadow-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: cy-float 5s ease-in-out infinite;
}
@media (max-width: 1023px) { .cy-float-card { left: 12px; bottom: 14px; } }
.cy-float-card .ic {
    width: 48px; height: 48px;
    border-radius: 15px;
    background: var(--cy-orange-soft);
    color: var(--cy-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-float-card .ic .material-symbols-outlined { font-size: 26px; }
.cy-float-card .num {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--cy-ink);
}
.cy-float-card .lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cy-muted);
}
@keyframes cy-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.cy-float-chip {
    position: absolute;
    top: 22px;
    right: -14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--cy-line);
    border-radius: 999px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--cy-ink);
    box-shadow: var(--cy-shadow-sm);
}
.cy-float-chip .material-symbols-outlined { font-size: 18px; color: #1fa855; }
@media (max-width: 1023px) { .cy-float-chip { right: 12px; } }

/* ---------- Stats band ---------- */
.cy-stats-band {
    background: var(--cy-ink);
    border-radius: var(--cy-radius-lg);
    padding: 44px 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
    position: relative;
    overflow: hidden;
}
.cy-stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.10) 1.5px, transparent 0);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}
@media (min-width: 900px) { .cy-stats-band { grid-template-columns: repeat(4, 1fr); padding: 54px 48px; } }
.cy-stat { text-align: center; position: relative; }
.cy-stat + .cy-stat::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 12%;
    height: 76%;
    width: 1px;
    background: rgba(255, 255, 255, 0.10);
}
@media (max-width: 899px) {
    .cy-stat:nth-child(3)::before { display: none; }
}
.cy-stat .val {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.cy-stat .val .sfx { color: var(--cy-orange); }
.cy-stat .cap {
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- Bento services ---------- */
.cy-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 760px) { .cy-bento { grid-template-columns: repeat(2, 1fr); } }

.cy-card {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: var(--cy-radius-md);
    box-shadow: var(--cy-shadow-sm);
    padding: 30px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
}
.cy-card:hover { transform: translateY(-5px); box-shadow: var(--cy-shadow-md); border-color: #ddd6cd; }
@media (min-width: 760px) { .cy-card.wide { grid-column: span 2; } }

.cy-card .icon-tile {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--cy-orange-soft);
    color: var(--cy-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.cy-card .icon-tile .material-symbols-outlined { font-size: 27px; }
.cy-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    color: var(--cy-ink);
}
.cy-card p { margin: 0; color: var(--cy-muted); font-size: 15px; line-height: 1.7; }

.cy-card-media {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #efece7;
    margin-bottom: 22px;
}
.cy-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s cubic-bezier(.2,.6,.2,1); }
.cy-card:hover .cy-card-media img { transform: scale(1.05); }

.cy-card.split { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 860px) { .cy-card.split { grid-template-columns: 1.05fr 1fr; } }
.cy-card.split .cy-card-media { margin-bottom: 0; }

.cy-card .mini-note {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cy-paper);
    border: 1px solid var(--cy-line);
    border-radius: 16px;
    padding: 13px 16px;
}
.cy-card .mini-note .material-symbols-outlined {
    color: var(--cy-orange);
    font-size: 22px;
    flex-shrink: 0;
}
.cy-card .mini-note span { font-size: 13.5px; font-weight: 600; color: var(--cy-ink-2); line-height: 1.45; }

.cy-card.dark {
    background:
        radial-gradient(600px 240px at 90% -40%, rgba(241, 91, 41, 0.25), transparent 60%),
        var(--cy-ink);
    border-color: var(--cy-ink);
    color: #fff;
    overflow: hidden;
}
.cy-card.dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.09) 1.5px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.cy-card:not(.split) { display: flex; flex-direction: column; }
.cy-card:not(.split) .mini-note { margin-top: auto; }
.cy-card.dark h3 { color: #fff; }
.cy-card.dark p { color: rgba(255, 255, 255, 0.62); }
.cy-card.dark .icon-tile { background: rgba(241, 91, 41, 0.16); color: var(--cy-orange); }
.cy-card .dark-row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.cy-card .dark-row > div { flex: 1 1 380px; }
.cy-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; position: relative; }
.cy-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 7px 13px;
}

/* ---------- Process steps ---------- */
.cy-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    counter-reset: step;
}
@media (min-width: 700px) { .cy-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cy-steps { grid-template-columns: repeat(4, 1fr); } }

.cy-step {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: var(--cy-radius-md);
    padding: 28px 26px;
    position: relative;
    box-shadow: var(--cy-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.cy-step:hover { transform: translateY(-5px); box-shadow: var(--cy-shadow-md); }
.cy-step .num {
    counter-increment: step;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--cy-ink);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}
.cy-step .num::before { content: counter(step); }
.cy-step .num::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 1.5px dashed rgba(241, 91, 41, 0.45);
}
.cy-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 17.5px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--cy-ink);
}
.cy-step p { margin: 0; color: var(--cy-muted); font-size: 14px; line-height: 1.65; }
.cy-step .when {
    display: inline-block;
    margin-top: 14px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cy-orange);
    background: var(--cy-orange-soft);
    border-radius: 999px;
    padding: 5px 11px;
}

/* ---------- Pricing table ---------- */
.cy-table-shell {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: var(--cy-radius-md);
    box-shadow: var(--cy-shadow-sm);
    overflow: hidden;
}
.cy-table-scroll { overflow-x: auto; }
.cy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 14.5px;
}
.cy-table thead th {
    background: var(--cy-ink);
    color: #fff;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 22px;
    white-space: nowrap;
}
.cy-table tbody td {
    padding: 18px 22px;
    border-top: 1px solid var(--cy-line);
    color: var(--cy-ink-2);
    vertical-align: middle;
}
.cy-table tbody tr { transition: background .2s; }
.cy-table tbody tr:hover { background: #fdf6f2; }
.cy-table .route { font-weight: 700; color: var(--cy-ink); display: flex; align-items: center; gap: 10px; }
.cy-table .route .material-symbols-outlined { color: var(--cy-orange); font-size: 20px; }
.cy-table .price { font-weight: 700; color: var(--cy-ink); white-space: nowrap; }
.cy-table .price small { display: block; font-weight: 500; color: var(--cy-muted); font-size: 11.5px; }
.cy-table .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--cy-orange);
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid rgba(241, 91, 41, 0.35);
    padding: 8px 16px;
    border-radius: 999px;
    transition: all .25s;
}
.cy-table .book-btn:hover { background: var(--cy-orange); color: #fff; border-color: var(--cy-orange); }
.cy-table .book-btn .material-symbols-outlined { font-size: 16px; }

.cy-price-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: var(--cy-muted);
    font-size: 13.5px;
    line-height: 1.6;
}
.cy-price-note .material-symbols-outlined { font-size: 19px; color: var(--cy-orange); flex-shrink: 0; margin-top: 1px; }

/* ---------- Localities ---------- */
.cy-locals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) { .cy-locals { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cy-locals { grid-template-columns: repeat(4, 1fr); } }
.cy-local {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--cy-ink-2);
    box-shadow: var(--cy-shadow-sm);
    transition: transform .25s, border-color .25s, color .25s;
}
.cy-local:hover { transform: translateY(-3px); border-color: rgba(241, 91, 41, 0.4); color: var(--cy-orange); }
.cy-local .material-symbols-outlined { font-size: 19px; color: var(--cy-orange); flex-shrink: 0; }

/* ---------- Reviews ---------- */
.cy-reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
@media (min-width: 760px) { .cy-reviews { grid-template-columns: repeat(3, 1fr); } }
.cy-review {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: var(--cy-radius-md);
    box-shadow: var(--cy-shadow-sm);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .3s, box-shadow .3s;
}
.cy-review:hover { transform: translateY(-5px); box-shadow: var(--cy-shadow-md); }
.cy-review .quote-ic {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--cy-orange-soft);
    color: var(--cy-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cy-review blockquote { margin: 0; color: var(--cy-ink-2); font-size: 15px; line-height: 1.75; flex: 1; }
.cy-review .who { display: flex; align-items: center; gap: 13px; }
.cy-review .who .av {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14.5px;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}
.cy-review .who .nm { font-weight: 700; font-size: 14.5px; color: var(--cy-ink); }
.cy-review .who .meta { font-size: 12.5px; color: var(--cy-muted); margin-top: 2px; }
.cy-review .cy-stars { font-size: 14px; }

/* ---------- Quote (split form) ---------- */
.cy-quote {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: var(--cy-radius-lg);
    box-shadow: var(--cy-shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 980px) { .cy-quote { grid-template-columns: 5fr 7fr; } }

.cy-quote-side {
    background:
        radial-gradient(500px 300px at 110% 110%, rgba(241, 91, 41, 0.35), transparent 60%),
        var(--cy-ink);
    color: #fff;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: relative;
    overflow: hidden;
}
.cy-quote-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1.5px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}
.cy-quote-side > * { position: relative; }
.cy-quote-side h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}
.cy-quote-side h3 em { font-style: normal; color: var(--cy-orange); }
.cy-quote-side .sub { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.7; margin: 0; }
.cy-quote-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cy-quote-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.cy-quote-points .material-symbols-outlined { font-size: 20px; color: var(--cy-orange); flex-shrink: 0; margin-top: 1px; }
.cy-quote-call {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 16px 18px;
    text-decoration: none;
    color: #fff;
    transition: background .25s;
}
.cy-quote-call:hover { background: rgba(255,255,255,0.13); }
.cy-quote-call .ic {
    width: 44px; height: 44px;
    border-radius: 13px;
    background: var(--cy-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cy-quote-call .t1 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 700; }
.cy-quote-call .t2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; }

.cy-quote-form { padding: 44px 38px; }
.cy-form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .cy-form-grid { grid-template-columns: 1fr 1fr; } }
.cy-form-grid .full { grid-column: 1 / -1; }
.cy-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--cy-ink-2);
    margin-bottom: 8px;
}
.cy-field label .req { color: var(--cy-orange); }
.cy-field input,
.cy-field select,
.cy-field textarea {
    width: 100%;
    border: 1.5px solid var(--cy-line);
    border-radius: 13px;
    background: #fcfbf9;
    padding: 13px 16px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--cy-ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.cy-field textarea { resize: vertical; min-height: 88px; }
.cy-field input:focus,
.cy-field select:focus,
.cy-field textarea:focus {
    border-color: var(--cy-orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(241, 91, 41, 0.12);
}
.cy-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    background: linear-gradient(92deg, var(--cy-orange), #f97a2e);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 16.5px;
    letter-spacing: 0.01em;
    border-radius: 15px;
    padding: 17px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--cy-shadow-orange);
    transition: transform .25s, box-shadow .25s, filter .25s;
}
.cy-submit:hover { transform: translateY(-2px); filter: brightness(1.05); }
.cy-submit .material-symbols-outlined { font-size: 21px; }
.cy-form-foot {
    margin-top: 14px;
    text-align: center;
    font-size: 12.5px;
    color: var(--cy-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.cy-form-foot .material-symbols-outlined { font-size: 16px; color: #1fa855; }

/* ---------- FAQ ---------- */
.cy-faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.cy-faq details {
    background: var(--cy-card);
    border: 1px solid var(--cy-line);
    border-radius: 18px;
    box-shadow: var(--cy-shadow-sm);
    overflow: hidden;
    transition: border-color .25s;
}
.cy-faq details[open] { border-color: rgba(241, 91, 41, 0.4); }
.cy-faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--cy-ink);
}
.cy-faq summary::-webkit-details-marker { display: none; }
.cy-faq summary .material-symbols-outlined {
    color: var(--cy-orange);
    flex-shrink: 0;
    transition: transform .3s;
}
.cy-faq details[open] summary .material-symbols-outlined { transform: rotate(180deg); }
.cy-faq details p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--cy-muted);
    font-size: 14.5px;
    line-height: 1.75;
}

/* ---------- Final CTA ---------- */
.cy-cta {
    position: relative;
    border-radius: var(--cy-radius-lg);
    overflow: hidden;
    background: var(--cy-ink);
    padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 80px);
    text-align: center;
    box-shadow: var(--cy-shadow-md);
}
.cy-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    mix-blend-mode: luminosity;
}
.cy-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 340px at 50% 120%, rgba(241, 91, 41, 0.4), transparent 65%);
    pointer-events: none;
}
.cy-cta > * { position: relative; }
.cy-cta .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.cy-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: #fff;
    margin: 0 0 18px;
}
.cy-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
    max-width: 54ch;
    margin: 0 auto 34px;
}
.cy-cta .row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Sticky mobile action bar ---------- */
.cy-mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 1px;
    background: var(--cy-line);
    border-top: 1px solid var(--cy-line);
    box-shadow: 0 -10px 30px rgba(17, 19, 24, 0.14);
}
.cy-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 8px calc(15px + env(safe-area-inset-bottom, 0px));
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: #fff;
    color: var(--cy-ink);
}
.cy-mobile-bar a .material-symbols-outlined { font-size: 20px; }
.cy-mobile-bar .bar-call { color: var(--cy-ink); }
.cy-mobile-bar .bar-wa { color: #1fa855; }
.cy-mobile-bar .bar-quote { background: var(--cy-orange); color: #fff; }
@media (min-width: 1024px) { .cy-mobile-bar { display: none; } }

/* Compensate for sticky bar on mobile */
@media (max-width: 1023.5px) {
    body.cy-has-bar .actions-floating { bottom: 88px; }
    .cy-has-bar .footer { padding-bottom: 84px; }
}

/* ---------- Reveal animation compatibility ---------- */
.cy-page .reveal-up,
.cy-page .reveal-left,
.cy-page .reveal-right { will-change: transform, opacity; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .cy-float-card { animation: none; }
    .cy-hero-badge .dot { animation: none; }
    .cy-card, .cy-step, .cy-review, .cy-btn { transition: none; }
}
