/* ============================================================
   CYANIC TECHNOLOGIES — Complete Design System
   Inspired by: Deloitte · Accenture · PwC · Infosys
   All page styles consolidated here — no inline CSS in views
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=Figtree:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
    --white:        #ffffff;
    --off-white:    #f7f8fa;
    --surface:      #f0f2f5;
    --ink:          #0a0c10;
    --ink-mid:      #2a2d36;
    --ink-light:    #5a6070;
    --ink-faint:    #9198a8;
    --border:       #e2e5ea;
    --border-dark:  #c8cdd6;

    --accent:       #0066cc;
    --accent-light: #e8f0fb;
    --accent-mid:   #0052a3;
    --accent-glow:  rgba(0, 102, 204, 0.12);

    --teal:         #00a896;
    --teal-light:   #e0f5f3;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Figtree', system-ui, sans-serif;

    --nav-h:        72px;
    --radius-xs:    4px;
    --radius-sm:    8px;
    --radius-md:    12px;
    --radius-lg:    20px;

    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast:       0.18s;
    --t-med:        0.32s;
    --t-slow:       0.55s;

    --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-xl:    0 24px 64px rgba(0,0,0,0.12);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.1;
    color: var(--ink);
    font-weight: 700;
}

p { color: var(--ink-light); }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-mid); }
img { max-width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.cy-nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    transition: box-shadow var(--t-med) var(--ease);
}
.cy-nav.scrolled { box-shadow: var(--shadow-md); }

.cy-nav-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex; align-items: center; gap: 2rem;
}

.cy-brand {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 900;
    color: var(--ink) !important; text-decoration: none;
    letter-spacing: -0.5px; flex-shrink: 0;
}
.cy-brand em { font-style: normal; color: var(--accent); }

.cy-nav-links {
    display: flex; align-items: center;
    list-style: none; margin: 0; padding: 0; flex: 1;
}
.cy-nav-links > li { position: relative; }
.cy-nav-links > li > a {
    font-family: var(--font-body);
    font-size: 0.875rem; font-weight: 500;
    color: var(--ink-light) !important; text-decoration: none;
    padding: 0 1.1rem; height: var(--nav-h);
    display: flex; align-items: center; gap: 0.3rem;
    transition: color var(--t-fast) var(--ease);
    white-space: nowrap;
}
.cy-nav-links > li > a:hover { color: var(--ink) !important; }
.cy-nav-links > li > a i {
    font-size: 0.6rem;
    transition: transform var(--t-fast) var(--ease);
}
.cy-nav-links > li:hover > a > i { transform: rotate(180deg); }

.cy-dropdown {
    position: absolute; top: 100%; left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 0.75rem 0; min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s var(--ease);
}
.cy-nav-links > li:hover .cy-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.cy-dropdown a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem; font-weight: 400;
    color: var(--ink-mid) !important; text-decoration: none;
    transition: background var(--t-fast), color var(--t-fast);
}
.cy-dropdown a:hover { background: var(--off-white); color: var(--accent) !important; }
.cy-dropdown a i { color: var(--accent); font-size: 0.8rem; width: 14px; flex-shrink: 0; }

.cy-nav-divider { flex: 1; }

.cy-nav-cta {
    background: var(--accent);
    color: var(--white) !important; text-decoration: none;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.875rem; letter-spacing: 0.2px;
    padding: 0.6rem 1.5rem; border-radius: var(--radius-xs);
    white-space: nowrap; flex-shrink: 0;
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.cy-nav-cta:hover {
    background: var(--accent-mid); color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(0,102,204,0.3);
    transform: translateY(-1px);
}

.cy-nav-toggle {
    display: none; background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 0.5rem 0.65rem;
    color: var(--ink); font-size: 1.1rem; cursor: pointer;
    margin-left: auto;
}

.cy-mobile-nav {
    display: none; flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
}
.cy-mobile-nav.open { display: flex; }
.cy-mobile-nav-group {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--accent); padding: 1.25rem 0 0.5rem;
}
.cy-mobile-nav a {
    color: var(--ink-mid) !important;
    padding: 0.55rem 0; font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    display: block;
    transition: color var(--t-fast);
}
.cy-mobile-nav a:hover { color: var(--accent) !important; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-cy {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.9rem; letter-spacing: 0.1px;
    padding: 0.8rem 1.75rem; border-radius: var(--radius-xs);
    border: 1.5px solid transparent; cursor: pointer;
    text-decoration: none;
    transition: all var(--t-fast) var(--ease);
    white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover {
    background: var(--accent-mid); border-color: var(--accent-mid);
    color: var(--white); box-shadow: 0 4px 20px rgba(0,102,204,0.3);
    transform: translateY(-1px);
}
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover {
    background: var(--accent-light); color: var(--accent-mid);
    transform: translateY(-1px);
}
.btn-white { background: var(--white); color: var(--ink); border-color: var(--border); }
.btn-white:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
    background: transparent; color: var(--accent);
    padding: 0; border: none; font-weight: 600;
}
.btn-ghost:hover { gap: 0.75rem; }
.btn-ghost i { transition: transform var(--t-fast); }
.btn-ghost:hover i { transform: translateX(4px); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.cy-container {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.section     { padding: 6rem 0; }
.section-sm  { padding: 4rem 0; }
.section-lg  { padding: 8rem 0; }

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.25rem;
}
.label::before {
    content: '';
    display: inline-block; width: 20px; height: 2px;
    background: var(--accent); border-radius: 2px;
}

.section-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; letter-spacing: -1.5px;
    color: var(--ink); margin-bottom: 1.25rem; line-height: 1.08;
}
.section-heading em { font-style: italic; color: var(--accent); }

.section-subtext {
    font-size: 1.05rem; color: var(--ink-light);
    line-height: 1.75; max-width: 580px;
}

/* ─────────────────────────────────────────
   DIVIDERS
───────────────────────────────────────── */
.cy-rule { height: 1px; background: var(--border); }
.cy-rule-accent {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--teal), transparent);
    width: 120px; border-radius: 2px;
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.cy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2rem; height: 100%;
    transition: all var(--t-med) var(--ease);
    position: relative;
}
.cy-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.cy-card-surface { background: var(--off-white); border-color: transparent; }
.cy-card-surface:hover { background: var(--white); border-color: var(--accent); }

.cy-icon-wrap {
    width: 48px; height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.2rem;
    margin-bottom: 1.25rem; flex-shrink: 0;
}

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
    background: var(--ink);
    padding: 6rem 0 5rem;
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
    background: linear-gradient(135deg, transparent, rgba(0,102,204,0.15));
    pointer-events: none;
}
.page-hero-rule {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
}
.page-hero .label { color: var(--teal); }
.page-hero .label::before { background: var(--teal); }
.page-hero h1 { color: var(--white); }
.page-hero .section-subtext { color: rgba(255,255,255,0.65); max-width: 640px; }

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stat-number {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 900; line-height: 1;
    color: var(--accent); letter-spacing: -2px;
}
.stat-label {
    font-size: 0.85rem; color: var(--ink-faint);
    margin-top: 0.4rem; font-weight: 500;
}

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0; overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--ink-faint); margin-bottom: 2rem;
}
.marquee-track {
    display: flex; overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    mask: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-inner {
    display: flex; align-items: center;
    animation: marquee 35s linear infinite;
    flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-item {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.65rem;
    padding: 0 3.5rem; border-right: 1px solid var(--border);
    white-space: nowrap; height: 110px; flex-shrink: 0;
}
.marquee-item span {
    font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 600; color: var(--ink-faint); letter-spacing: 0.3px;
    white-space: nowrap;
}
.marquee-item img {
    display: block;
}

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--ink-mid); margin-bottom: 0.5rem; letter-spacing: 0.2px;
}
.form-control {
    width: 100%; background: var(--white);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xs);
    color: var(--ink); font-family: var(--font-body);
    font-size: 0.9rem; padding: 0.8rem 1rem; outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    -webkit-appearance: none; appearance: none;
}
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-control::placeholder { color: var(--ink-faint); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ─────────────────────────────────────────
   ACCENT BAND
───────────────────────────────────────── */
.accent-band {
    background: var(--accent); color: var(--white);
    padding: 5rem 0; position: relative; overflow: hidden;
}
.accent-band::before {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06); border-radius: 50%;
}
.accent-band h2 { color: var(--white); }
.accent-band .section-subtext { color: rgba(255,255,255,0.75); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.cy-footer { background: var(--ink); padding: 5rem 0 0; }
.cy-footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 900;
    color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px;
}
.cy-footer-brand em { font-style: normal; color: var(--accent); }
.cy-footer-tagline {
    font-size: 0.88rem; color: rgba(255,255,255,0.4);
    line-height: 1.7; max-width: 280px;
}
.cy-footer-col-title {
    font-family: var(--font-body); font-size: 0.68rem;
    font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 1.25rem;
}
.cy-footer-links { list-style: none; padding: 0; }
.cy-footer-links li { margin-bottom: 0.7rem; }
.cy-footer-links a {
    font-size: 0.88rem; color: rgba(255,255,255,0.55) !important;
    text-decoration: none; transition: color var(--t-fast);
}
.cy-footer-links a:hover { color: var(--white) !important; }
.cy-footer-bottom {
    margin-top: 4rem; padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.cy-footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }
.cy-footer-bottom a {
    color: rgba(255,255,255,0.3) !important; font-size: 0.82rem;
    transition: color var(--t-fast);
}
.cy-footer-bottom a:hover { color: rgba(255,255,255,0.7) !important; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(30px);
    animation: reveal 0.7s var(--ease) forwards;
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.5s; }
.d5 { animation-delay: 0.64s; }

/* ─────────────────────────────────────────
   HOME PAGE — HERO
───────────────────────────────────────── */
.hero {
    background: var(--ink);
    padding: 0; position: relative; overflow: hidden;
    min-height: 90vh; display: flex; flex-direction: column;
}
.hero-top-rule {
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #00a896);
    flex-shrink: 0;
}
.hero-body {
    flex: 1; display: flex; align-items: center;
    position: relative; z-index: 2; padding: 5rem 0;
}
.hero-geo {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        radial-gradient(circle at 75% 40%, rgba(0,102,204,0.14) 0%, transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(0,168,150,0.08) 0%, transparent 45%);
}
.hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 900; letter-spacing: -4px;
    line-height: 0.95; color: var(--white); margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.hero h1 .serif-light { font-weight: 300; }
.hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.55);
    line-height: 1.75; max-width: 460px; margin-bottom: 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-divider {
    width: 100%; height: 1px;
    background: rgba(255,255,255,0.08); margin-bottom: 2.5rem;
}
.hero-pillars { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-pillar { display: flex; align-items: center; gap: 0.6rem; }
.hero-pillar-line {
    width: 16px; height: 2px;
    background: var(--accent); border-radius: 2px;
}
.hero-pillar span {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem; backdrop-filter: blur(10px);
}
.hero-card-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem;
}
.hero-stat-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-name { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.hero-stat-val {
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.85);
}

/* ─────────────────────────────────────────
   HOME PAGE — SERVICES GRID
───────────────────────────────────────── */
.services { padding: 7rem 0; background: var(--white); }
.services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5px; background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden; margin-top: 4rem;
}
.service-tile {
    background: var(--white); padding: 2.5rem;
    transition: background var(--t-med);
    position: relative;
}
.service-tile::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform var(--t-med) var(--ease);
}
.service-tile:hover { background: var(--off-white); }
.service-tile:hover::before { transform: scaleX(1); }
.service-tile-number {
    font-family: var(--font-display);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
    color: var(--ink-faint); margin-bottom: 1.5rem;
}
.service-tile h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-tile p {
    font-size: 0.9rem; color: var(--ink-light);
    line-height: 1.7; margin-bottom: 1.5rem;
}
.service-tile-links { list-style: none; padding: 0; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.service-tile-links li { margin-bottom: 0.4rem; }
.service-tile-links a {
    font-size: 0.85rem; color: var(--ink-light); text-decoration: none;
    display: flex; align-items: center; gap: 0.4rem;
    transition: color var(--t-fast), gap var(--t-fast);
}
.service-tile-links a:hover { color: var(--accent); gap: 0.6rem; }
.service-tile-links a i { font-size: 0.7rem; color: var(--accent); }

/* ─────────────────────────────────────────
   HOME PAGE — INTRO STATEMENT
───────────────────────────────────────── */
.intro-section { padding: 7rem 0; background: var(--off-white); }
.intro-large-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300; line-height: 1.4;
    letter-spacing: -0.5px; color: var(--ink);
}
.intro-large-text strong { font-weight: 700; }
.intro-large-text em { font-style: italic; color: var(--accent); }

/* ─────────────────────────────────────────
   HOME PAGE — APPROACH
───────────────────────────────────────── */
.approach { padding: 7rem 0; background: var(--white); }
.approach-step {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.approach-step:last-child { border-bottom: none; }
.approach-step-num {
    font-family: var(--font-display); font-size: 1.75rem;
    font-weight: 900; color: var(--border);
    line-height: 1; flex-shrink: 0; width: 42px; letter-spacing: -1px;
}
.approach-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.approach-step p { font-size: 0.88rem; color: var(--ink-light); margin: 0; line-height: 1.7; }

/* ─────────────────────────────────────────
   HOME PAGE — CTA BAND
───────────────────────────────────────── */
.cta-band {
    background: var(--ink); padding: 7rem 0;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    background: linear-gradient(135deg, transparent, rgba(0,102,204,0.12));
}
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white); letter-spacing: -2px; margin-bottom: 1.25rem;
}
.cta-band h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.cta-band .section-subtext { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .cy-nav-links,
    .cy-nav-cta,
    .cy-nav-divider { display: none; }
    .cy-nav-toggle { display: block; }
}

@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .section { padding: 4rem 0; }
    .section-lg { padding: 5rem 0; }
    .page-hero { padding: 4rem 0 3.5rem; }
    .hero { min-height: auto; }
    .hero-body { padding: 4rem 0; }
}

@media (min-width: 576px) and (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 575px) {
    .services-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .cy-container { padding: 0 1.25rem; }
    .hero h1 { letter-spacing: -2px; }
    .cta-band { padding: 4rem 0; }
    .intro-section { padding: 4rem 0; }
    .services { padding: 4rem 0; }
    .approach { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-cy { width: 100%; justify-content: center; }
}
