@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #141f3d;
  --panel: #1a2a52;
  --panel-2: #21325b;
  --ink: #fbfdff;
  --muted: #dde6f3;
  --teal: #33d1e6;
  --teal-bright: #75ecff;
  --orange: #ffc678;
  --line: rgba(148, 163, 184, 0.22);
  --shadow: 0 12px 30px rgba(5, 10, 25, 0.35);
  --accent: #9af4ff;
  --accent-2: #ffe6b8;
  --glass: rgba(20, 30, 55, 0.68);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -10%, rgba(255, 210, 126, 0.32), transparent 52%),
    radial-gradient(circle at 100% 8%, rgba(118, 240, 255, 0.28), transparent 48%),
    var(--bg);
}

body.design-2 {
  background:
    radial-gradient(circle at 10% 10%, rgba(77, 211, 230, 0.22), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(255, 208, 137, 0.22), transparent 45%),
    #0c1528;
}
body.design-3 {
  background:
    radial-gradient(circle at 20% -10%, rgba(255, 196, 96, 0.18), transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(127, 233, 255, 0.18), transparent 40%),
    #0b1222;
}
body.design-4 {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 180, 84, 0.2), transparent 45%),
    radial-gradient(circle at 100% 15%, rgba(93, 196, 210, 0.18), transparent 40%),
    #0a1324;
}

.hero-centered {
  text-align: center;
}
.hero-centered .lead { margin: 0 auto; }
.hero-centered .hero-actions { justify-content: center; }
.logo-strip {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-strip span {
  border: 1px solid rgba(110, 231, 255, 0.18);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(12, 18, 34, 0.8);
}

.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(rgba(123, 201, 220, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 201, 220, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.container { width: min(1200px, 93vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(10px);
  background: rgba(12, 18, 34, 0.88);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.7rem 0;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.brand-text { font-size: 1.2rem; font-weight: 800; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.85);
  color: var(--ink);
  padding: 0.45rem 0.6rem;
  border-radius: 0.6rem;
  font-weight: 700;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0;
  border-radius: 999px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.nav-close {
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.85);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 0.8rem;
  cursor: pointer;
}

.main-nav ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; gap: 0.2rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
.main-nav li { position: relative; }
.main-nav a {
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.94rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 0.62rem; border-radius: 0.6rem;
}
.main-nav a:hover { background: rgba(93, 196, 210, 0.16); }
.has-mega > a { position: relative; }

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  width: min(760px, 90vw);
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(10, 16, 30, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.85rem;
  padding: 0.8rem;
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.8rem;
}

.mega-menu.small {
  width: min(620px, 90vw);
  grid-template-columns: 1.2fr 1fr;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu { display: grid; }

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(12, 18, 34, 0.92);
  border: 1px solid rgba(93, 196, 210, 0.18);
  border-radius: 0.65rem;
  padding: 0.65rem;
}
.mega-col h4 { margin: 0 0 0.3rem; color: var(--orange); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; }
.mega-col a { padding: 0.35rem 0.4rem; border-radius: 0.45rem; color: var(--muted); }
.mega-col a:hover { background: rgba(243, 146, 0, 0.15); color: var(--ink); }
.mega-col.visual img { width: 100%; border-radius: 0.6rem; border: 1px solid var(--line); }

.touch-btn {
  color: #111;
  text-decoration: none;
  font-weight: 800;
  padding: 0.62rem 0.9rem;
  border-radius: 0.62rem;
  background: linear-gradient(135deg, var(--orange), #ffe0a1);
  display: inline-flex; align-items: center; gap: 0.45rem;
  box-shadow: 0 10px 24px rgba(255, 190, 102, 0.3);
}
.hero { padding: 4.3rem 0 2.2rem; }
.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange); font-weight: 800; font-size: 0.75rem; }
h1 { margin: 0.55rem 0 0.8rem; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.05; max-width: 17ch; font-family: "Playfair Display", "Manrope", serif; }
.lead { color: var(--muted); max-width: 70ch; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-media {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(12, 18, 34, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img,
.hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner {
  position: relative;
  margin-top: 1.5rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-banner img,
.hero-banner video { width: 100%; height: 320px; object-fit: cover; display: block; }
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.35));
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}
.hero-banner__copy {
  background: var(--glass);
  border: 1px solid rgba(110, 231, 255, 0.2);
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  max-width: 560px;
}

.section { padding: 1.5rem 0 2.2rem; }
h2 { margin: 0 0 1rem; font-size: clamp(1.4rem, 2.8vw, 2.2rem); }
.section-head { margin-bottom: 1.2rem; }
.section-head .eyebrow { margin-bottom: 0.35rem; }
.section-head .lead { margin-top: 0.4rem; }

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.welcome-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(9, 15, 28, 0.98));
  box-shadow: 0 12px 28px rgba(2, 6, 16, 0.38);
  padding: 1.2rem;
}
.welcome-card h3 { margin-top: 0; }
.feature-list { list-style: none; margin: 0.6rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.feature-list li { padding: 0.6rem 0.75rem; border-radius: 0.7rem; border: 1px solid rgba(110, 231, 255, 0.16); background: rgba(12, 18, 34, 0.8); display: flex; gap: 0.6rem; align-items: flex-start; }
.feature-icon {
  width: 48px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 208, 132, 0.18);
  color: var(--accent-2);
  font-weight: 700;
  flex: 0 0 auto;
  font-size: 0.62rem;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.testimonial-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(9, 15, 28, 0.98));
  padding: 1.1rem;
  box-shadow: 0 12px 28px rgba(2, 6, 16, 0.38);
}
.testimonial-card .quote { font-size: 1.02rem; color: var(--muted); margin: 0 0 0.8rem; }
.testimonial-card .person { margin: 0; font-weight: 800; }

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.mini-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 24px rgba(2, 6, 16, 0.35);
}

.cat-grid, .service-grid, .img-cards {
  display: grid;
  gap: 0.8rem;
}
.cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid { list-style: none; margin: 0; padding: 0; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.img-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.cat-card, .image-card, .faq-item, .contact-box, .service-grid li a, .info-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(9, 15, 28, 0.98));
  box-shadow: 0 10px 26px rgba(2, 6, 16, 0.4);
}

.cat-card { padding: 1rem; }
.cat-card h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.cat-card h3 a { color: var(--ink); text-decoration: none; }
.cat-card p { margin: 0.3rem 0 0; color: var(--muted); }

.service-grid li a {
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 0.85rem 0.95rem;
  min-height: 64px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.85rem;
  background: rgba(12, 18, 34, 0.85);
  box-shadow: 0 10px 26px rgba(2, 6, 16, 0.36);
}
.service-grid li a:hover { border-color: rgba(243, 146, 0, 0.75); }

.image-card { overflow: hidden; }
.image-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.image-card .txt { padding: 0.8rem; }
.image-card h3 { margin: 0 0 0.35rem; }
.image-card p { margin: 0; color: var(--muted); }
.image-card .touch-btn { margin-top: 0.7rem; }

.breadcrumb { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.75rem; }
.breadcrumb a { color: var(--teal-bright); text-decoration: none; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.info-card { padding: 1rem; }
.info-card h3 { margin-top: 0; }
.info-card ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.detail-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow);
}
.detail-card h3 { margin-top: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}
.process-step {
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: 0.9rem;
  padding: 0.9rem;
  background: rgba(17, 24, 39, 0.95);
}
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 190, 85, 0.18);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.pill-list span {
  border: 1px solid rgba(110, 231, 255, 0.3);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent);
}
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.check-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 800;
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.faq-item { padding: 0.9rem; }
.faq-item h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.faq-item p { margin: 0; color: var(--muted); }
.faq-item .touch-btn { margin-top: 0.6rem; }

.longform {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.95), rgba(8, 14, 28, 0.98));
  box-shadow: 0 12px 30px rgba(2, 6, 16, 0.45);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.longform h2 { grid-column: 1 / -1; margin-top: 0; }
.longform p { margin: 0; color: var(--muted); }

.contact-box { padding: 1.1rem; }
.site-footer { border-top: 1px solid var(--line); margin-top: 1.2rem; padding: 1rem 0; }
.footer-wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; }
.footer-wrap p, .footer-wrap a { margin: 0; color: var(--muted); text-decoration: none; }
.footer-social { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-links a {
  border: 1px solid rgba(110, 231, 255, 0.25);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  background: rgba(17, 24, 39, 0.7);
}
.social-links a:hover { background: rgba(110, 231, 255, 0.1); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .main-nav { width: 100%; }
  .main-nav ul { justify-content: flex-start; }
  .touch-btn { justify-self: end; }
  .mega-menu { position: static; width: 100%; margin-top: 0.4rem; }
}
@media (max-width: 1200px) {
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
  }
  .brand { order: 1; }
  .nav-toggle { order: 2; margin-left: auto; }
  .touch-btn { order: 3; margin-left: 0; }
  .main-nav { order: 4; width: 100%; }
  .hero-grid, .cat-grid, .service-grid, .img-cards, .faq-grid, .info-grid, .detail-grid, .process-grid, .split, .welcome-grid, .testimonial-grid, .mini-gallery { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .hero-banner img,
  .hero-banner video { height: 240px; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav li { width: 100%; }
  .main-nav a { width: 100%; justify-content: space-between; }
  .has-mega > a::after {
    content: "+";
    font-weight: 800;
    margin-left: auto;
    color: var(--accent-2);
  }
  .has-mega.submenu-open > a::after { content: "−"; }
  .has-mega.submenu-open > a { background: rgba(255, 190, 85, 0.12); }
  .mega-menu { display: none; width: 100%; }
  .has-mega.submenu-open .mega-menu { display: grid; }
  .mega-menu { grid-template-columns: 1fr; }
  .longform { grid-template-columns: 1fr; }
  .hero-media video { min-height: 220px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-close { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82vw, 360px);
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    border-left: 1px solid var(--line);
    padding: 1rem;
    display: block;
    transition: right 0.28s ease;
    z-index: 100;
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav { right: 0; }
  .site-header.nav-open + .nav-overlay,
  body.menu-open .nav-overlay,
  .site-header.nav-open ~ .nav-overlay { opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
  .nav-wrap > .touch-btn { width: auto; text-align: center; }
  .mega-col.visual img { height: auto; max-height: 160px; object-fit: cover; }
  .mega-col.visual .touch-btn { width: 100%; justify-content: center; }
}


/* Enhanced footer */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 16, 30, 0.98), rgba(8, 14, 26, 0.98));
  border-top: 1px solid var(--line);
}
.site-footer .touch-btn { color: #0b1324; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 1.2rem;
  padding: 2.2rem 0 1.2rem;
}
.footer-brand img { width: 56px; height: 56px; border-radius: 14px; box-shadow: var(--shadow); }
.footer-brand p { color: var(--muted); }
.footer-col h4 {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent-2);
}
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--ink); }
.footer-contact p { margin: 0 0 0.35rem; color: var(--muted); }
.footer-newsletter {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.6rem;
}
.footer-newsletter input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(110, 231, 255, 0.22);
  background: rgba(9, 15, 28, 0.9);
  color: var(--ink);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--muted);
}

/* Enhanced forms */
.enquiry-form {
  border: 1px solid rgba(110, 231, 255, 0.2);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.95), rgba(8, 14, 28, 0.98));
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(2, 6, 16, 0.45);
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(110, 231, 255, 0.25);
  background: rgba(9, 15, 28, 0.9);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(110, 231, 255, 0.2);
}
.enquiry-form ::placeholder { color: rgba(164, 202, 212, 0.75); }
.enquiry-form button.touch-btn { margin-top: 0.6rem; }
.form-grid { gap: 0.8rem; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr; }
}


.map-embed .map-wrap { border-radius: 1rem; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 420px; display: block; }



.split.alt { grid-template-columns: 0.9fr 1.1fr; }
.media-card { border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); background: var(--panel); }
.media-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.icon-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.8rem; }
.icon-grid .detail-card { padding: 1.1rem; }
.timeline { display: grid; gap: 0.8rem; }
.timeline .process-step { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.8rem; }
.stat-card { padding: 1rem; border: 1px solid var(--line); border-radius: 0.9rem; background: var(--panel); }
.quote-card { padding: 1.1rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(15,23,42,0.7); }
@media (max-width: 980px) { .icon-grid, .stat-grid { grid-template-columns: 1fr; } }

.service-page .section { padding: 1rem 0 1.6rem; }
.service-page .detail-grid, .service-page .process-grid, .service-page .img-cards, .service-page .faq-grid { gap: 0.7rem; }
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 208, 132, 0.18);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  line-height: 1;
  text-align: center;
}

