* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #12294A;
  --navy-2: #1B3A63;
  --gold: #C6A15B;
  --gold-light: #EFE0C0;
  --charcoal: #22242A;
  --gray: #5B6472;
  --light-gray: #F3F0E9;
  --white: #FFFFFF;
  --green: #1E7B4D;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: 'Archivo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--charcoal); background: var(--white); }
h1, h2, h3, .logo-name { font-family: var(--serif); }

a { color: inherit; }
img { max-width: 100%; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-bar { width: 3px; height: 34px; background: var(--gold); flex-shrink: 0; }
.logo-texts { display: flex; flex-direction: column; line-height: 1.05; gap: 3px; }
.logo-name { font-size: 1.5rem; font-weight: 600; color: var(--navy); letter-spacing: .01em; }
.logo-sub  { font-size: 0.6rem; font-weight: 500; color: var(--gold); letter-spacing: .32em; text-transform: uppercase; }

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 500; font-size: 0.92rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-btn {
  background: var(--light-gray); border: 1.5px solid #DDD; border-radius: 8px;
  padding: 6px 14px; font-size: 0.82rem; font-weight: 700; cursor: pointer;
  color: var(--charcoal); transition: background .2s, border-color .2s; letter-spacing: 1px;
}
.lang-btn:hover { background: var(--gold-light); border-color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.88rem !important;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,162,39,.45); }

/* ── HERO ── */
.hero {
  margin-top: 76px; min-height: calc(100vh - 76px);
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 55%);
  display: flex; align-items: center; padding: 60px 5%;
  position: relative; overflow: hidden; gap: 40px;
}
.hero::before {
  content: ''; position: absolute; top: -140px; right: -100px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(201,162,39,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 600px; z-index: 1; flex-shrink: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1.5px solid var(--gold);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; color: #7B5800; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 900; line-height: 1.18; color: var(--navy); margin-bottom: 18px; }
.hero h1 .highlight { color: var(--gold); position: relative; }
.hero p { font-size: 1.05rem; color: var(--gray); line-height: 1.7; margin-bottom: 34px; max-width: 520px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy); color: var(--white);
  padding: 13px 30px; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(11,31,58,.3); }

.btn-secondary {
  background: transparent; color: var(--navy);
  padding: 13px 30px; border-radius: 10px; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: 2px solid #DDD;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); background: var(--gold-light); }

.hero-illustration { flex: 1; display: flex; justify-content: center; align-items: center; z-index: 1; }
.hero-svg-wrap { position: relative; width: 400px; height: 400px; }

.pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 280px; height: 280px; border-radius: 50%;
  border: 2px solid rgba(201,162,39,.3); animation: pulse 2.5s ease-out infinite;
}
.pulse-ring:nth-child(2) { animation-delay: .8s; }
.pulse-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes pulse { 0% { transform: translate(-50%,-50%) scale(.6); opacity: .8; } 100% { transform: translate(-50%,-50%) scale(1.4); opacity: 0; } }

.main-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 150px; height: 150px; background: var(--white); border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 8px var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.float-card {
  position: absolute; background: var(--white); border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1); display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 700; color: var(--navy); animation: floatY 3.5s ease-in-out infinite;
}
.float-card .ic { font-size: 1.3rem; }
.card-1 { top: 36px; left: 14px; animation-delay: 0s; }
.card-2 { top: 36px; right: 4px;  animation-delay: 1s; }
.card-3 { bottom: 54px; left: 4px; animation-delay: .5s; }
.card-4 { bottom: 54px; right: 4px; animation-delay: 1.5s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── STATS ── */
.stats {
  background: var(--navy); padding: 48px 5%;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 28px; text-align: center;
}
.stat-number { font-size: 2.4rem; font-weight: 900; color: var(--gold); display: block; }
.stat-label  { font-size: 0.88rem; color: #B8C2D6; margin-top: 4px; }

/* ── SECTIONS SHARED ── */
section { padding: 80px 5%; }
.section-tag {
  display: inline-block; background: var(--gold-light); color: #7B5800;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.section-sub   { font-size: 0.98rem; color: var(--gray); max-width: 600px; line-height: 1.7; margin-bottom: 44px; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── PROBLEM / SOLUTION ── */
#problem { background: var(--light-gray); }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ps-card { background: var(--white); border-radius: 18px; padding: 32px; box-shadow: 0 10px 34px rgba(0,0,0,.06); }
.ps-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ps-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ps-card li { font-size: .92rem; color: var(--gray); line-height: 1.6; display: flex; gap: 10px; align-items: flex-start; }

/* ── SERVICES ── */
#services, .services-page-grid { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1.5px solid #EEE; border-radius: 16px; padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 18px 44px rgba(0,0,0,.09); border-color: var(--gold); }
.service-icon { width: 56px; height: 56px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 0.88rem; color: var(--gray); line-height: 1.62; margin-bottom: 16px; }
.service-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 3px 11px; border-radius: 50px; }

/* Services detail page */
.service-detail { border: 1.5px solid #EEE; border-radius: 20px; padding: 36px; margin-bottom: 28px; display: grid; grid-template-columns: 80px 1fr; gap: 24px; }
.service-detail .service-icon { width: 64px; height: 64px; font-size: 2rem; }
.service-detail h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-detail p.desc { font-size: .95rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-detail-box { background: var(--light-gray); border-radius: 12px; padding: 16px 18px; }
.service-detail-box h5 { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); margin-bottom: 8px; }
.service-detail-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-detail-box li { font-size: .86rem; color: var(--gray); }

/* ── WHY US ── */
#why { background: var(--light-gray); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num { width: 42px; height: 42px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.05rem; color: var(--navy); flex-shrink: 0; }
.why-text h4 { font-size: .97rem; font-weight: 700; margin-bottom: 4px; }
.why-text p  { font-size: .88rem; color: var(--gray); line-height: 1.6; }
.why-visual { display: flex; justify-content: center; }
.circuit-bg { width: 320px; height: 320px; background: var(--white); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.circuit-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(11,31,58,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.06) 1px, transparent 1px); background-size: 28px 28px; }
.circuit-center { font-size: 5.5rem; z-index: 1; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.testi-card { background: var(--light-gray); border-radius: 18px; padding: 28px; }
.testi-stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; }
.testi-card p { font-size: .92rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; }
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-role { font-size: .8rem; color: var(--gray); }

/* ── FINAL CTA ── */
.final-cta { background: var(--navy); color: var(--white); text-align: center; }
.final-cta .section-title { color: var(--white); }
.final-cta .section-sub { color: #B8C2D6; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--gold); color: var(--navy); }
.final-cta .btn-primary:hover { box-shadow: 0 8px 24px rgba(201,162,39,.4); }

/* ── PRICING / BOUTIQUE ── */
#pricing { background: var(--light-gray); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; align-items: stretch; }
.price-card { background: var(--white); border: 1.5px solid #EEE; border-radius: 20px; padding: 34px 28px; display: flex; flex-direction: column; position: relative; transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.08); }
.price-card.recommended { border: 2px solid var(--gold); box-shadow: 0 18px 44px rgba(201,162,39,.18); }
.price-badge { position: absolute; top: -14px; right: 24px; background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 800; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }
.price-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.price-card .price-desc { font-size: .85rem; color: var(--gray); margin-bottom: 18px; min-height: 40px; }
.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.price-amount span { font-size: .95rem; font-weight: 600; color: var(--gray); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 22px 0 26px; flex-grow: 1; }
.price-card li { font-size: .87rem; color: var(--charcoal); display: flex; gap: 8px; align-items: flex-start; }
.price-card li .tick { color: var(--green); font-weight: 800; }

/* ── SHOP GRID (16 services) ── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.shop-card { background: var(--white); border: 1.5px solid #EEE; border-radius: 16px; padding: 24px 22px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.shop-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(0,0,0,.08); border-color: var(--gold); }
.shop-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 10px; }
.shop-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.shop-card p { font-size: .85rem; color: var(--gray); line-height: 1.55; margin-bottom: 16px; flex-grow: 1; }
.shop-price { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.shop-price span { font-size: .78rem; font-weight: 600; color: var(--gray); }
.btn-shop { background: var(--navy); color: var(--white); text-align: center; padding: 10px; border-radius: 9px; font-size: .88rem; font-weight: 700; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.btn-shop:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(18,41,74,.3); }

/* ── CHECKOUT ── */
.order-summary { background: var(--light-gray); border-radius: 20px; padding: 30px; margin-bottom: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.order-summary h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: 8px; }
.order-service { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.order-price { font-size: 2rem; font-weight: 900; color: var(--navy); }
.order-note { display: flex; align-items: center; gap: 10px; background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: 12px; padding: 14px 18px; font-size: .87rem; color: #6B4E1E; font-weight: 600; margin-bottom: 26px; }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--light-gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mission-box { background: var(--navy); color: var(--white); border-radius: 20px; padding: 40px; }
.mission-box h3 { color: var(--gold); font-size: 1.2rem; font-weight: 800; margin-bottom: 14px; }
.mission-box p { color: #DDE4F0; line-height: 1.75; font-size: .95rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 26px; }
.team-card { text-align: center; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--gold-light); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.6rem; margin: 0 auto 14px; }
.team-name { font-weight: 800; color: var(--navy); font-size: .98rem; }
.team-role { font-size: .84rem; color: var(--gray); margin-top: 2px; }

.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.method-step { background: var(--white); border: 1.5px solid #EEE; border-radius: 16px; padding: 26px; }
.method-step .why-num { margin-bottom: 14px; }

/* ── CONTACT ── */
#contact, .contact-page { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-icon { width: 46px; height: 46px; background: var(--gold-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-text h4 { font-weight: 700; margin-bottom: 2px; font-size: .95rem; }
.info-text p  { font-size: .88rem; color: var(--gray); line-height: 1.55; }

.contact-form { background: var(--white); border: 1.5px solid #EEE; border-radius: 20px; padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px; border: 1.5px solid #DDD; border-radius: 9px;
  font-size: .93rem; font-family: inherit; color: var(--charcoal); background: var(--white);
  transition: border-color .2s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--gray); margin-bottom: 18px; }
.form-consent input { width: auto; margin-top: 3px; }
.btn-submit {
  width: 100%; background: var(--navy); color: var(--white); padding: 13px; border: none;
  border-radius: 9px; font-size: .97rem; font-weight: 700; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11,31,58,.3); }
.calendar-note { display: flex; align-items: center; gap: 10px; background: var(--gold-light); border: 1.5px solid var(--gold); border-radius: 12px; padding: 14px 18px; font-size: .87rem; color: #7B5800; font-weight: 600; margin-top: 20px; }

/* ── LEGAL PAGES ── */
.legal-page { padding-top: 110px; max-width: 860px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.legal-updated { font-size: .85rem; color: var(--gray); margin-bottom: 36px; }
.legal-page h2 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: .92rem; color: var(--gray); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.legal-page a.cookie-link { color: var(--navy); font-weight: 700; text-decoration: underline; cursor: pointer; }

/* ── FOOTER ── */
footer { background: var(--navy); color: #AAB4C4; padding: 60px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 12px; color: #8D97A8; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo .logo-bar { height: 40px; }
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-sub  { color: var(--gold); }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact span { font-size: .85rem; color: #AAB4C4; }
.footer-col h5 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: #AAB4C4; text-decoration: none; font-size: .88rem; transition: color .2s; cursor: pointer; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: .83rem; flex-wrap: wrap; gap: 10px; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px; background: var(--navy); color: var(--white);
  padding: 13px 22px; border-radius: 11px; font-size: .92rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.25); transform: translateY(100px); opacity: 0;
  transition: transform .35s, opacity .35s; z-index: 9999; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 10000;
  background: var(--white); border-top: 1px solid #E2E2E2;
  box-shadow: 0 -6px 30px rgba(0,0,0,.12); padding: 22px 5%;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; font-size: .87rem; color: var(--gray); line-height: 1.6; }
.cookie-text strong { color: var(--navy); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 10px 18px; border-radius: 9px; font-size: .85rem; font-weight: 700; cursor: pointer; border: none; transition: transform .2s; white-space: nowrap; }
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-accept { background: var(--navy); color: var(--white); }
.cookie-refuse { background: var(--light-gray); color: var(--charcoal); border: 1.5px solid #DDD; }
.cookie-customize { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }

.cookie-prefs { display: none; max-width: 1100px; margin: 18px auto 0; border-top: 1px solid #EEE; padding-top: 18px; }
.cookie-prefs.show { display: block; }
.cookie-pref-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid #F0F0F0; }
.cookie-pref-row h6 { font-size: .88rem; font-weight: 700; color: var(--navy); }
.cookie-pref-row p { font-size: .78rem; color: var(--gray); margin: 0; }
.cookie-save { margin-top: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero-buttons { justify-content: center; }
  .hero p { margin: 0 auto 34px; }
  .hero-svg-wrap { width: 300px; height: 300px; }
  .hero-svg-wrap .float-card { display: none; }
  .why-grid, .contact-wrap, .about-grid, .ps-grid { grid-template-columns: 1fr; }
  .circuit-bg { width: 260px; height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
