/*
 * site.css — Croeso Informatics Pvt Ltd
 * Theme D: Steel Blue + Burnt Orange + Champagne Gold
 * FSD v2.0 §5 — Brand Identity & Design System
 *
 * NOTE: Colour tokens are overridden by theme-switcher.css
 * via [data-theme="a/b/c/d"] attribute on <html>.
 * The :root block below is the JS-disabled fallback (Theme D).
 * ─────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (FSD §5.2 — Theme D)
═══════════════════════════════════════════════ */
:root {
  --primary:    #1C2B3A;   /* Steel Blue    — navbar, hero, footer */
  --secondary:  #E07B39;   /* Burnt Orange  — CTAs, stats, links   */
  --accent:     #F5C04A;   /* Champagne Gold — badges, stars        */
  --mid:        #4A7A9B;   /* Slate Blue    — icons, secondary text */
  --bg:         #EFF4F9;   /* Ice White     — section backgrounds   */
  --bg-alt:     #DDE8F2;   /* Powder Blue   — alternating sections  */
  --dusk:       #162230;   /* Deep Dusk     — CTA banner bg         */
  --footer:     #0F1C28;   /* Midnight Steel — footer background    */
  --text:       #1A2B3C;   /* Charcoal      — body text             */
  --text-muted: #5A7A94;   /* Slate         — subtitles, captions   */
  --border:     #D0DDE8;   /* Cloud         — card borders, dividers*/
  --white:      #ffffff;

  /* Spacing scale — base 8px (FSD §5.4) */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 80px; --sp-8: 96px;

  /* Border radius (FSD §5.5) */
  --r-card:  16px;
  --r-btn:   8px;
  --r-pill:  100px;
  --r-img:   12px;
  --r-illus: 20px;

  /* Shadows (FSD §5.6) */
  --sh-subtle: 0 1px 3px rgba(28,43,58,.08);
  --sh-card:   0 4px 24px rgba(28,43,58,.10);
  --sh-hover:  0 12px 48px rgba(28,43,58,.18);
}

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', sans-serif; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-family: 'DM Sans', sans-serif; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.75; }
a  { text-decoration: none; transition: all .25s ease; }
img { max-width: 100%; }

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 3px; }

/* ─── PAGE LOADER ───────────────────────────────── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease;
}
#page-loader.fade-out { opacity: 0; pointer-events: none; }
.loader-logo-text { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.loader-logo-text span { color: var(--secondary); }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.15); border-radius: 2px; margin: 16px auto 0; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--secondary); border-radius: 2px; animation: loadBar 1.2s ease forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ─── SKIP LINK (FSD §13) ───────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--secondary); color: #fff;
  padding: 8px 16px; border-radius: var(--r-btn);
  z-index: 10000; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ─── UTILITY BAR ───────────────────────────────── */
#utility-bar { background: var(--primary); padding: 7px 0; font-size: 13px; }
#utility-bar a { color: rgba(255,255,255,.75); }
#utility-bar a:hover { color: #fff; }
#utility-bar i { font-size: 14px; vertical-align: -2px; }

/* ─── NAVBAR (FSD §7.1 S2) ──────────────────────── */

/*
  Navbar is always var(--primary) dark on ALL pages and ALL scroll positions.
  This ensures nav links are always visible (white text on dark bg).
  On scroll past 80px → white background + shadow (.scrolled class).
  No transparent state — the hero section is also dark so the
  navbar blends naturally at the top without needing transparency.
*/
.navbar {
  background: var(--primary) !important;
  padding: 16px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
/* Scrolled state — all pages */
.navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 20px rgba(28,43,58,.12);
  padding: 10px 0;
}
/* Nav links always white (dark navbar) */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,.85) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}
/* Scrolled → dark text */
.navbar.scrolled .nav-link { color: var(--text) !important; }
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--secondary); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: #fff !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo-svg { height: 38px; width: auto; }

.dropdown-menu {
  border: none; border-radius: var(--r-card);
  box-shadow: var(--sh-hover); padding: 8px;
  animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 9px 14px; border-radius: 8px; color: var(--text);
}
.dropdown-item:hover { background: var(--bg); color: var(--primary); }
.dropdown-item i { color: var(--secondary); margin-right: 8px; }

.btn-consult {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  background: var(--secondary); color: #fff; border: none;
  padding: 9px 22px; border-radius: var(--r-btn);
  transition: all .25s ease; white-space: nowrap; cursor: pointer;
}
/* Use filter instead of hardcoded colour so hover works on all themes */
.btn-consult:hover { filter: brightness(.88); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.navbar-toggler-icon-custom span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.navbar.scrolled .navbar-toggler-icon-custom span { background: var(--primary); }

/* Offcanvas mobile nav */
.offcanvas-nav .nav-link { color: var(--text) !important; font-size: 16px; padding: 12px 0 !important; border-bottom: 1px solid var(--border); }
.offcanvas-nav .nav-link::after { display: none; }

/* ─── SECTION HELPERS ───────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 12px; display: block;
}
.section-title { margin-bottom: 16px; color: var(--primary); }
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 0; }
.section-pad    { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }

/* ─── SCROLL ANIMATIONS (FSD §15.1) ────────────── */
.aos {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.aos.slide-left  { transform: translateX(-32px); }
.aos.slide-right { transform: translateX(32px); }
.aos.scale-in    { transform: scale(.92); }
.aos.visible     { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .aos { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-h1 .word { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-illus-float { animation: none !important; }
  .loader-bar-fill { animation: none !important; width: 100% !important; }
}

/* ─── HERO (FSD §7.1 S3) ────────────────────────── */
#hero {
  background: var(--primary);
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; border-radius: 50%;
  background: rgba(var(--secondary-rgb, 224,123,57),.07); pointer-events: none;
}
.hero-bg-shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-bg-shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: rgba(var(--mid-rgb, 74,122,155),.1); }
.hero-content { flex: 1; display: flex; align-items: center; padding-top: 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--secondary) 15%, transparent); border: 1px solid color-mix(in srgb, var(--secondary) 25%, transparent);
  color: var(--secondary); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 24px;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-h1 { color: #fff; margin-bottom: 20px; }
.hero-h1 .word { display: inline-block; opacity: 0; transform: translateY(24px); animation: wordFadeUp .55s forwards; }
.hero-h1 .accent-word { color: var(--secondary); }
/* em tag used in ASPX to avoid JS stagger breaking span tags */
.hero-h1 em.accent-word { font-style: normal; color: var(--secondary); }
@keyframes wordFadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-sub { color: rgba(255,255,255,.65); font-size: 1.1rem; line-height: 1.75; max-width: 520px; margin-bottom: 36px; animation: fadeInUp .7s .6s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeInUp .7s .8s both; }
.hero-illus-wrap { animation: fadeInUp .7s .4s both; }
.hero-illus-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.btn-primary-cta {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  background: var(--secondary); color: #fff; border: none;
  padding: 13px 28px; border-radius: var(--r-btn);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease; cursor: pointer;
}
.btn-primary-cta:hover { filter: brightness(.88); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn-outline-cta {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 13px 28px; border-radius: var(--r-btn);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease; cursor: pointer;
}
.btn-outline-cta:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

.trust-bar { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0; }
.trust-text { font-size: 13px; color: rgba(255,255,255,.5); white-space: nowrap; }
.trust-logo-pill { height: 28px; width: 80px; background: rgba(255,255,255,.1); border-radius: 6px; border: 1px solid rgba(255,255,255,.08); }

/* ─── SERVICE CARDS (FSD §7.1 S4) ──────────────── */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 24px;
  border-top: 4px solid var(--secondary);
  transition: all .3s ease; cursor: pointer; height: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); border-top-color: var(--primary); }
.service-icon-wrap {
  width: 52px; height: 52px; background: var(--bg);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: all .3s;
}
.service-card:hover .service-icon-wrap { background: var(--secondary); }
.service-card:hover .service-icon-wrap i { color: #fff; }
.service-icon-wrap i { font-size: 24px; color: var(--primary); transition: color .3s; }
.service-card h4 { margin-bottom: 10px; color: var(--primary); }
.service-card p  { font-size: 14.5px; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; }
.service-link i { transition: transform .25s; }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ─── STATS STRIP (FSD §7.1 S5) ────────────────── */
#stats-strip { background: var(--secondary); position: relative; overflow: hidden; }
.stats-wave-top, .stats-wave-bottom { position: absolute; left: 0; width: 100%; line-height: 0; }
.stats-wave-top  { top: 0; }
.stats-wave-bottom { bottom: 0; transform: rotate(180deg); }
.stat-item { text-align: center; padding: 8px 4px; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1; display: block;
}
.stat-lbl {
  font-size: clamp(11px, 1.5vw, 14px);
  color: rgba(255,255,255,.8); margin-top: 6px; font-weight: 500;
  white-space: nowrap;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.2); min-height: 48px; margin: 0 4px; }

/* ─── ABOUT SNAPSHOT (FSD §7.1 S6) ─────────────── */
.illus-container { position: relative; border-radius: var(--r-illus); overflow: visible; }
.float-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--secondary);   /* uses active theme CTA colour */
  color: #fff;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: var(--r-pill);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  white-space: nowrap; z-index: 2;
}
.tick-list { list-style: none; padding: 0; margin: 20px 0; }
.tick-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--text-muted); margin-bottom: 14px;
}
.tick-list li i { color: var(--secondary); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ─── USP GRID (FSD §7.1 S7) ────────────────────── */
#usp-grid { background: var(--bg); }
.usp-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 24px; height: 100%;
  transition: all .3s;
}
.usp-card:hover { box-shadow: var(--sh-card); transform: translateY(-4px); }
.usp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.usp-icon i { font-size: 22px; color: var(--primary); }
.usp-card h4 { color: var(--primary); margin-bottom: 8px; }
.usp-card p  { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ─── PROCESS (FSD §7.1 S8) ─────────────────────── */
.process-container { position: relative; }
.process-line {
  position: absolute; top: 36px;
  left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 2px; background: var(--border);
}
.process-line-fill { height: 100%; background: var(--secondary); width: 0; transition: width 1.5s cubic-bezier(.4,0,.2,1); }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary);
  transition: all .3s;
}
.process-step.active .step-circle {
  background: var(--secondary); border-color: var(--secondary); color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.process-step h4 { color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--text-muted); }

/* ─── TESTIMONIALS (FSD §7.1 S9) ───────────────── */
#testimonials { background: var(--primary); }
.testimonial-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card); padding: 36px 32px; position: relative;
}
.quote-mark {
  position: absolute; top: 24px; left: 28px;
  font-family: 'Sora', sans-serif; font-size: 72px; font-weight: 800;
  color: color-mix(in srgb, var(--secondary) 20%, transparent); line-height: 1; pointer-events: none;
}
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; font-style: italic; margin: 0 0 20px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--secondary); display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.author-name  { font-weight: 600; color: #fff; font-size: 15px; }
.author-role  { font-size: 13px; color: rgba(255,255,255,.5); }
.star-rating  { color: var(--accent); font-size: 13px; margin-top: 4px; }
.carousel-indicators [data-bs-target] { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; }
.carousel-indicators .active { background: var(--secondary); }

/* ─── CTA BANNER (FSD §7.1 S11) ────────────────── */
#cta-banner { background: var(--dusk); position: relative; overflow: hidden; }
.cta-bg-el { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-bg-el-1 { width: 400px; height: 400px; background: color-mix(in srgb, var(--secondary) 8%, transparent); top: -100px; right: -80px; }
.cta-bg-el-2 { width: 300px; height: 300px; background: color-mix(in srgb, var(--mid) 6%, transparent); bottom: -80px; left: -60px; }
#cta-banner h2 { color: #fff; }
#cta-banner p  { color: rgba(255,255,255,.65); }
.btn-cta-white {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  background: #fff; color: var(--primary); border: none;
  padding: 14px 32px; border-radius: var(--r-btn);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease; cursor: pointer;
}
.btn-cta-white:hover { background: var(--secondary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ─── FOOTER (FSD §7.1 S12) ─────────────────────── */
#footer { background: var(--footer); }
.footer-brand p    { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 16px; transition: all .2s;
}
.footer-social a:hover { background: var(--secondary); color: #fff; }
.footer-heading { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 20px; }
.footer-links a { display: block; color: rgba(255,255,255,.45); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact p  { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 8px; display: flex; gap: 10px; }
.footer-contact i  { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-divider    { border-color: rgba(255,255,255,.08); }
.footer-copy       { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-copy a     { color: rgba(255,255,255,.3); }
.footer-copy a:hover { color: var(--secondary); }

/* ─── PAGE HERO (inner pages) ───────────────────── */
.page-hero { background: var(--primary); padding: 120px 0 64px; position: relative; overflow: hidden; }
.page-hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }
.page-hero h1    { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .lead { color: rgba(255,255,255,.65); }
nav[aria-label="breadcrumb"] .breadcrumb-item a            { color: rgba(255,255,255,.5); }
nav[aria-label="breadcrumb"] .breadcrumb-item.active       { color: rgba(255,255,255,.7); }
nav[aria-label="breadcrumb"] .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── TIMELINE ───────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot  { position: absolute; left: -39px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--secondary); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--secondary); }
.tl-year { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: var(--secondary); margin-bottom: 4px; }
.tl-text { font-size: 15px; color: var(--text-muted); }

/* ─── VALUE CARD ─────────────────────────────────── */
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 24px;
  border-left: 4px solid var(--secondary);
  border-top-left-radius: 0; border-bottom-left-radius: 0; height: 100%;
}
.value-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.value-card p  { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ─── TEAM CARD ──────────────────────────────────── */
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 28px 20px; text-align: center;
  transition: all .3s; height: 100%;
}
.team-card:hover { box-shadow: var(--sh-card); transform: translateY(-4px); }
.team-photo {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-alt); margin: 0 auto 16px;
  overflow: hidden ;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--primary);
  border: 3px solid var(--border);
}

.team-name     { font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.team-role     { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.team-linkedin { color: var(--secondary); font-size: 20px; }
.team-linkedin:hover { color: var(--primary); }

/* ─── FAQ ACCORDION ──────────────────────────────── */
.accordion-item { border: 1px solid var(--border); border-radius: var(--r-card) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px; color: var(--primary); background: var(--white); padding: 18px 24px; }
.accordion-button:not(.collapsed) { color: var(--secondary); background: var(--bg); box-shadow: none; }
.accordion-body { font-size: 15px; color: var(--text-muted); line-height: 1.75; padding: 16px 24px 20px; }

/* ─── CONTACT FORM (FSD §7.6) ───────────────────── */
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 40px 36px; box-shadow: var(--sh-card);
}
.form-label  { font-weight: 600; font-size: 14px; color: var(--primary); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: var(--r-btn);
  padding: 11px 16px; font-size: 15px; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondary) 12%, transparent);
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--secondary); color: #fff; border: none;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 32px; border-radius: var(--r-btn); width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .25s; cursor: pointer;
}
.btn-submit:hover { filter: brightness(.88); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.22); }

.contact-info-card { background: var(--bg); border-radius: var(--r-card); padding: 28px 24px; height: 100%; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon i { color: #fff; font-size: 18px; }
.contact-item-label { font-size: 12px; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-item-value { font-size: 15px; color: var(--text); line-height: 1.5; }
.map-embed { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--border); }
.btn-linkedin {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--secondary); color: var(--secondary);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--r-btn); width: 100%;
  transition: all .25s; cursor: pointer;
}
.btn-linkedin:hover { background: var(--secondary); color: #fff; }

/* ─── COMPARISON TABLE ───────────────────────────── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th { background: var(--primary); color: #fff; padding: 14px 20px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px; }
.compare-table th:first-child  { border-radius: 10px 0 0 0; }
.compare-table th:last-child   { border-radius: 0 10px 0 0; }
.compare-table td { padding: 13px 20px; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.check-yes { color: var(--secondary); font-weight: 600; }
.check-no  { color: #9AACBB; }

/* ─── SERVICE CHECKLIST ──────────────────────────── */
.service-checklist { list-style: none; padding: 0; margin: 0; }
.service-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.service-checklist li:last-child { border-bottom: none; }
.service-checklist li i { color: var(--secondary); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ─── BENEFIT CARD ───────────────────────────────── */
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 28px 24px; text-align: center; height: 100%; transition: all .3s; }
.benefit-card:hover { box-shadow: var(--sh-card); transform: translateY(-4px); }
.benefit-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--bg); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.benefit-icon i { font-size: 26px; color: var(--secondary); }
.benefit-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.benefit-card p  { font-size: 14.5px; color: var(--text-muted); margin: 0; }

/* ─── DIFFERENTIATOR ROW (Why Croeso) ───────────── */
.diff-row { display: flex; gap: 24px; align-items: flex-start; padding: 32px 0; border-bottom: 1px solid var(--border); }
.diff-row:last-child { border-bottom: none; }
.diff-icon-wrap { width: 60px; height: 60px; border-radius: 16px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.diff-icon-wrap i { font-size: 26px; color: var(--primary); }
.diff-content h3 { color: var(--primary); margin-bottom: 10px; }
.diff-content p  { color: var(--text-muted); font-size: 15.5px; margin: 0; }

/* ─── RELATED SERVICES ───────────────────────────── */
.related-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card); padding: 24px; height: 100%; transition: all .3s; display: flex; align-items: center; gap: 16px; }
.related-card:hover { box-shadow: var(--sh-card); transform: translateY(-3px); }
.related-card i  { font-size: 28px; color: var(--secondary); flex-shrink: 0; }
.related-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
.related-card p  { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ─── COOKIE BANNER (FSD §2.2) ───────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000;
  background: var(--primary); border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0; transform: translateY(100%); transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 14px; color: rgba(255,255,255,.75); margin: 0; }
.btn-cookie-accept {
  background: var(--secondary); color: #fff; border: none;
  padding: 8px 20px; border-radius: var(--r-btn); font-weight: 600; font-size: 14px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-cookie-accept:hover { filter: brightness(.88); }

/* ─── ERROR PAGES ────────────────────────────────── */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--primary); }
.error-code  { font-family: 'Sora', sans-serif; font-size: 8rem; font-weight: 800; color: rgba(255,255,255,.08); line-height: 1; }
.error-msg   { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; margin-top: -40px; }
.error-sub   { color: rgba(255,255,255,.6); margin: 16px 0 32px; }

/* ─── RESPONSIVE (FSD §14) ───────────────────────── */
@media (max-width: 991px) {
  .process-line { display: none; }
  .process-step { margin-bottom: 32px; }
  .hero-illus-wrap { display: none; }
  .diff-row { flex-direction: column; gap: 16px; }
  .stats-wave-top, .stats-wave-bottom { display: none; }
}
@media (max-width: 767px) {
  #utility-bar .utility-phone { display: none; }
  .contact-form-card { padding: 28px 20px; }
  .stat-divider { display: none; }
  .testimonial-card { padding: 24px 20px; }
}
@media (max-width: 575px) {
  h1 { font-size: 2rem; }
  .hero-ctas .btn-outline-cta { display: none; }
  .section-pad { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════
   THEME-AWARE SVG ILLUSTRATION COLOURS
   All inline SVGs use these CSS classes so
   fill/stroke update instantly when data-theme
   changes. No hardcoded hex in SVG elements.
═══════════════════════════════════════════════ */

/* Structural / dark background elements */
.svg-dark-1    { fill: var(--primary); }
.svg-dark-2    { fill: color-mix(in srgb, var(--primary) 70%, #000 30%); }
.svg-dark-3    { fill: color-mix(in srgb, var(--primary) 85%, #000 15%); }

/* Accent / CTA colour elements */
.svg-accent         { fill: var(--secondary); }
.svg-accent-50      { fill: var(--secondary); opacity: .5; }
.svg-accent-30      { fill: var(--secondary); opacity: .3; }
.svg-accent-15      { fill: var(--secondary); opacity: .15; }
.svg-stroke-accent  { fill: none; stroke: var(--secondary); }
.svg-stroke-accent-30 { fill: none; stroke: var(--secondary); opacity: .3; }

/* Gold / highlight elements */
.svg-gold       { fill: var(--accent); }
.svg-gold-50    { fill: var(--accent); opacity: .5; }

/* Mid-tone elements (person bodies, clothing) */
.svg-mid        { fill: var(--mid); }
.svg-mid-70     { fill: var(--mid); opacity: .7; }
.svg-mid-30     { fill: var(--mid); opacity: .3; }

/* Background section fills inside SVG */
.svg-bg         { fill: var(--bg); }
.svg-bg-alt     { fill: var(--bg-alt); }

/* Card/document white fills */
.svg-card       { fill: #fff; stroke: var(--border); }

/* Text inside SVG labels */
.svg-label-accent { fill: var(--secondary); }
.svg-label-mid    { fill: var(--mid); }
.svg-label-gold   { fill: var(--accent); }
.svg-label-white  { fill: #fff; }
.svg-label-white-50 { fill: rgba(255,255,255,.5); }
.svg-label-white-85 { fill: rgba(255,255,255,.85); }

/* Skin tones — theme-neutral */
.svg-skin-1    { fill: #E8C4A0; }
.svg-skin-2    { fill: #C4956A; }
.svg-skin-3    { fill: #A67C52; }

/* Person body shadows/bases */
.svg-person    { fill: color-mix(in srgb, var(--primary) 60%, var(--mid) 40%); }

/* Badge fill */
.svg-badge     { fill: var(--secondary); }
.svg-badge-gold { fill: var(--accent); }

/* Dot/decorative backgrounds */
.svg-dot-accent { fill: none; stroke: var(--secondary); }
.svg-dot-gold   { fill: none; stroke: var(--accent); }
.svg-dot-mid    { fill: none; stroke: var(--mid); }

