/* ============================================================
   THRONE ENGINEERS WEBSITE STYLESHEET — VERSION 11
   File: assets/css/styles.css

   QUICK EDITING MAP
   1. Brand colours:              :root
   2. Header and logo:            HEADER
   3. Buttons:                    BUTTONS AND LINKS
   4. Homepage hero:              HERO
   5. Content cards and grids:    CONTENT SECTIONS
   6. Footer and social links:    FOOTER
   7. Cookie and WhatsApp tools:  FIXED TOOLS
   8. Tablet and mobile layout:   RESPONSIVE

   The logo uses a tightly cropped image file. Do not replace it
   with the old 1800 × 900 image, which contains unused white space.
   ============================================================ */

/* ======================== BRAND COLOURS ======================== */
:root {
  /* Colours sampled from the Throne Engineers logo */
  --brand-teal: #007e9a;
  --brand-teal-light: #e5f6fa;
  --brand-teal-soft: #f2fbfd;
  --brand-charcoal: #2e343c;
  --brand-charcoal-2: #40474f;

  /* General page colours */
  --text: #2e343c;
  --muted: #606c76;
  --line: #d8e5e9;
  --background: #f4f9fa;
  --white: #ffffff;
  --success: #168a52;

  /* Shared sizing */
  --radius: 18px;
  --shadow: 0 12px 32px rgba(46, 52, 60, 0.09);
  --container: 1260px;
}

/* Backwards-compatible variable names used by existing page styles */
:root {
  --navy: var(--brand-charcoal);
  --navy-2: var(--brand-charcoal-2);
  --teal: var(--brand-teal);
  --teal-2: #0094b4;
  --green: var(--success);
  --bg: var(--background);
}

/* =========================== RESET ============================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(0, 126, 154, 0.34);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--white);
  color: var(--brand-charcoal);
  box-shadow: var(--shadow);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* =========================== HEADER =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(46, 52, 60, 0.05);
  backdrop-filter: blur(10px);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 132px;
}

/* HEADER LOGO SIZE
   The visible logo is large because the source image is now tightly cropped. */
.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(285px, 24vw, 350px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.68rem, 1vw, 1.05rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: var(--brand-charcoal);
  font-size: 0.91rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 2px;
  background: var(--brand-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-teal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.35rem;
}

.phone-link {
  color: var(--brand-teal);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--brand-charcoal);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

/* ===================== BUTTONS AND LINKS ====================== */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(100deg, var(--brand-teal), #0094b4);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 126, 154, 0.22);
}

.button-primary:hover {
  box-shadow: 0 14px 28px rgba(0, 126, 154, 0.28);
}

.button-outline {
  border-color: var(--brand-teal);
  background: var(--white);
  color: var(--brand-teal);
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--brand-teal-light);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-charcoal) !important;
}

.button-ghost {
  background: var(--brand-teal-light);
  color: var(--brand-charcoal);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.button-stack {
  display: grid;
  gap: 0.75rem;
  max-width: 420px;
}

.text-link {
  color: var(--brand-teal);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================ HERO ============================ */
.hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 126, 154, 0.12), transparent 28%),
    linear-gradient(180deg, var(--brand-teal-soft) 0%, var(--white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.25rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  color: var(--brand-charcoal);
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.07;
}

.lead {
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-flags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.hero-flags span {
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-teal);
  border-radius: 14px;
  background: var(--white);
  color: var(--brand-charcoal);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(46, 52, 60, 0.05);
}

.secure-note {
  margin-top: 0.75rem;
  color: var(--success);
  font-weight: 800;
}

.hero-visual-card,
.neutral-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #cfe5ea;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 126, 154, 0.2), transparent 29%),
    linear-gradient(135deg, #e5f6fa 0%, #ffffff 48%, #d9f0f5 100%);
  box-shadow: var(--shadow);
}

.visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 45%, rgba(0, 126, 154, 0.15), transparent 22%),
    radial-gradient(circle at 72% 22%, rgba(46, 52, 60, 0.13), transparent 30%);
}

.visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.visual-badge {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-weight: 800;
}

.visual-content h2 {
  margin: 0 0 0.6rem;
  color: var(--brand-charcoal);
  font-size: 2rem;
}

.visual-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--brand-charcoal);
  font-weight: 800;
}

.visual-content li {
  margin: 0.35rem 0;
}

.visual-lock {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 24px;
  background: var(--white);
  font-size: 4rem;
  box-shadow: var(--shadow);
}

.tech-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand-charcoal), var(--brand-teal));
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(46, 52, 60, 0.24);
  transform: translate(-50%, -50%);
}

.tech-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 126, 154, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 270px;
  height: 270px;
}

.orbit-two {
  width: 380px;
  height: 380px;
}

.tech-chip {
  position: absolute;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-charcoal);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.chip-one { top: 18%; left: 7%; }
.chip-two { top: 20%; right: 8%; }
.chip-three { bottom: 18%; left: 8%; }
.chip-four { right: 9%; bottom: 20%; }

/* ======================= CONTENT SECTIONS ===================== */
.icon-strip {
  padding: 0 0 24px;
  background: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(6, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.strip-grid div {
  color: var(--brand-charcoal);
  font-size: 0.95rem;
  font-weight: 800;
}

.strip-grid div:first-child {
  color: var(--brand-teal);
}

.section {
  padding: 64px 0;
}

.section-light {
  background: var(--background);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-title.centered {
  text-align: center;
}

.section-title h2,
.section h2 {
  margin: 0 0 0.75rem;
  color: var(--brand-charcoal);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.three-col-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.card {
  border: 1px solid var(--line);
  border-top: 3px solid rgba(0, 126, 154, 0.55);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.compact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.feature-card {
  padding: 1.15rem;
}

.service-card .icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-size: 1.4rem;
}

.service-card h3,
.feature-card h3,
.plan-card h3 {
  margin: 0.25rem 0 0.45rem;
  color: var(--brand-charcoal);
  font-size: 1.1rem;
}

.service-card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list article:last-child {
  border-bottom: 0;
}

.process-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-charcoal);
  color: var(--white);
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 0.25rem;
  color: var(--brand-charcoal);
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.plans-grid {
  display: grid;
  gap: 1rem;
}

.plan-card {
  position: relative;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border: 2px solid var(--brand-teal);
}

.plan-label {
  position: absolute;
  top: -12px;
  left: 16px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.tag-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--brand-charcoal);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.icon-s {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.partner-pill {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--brand-charcoal);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-grid details {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-grid summary {
  color: var(--brand-charcoal);
  font-weight: 800;
  cursor: pointer;
}

.faq-grid p {
  color: var(--muted);
}

.page-hero {
  padding: 58px 0 18px;
  background: linear-gradient(180deg, var(--brand-teal-soft) 0%, var(--white) 100%);
}

.narrow {
  max-width: 840px;
}

.prose h2 {
  margin-top: 2rem;
  color: var(--brand-charcoal);
}

.prose p,
.prose li,
.prose ol {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-page-grid .card {
  padding: 1.2rem;
}

.contact-list {
  padding-left: 1.2rem;
}

/* ======================= CONTACT STRIP ======================== */
.contact-strip {
  padding: 1.15rem 0;
  background: linear-gradient(105deg, var(--brand-charcoal), var(--brand-charcoal-2));
  color: var(--white);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.contact-strip strong {
  display: block;
  font-size: 1.05rem;
}

.contact-strip span,
.contact-strip a:not(.button-light),
.contact-strip small {
  display: block;
  color: var(--white);
}

.cta-wrap {
  text-align: right;
}

/* =========================== FOOTER =========================== */
.site-footer {
  padding: 44px 0 18px;
  background: var(--brand-charcoal);
  color: #dce7e9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr 1.1fr;
  gap: 1.25rem;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin: 0.35rem 0;
}

.footer-grid a:hover {
  color: var(--white);
}

/* FOOTER LOGO SIZE */
.footer-brand img {
  width: min(100%, 310px);
  height: auto;
  margin-bottom: 1rem;
  padding: 0.45rem;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand p,
.footer-grid p,
.footer-grid li,
.footer-bottom span {
  color: #dce7e9;
  font-size: 0.92rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

/* SOCIAL ICON BUTTONS: real SVG brand marks, not text abbreviations */
.socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.socials a img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--brand-teal);
  background: var(--brand-teal);
  transform: translateY(-2px);
}

.socials a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ========================== FIXED TOOLS ======================== */
.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 108px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #168a52;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.wa-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #168a52;
  font-weight: 900;
}

.whatsapp-widget small {
  display: block;
  opacity: 0.86;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.13);
}

.cookie-copy {
  max-width: 760px;
}

.cookie-copy strong {
  display: block;
  color: var(--brand-charcoal);
}

.cookie-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: rgba(20, 27, 32, 0.62);
}

.cookie-panel {
  position: relative;
  width: min(calc(100% - 32px), 560px);
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.modal-actions {
  margin-top: 1rem;
}

/* ========================== RESPONSIVE ========================= */
@media (max-width: 1180px) {
  html {
    scroll-padding-top: 116px;
  }

  .topbar {
    min-height: 112px;
  }

  .brand img {
    width: clamp(280px, 34vw, 340px);
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 132px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-top: 4px solid var(--brand-teal);
    border-radius: 0 0 18px 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.78rem 0.75rem;
    border-radius: 9px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--brand-teal-light);
  }

  .hero-grid,
  .three-col-layout,
  .contact-strip-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compact-grid,
  .service-grid,
  .feature-grid,
  .tag-grid,
  .partner-grid,
  .faq-grid,
  .contact-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-flags {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    gap: 0.55rem;
    min-height: 94px;
  }

  .brand img {
    width: min(265px, calc(100vw - 112px));
    min-width: 195px;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0.62rem 0.75rem;
    font-size: 0.9rem;
  }

  .main-nav {
    right: -2px;
    left: -2px;
    max-height: calc(100vh - 104px);
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .compact-grid,
  .service-grid,
  .feature-grid,
  .tag-grid,
  .partner-grid,
  .faq-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card,
  .neutral-visual {
    min-height: 300px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  .orbit-one {
    width: 210px;
    height: 210px;
  }

  .tech-center {
    width: 96px;
    height: 96px;
    font-size: 2rem;
  }

  .tech-chip {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .visual-lock {
    width: 72px;
    height: 72px;
    font-size: 3rem;
  }

  .footer-brand img {
    width: min(100%, 300px);
  }

  .whatsapp-widget {
    right: 12px;
    bottom: 88px;
    left: 12px;
    justify-content: center;
    border-radius: 18px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: flex-start;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .button {
    flex: 1 1 140px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: calc(100vw - 105px);
    min-width: 180px;
  }

  .menu-toggle {
    padding-inline: 0.62rem;
  }
}
