/* =============================================
   CAS — Commercial Accountancy Service
   Complete Redesign | Luxury Financial Aesthetic
   ============================================= */

:root {
  --navy:   #0a0f1e;
  --navy-2: #111827;
  --navy-3: #1a2540;
  --gold:   #c9a84c;
  --gold-2: #e4c97a;
  --gold-3: #f5e4b3;
  --white:  #ffffff;
  --off-white: #f4f4f0;
  --text:   #e8e9ed;
  --text-muted: #8a92a6;
  --border: rgba(201,168,76,0.15);
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.07);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══ BASE ══ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

em { font-style: italic; color: var(--gold-2); }

.gold { color: var(--gold); }


/* ══ EYEBROW ══ */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.25);
}
.btn-primary i { font-size: 12px; transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-header {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
}
.btn-header:hover { background: var(--gold-2); }

.btn-full { width: 100%; justify-content: center; }

/* ══ SCROLL REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.2s; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ══ HEADER ══ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: box-shadow 0.4s ease;
  /* NO backdrop-filter here — would trap fixed nav children in stacking context */
}

/* Blur lives on ::before so header never creates a stacking context */
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,15,30,0);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s ease;
  z-index: -1;
}

#header.scrolled::before {
  background: rgba(10,15,30,0.95);
}

#header.scrolled {
  box-shadow: 0 1px 0 var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  transition: padding 0.4s ease;
}
#header.scrolled .nav-wrap { padding: 18px 0; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.2;
  border-left: 1px solid var(--border);
  padding-left: 10px;
}

#nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

#menuBtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#menuBtn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
#menuBtn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#menuBtn.open span:nth-child(2) { opacity: 0; }
#menuBtn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(201,168,76,0.08);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(37,99,235,0.06);
  bottom: -50px; left: -80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-img-wrap {
  position: absolute;
  bottom: 0; right: 0;
  width: 78%;
  height: 82%;
  border-radius: 12px;
  overflow: hidden;
}
.hero-img-wrap img { height: 100%; }
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, transparent 50%);
}

.hero-card {
  position: absolute;
  background: rgba(17,24,39,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
  z-index: 2;
}

.card-main {
  top: 20px; left: 0;
  width: 240px;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.card-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.card-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 2px;
  animation: fillBar 2s 1s ease-out both;
}
@keyframes fillBar { from { width: 0 !important; } }
.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

.card-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}
.card-a { top: 180px; left: 0; animation: floatA 4s ease-in-out infinite; }
.card-b { bottom: 140px; left: 0; animation: floatB 4s 1s ease-in-out infinite; }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ══ TRUST STRIP ══ */
.trust-strip {
  background: rgba(201,168,76,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-items span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ══ SECTION HEADER ══ */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 70px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══ SERVICES ══ */
.services { padding: 110px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: -8px;
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i {
  font-size: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 10px;
}

.service-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 10px; }
.service-link i { font-size: 10px; }

.service-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  gap: 16px;
}
.service-cta i { font-size: 28px; }
.service-cta h3 { font-size: 22px; }

/* ══ ABOUT ══ */
.about {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 520px;
}
.about-img-wrap img { height: 100%; }

.about-badge {
  position: absolute;
  top: 40px; right: -20px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.about-years {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
}
.years-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.years-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.value i { font-size: 15px; }

/* ══ PROCESS ══ */
.process { padding: 110px 0; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: var(--transition);
}
.process-step:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.process-connector {
  width: 48px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  align-self: center;
  margin: 0 -2px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ══ TESTIMONIALS ══ */
.testimonials { padding: 110px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 36px;
  transition: var(--transition);
}
.testimonial:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.stars { color: var(--gold); font-size: 13px; margin-bottom: 20px; }
.stars i { margin-right: 2px; }

.testimonial p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══ CONTACT ══ */
.contact {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item a, .contact-item span {
  font-size: 14px;
  color: var(--text);
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 42px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
input::placeholder, textarea::placeholder {
  color: rgba(138,146,166,0.6);
}
select option { background: var(--navy-2); }
textarea { resize: vertical; }

#msg {
  margin-top: 12px;
  font-size: 14px;
  color: #4ade80;
  text-align: center;
  min-height: 20px;
}

/* ══ FOOTER ══ */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col p i { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ══ MOBILE ══ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-years { left: 10px; }
  .about-badge { right: 10px; }
}

@media (max-width: 768px) {
  .nav-wrap { padding: 20px 0; }
  .btn-header { display: none; }

  #nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  #nav.active { display: flex; }
  #nav .nav-link { font-size: 24px; color: var(--white); }
  #nav .nav-link::after { bottom: -6px; }

  #menuBtn { display: flex; z-index: 1001; position: relative; }

  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 340px; }
  .hero-stats { gap: 16px; }
  .hero-text h1 { font-size: 38px; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { height: 340px; }
  .about-years { bottom: 20px; left: 20px; }
  .about-badge { top: 20px; right: 20px; }
  .about-values { grid-template-columns: 1fr; }

  .process-steps { flex-direction: column; gap: 24px; }
  .process-connector {
    width: 1px; height: 30px;
    background: linear-gradient(to bottom, var(--border), var(--gold), var(--border));
    margin: -14px auto;
  }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

  .trust-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-visual { height: 280px; }
  .card-main { width: 200px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
/* ══ COOKIE CONSENT ══ */
#cookieBanner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  max-width: 640px;
  width: 92%;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  font-size: 13px;
  color: var(--text-muted);
  transition: opacity 0.4s ease;
}
#cookieBanner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookieDecline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
#cookieDecline:hover { border-color: rgba(255,255,255,0.35); color: var(--text); }
#cookieBanner .btn-primary { padding: 8px 16px; font-size: 13px; }

/* ══ FOOTER LEGAL LINKS ══ */
.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }