/* ============================================================
   Operatiqs Agency LLC — PCI DSS Compliance Support
   Shared stylesheet — all pages
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1b2b4b;
  --navy-dark:  #111e35;
  --navy-light: #243456;
  --teal:       #18b5a0;
  --teal-dark:  #14a08d;
  --teal-light: #e6f7f5;
  --slate:      #4b5a72;
  --slate-light:#6b7a90;
  --bg:         #f5f7fa;
  --bg-white:   #ffffff;
  --border:     #d8dde8;
  --text:       #1b2b4b;
  --text-light: #5a6a80;
  --red-warn:   #c0392b;
  --radius:     4px;
  --shadow-sm:  0 1px 4px rgba(27,43,75,.07);
  --shadow:     0 4px 16px rgba(27,43,75,.10);
  --shadow-md:  0 8px 28px rgba(27,43,75,.13);
  --max-w:      1120px;
  --section-y:  80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* --- Layout helpers ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-y) 0; }
.section--gray { background: var(--bg); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.75); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col--center { align-items: center; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.text-center { text-align: center; }
.section-header { margin-bottom: 48px; }
.section-header p { max-width: 640px; font-size: 1.05rem; }
.section-header.text-center p { margin: 0.75rem auto 0; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* --- Navigation -------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo img { height: 32px; width: auto; }
.nav__logo-text { color: #fff; }
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nav__links .nav-services-toggle {
  position: relative;
}
.nav__links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
}
.nav__links .nav-services-toggle:hover .dropdown-menu { display: block; }
.nav__links .dropdown-menu a {
  display: block;
  color: var(--text);
  padding: 9px 18px;
  font-size: 0.85rem;
  background: none;
  border-radius: 0;
  white-space: nowrap;
}
.nav__links .dropdown-menu a:hover {
  background: var(--bg);
  color: var(--teal-dark);
}
.nav__cta { flex-shrink: 0; }
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}

/* --- Hero -------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

/* 2-col hero layout */
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__content { /* left column */ }

.hero__visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
}
.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24,181,160,.08) 0%, transparent 60%);
  pointer-events: none;
}

/* keep old .hero__inner for inner pages that still use it */
.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--teal); }
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero__sub p { color: rgba(255,255,255,.75); margin-bottom: 0; }

/* trust strip under CTAs */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.hero__trust-item::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: rgba(24,181,160,.2);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* old stat strip — keep for possible reuse but hero no longer uses it */
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-num span { color: var(--teal); }
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* --- Service card image variant ----------------------------- */
.card--img { padding: 0; overflow: hidden; }
.card--img .card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.card--img .card__body { padding: 20px 22px 22px; }
.card--img .card__body h3 { margin-bottom: 6px; font-size: 1rem; }
.card--img .card__body p { font-size: 0.85rem; margin-bottom: 0; }
.card--img .card-link { margin-top: 12px; }



/* --- Cards ------------------------------------------------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.15s;
}
.card-link:hover { gap: 10px; }
.card-link::after { content: '→'; }

/* --- Process steps ----------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.step__body h3 { margin-bottom: 6px; }
.step__body p { font-size: 0.9rem; margin-bottom: 0; }

/* --- Checklist --------------------------------------------- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-light);
}
.checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.checklist--white li { color: rgba(255,255,255,.8); }
.checklist--white li::before {
  background: rgba(255,255,255,.12);
  color: var(--teal);
}

/* --- Callout box ------------------------------------------- */
.callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.callout p { color: var(--text); margin-bottom: 0; font-size: 0.9rem; }
.callout strong { color: var(--navy); }

.callout--warn {
  background: #fff8e6;
  border-left-color: #e6a817;
}
.callout--navy {
  background: rgba(27,43,75,.06);
  border-left-color: var(--navy);
}

/* --- FAQ --------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--teal-dark); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--teal);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.9rem; }

/* --- Testimonial ------------------------------------------- */
.testimonial {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.08);
  line-height: 1;
}
.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  font-style: normal;
}
.testimonial cite strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* --- CTA band ---------------------------------------------- */
.cta-band {
  background: var(--teal);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 28px; }

/* --- Tag pills --------------------------------------------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate);
}
.tag--teal {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* --- Page hero (inner pages) ------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 60px 0 56px;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* --- Contact form ------------------------------------------ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(24,181,160,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b5a72' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-note { font-size: 0.78rem; color: var(--slate-light); margin-top: 6px; }

/* --- Sidebar info box -------------------------------------- */
.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.info-box h3 { font-size: 1rem; margin-bottom: 16px; }
.info-box ul { display: flex; flex-direction: column; gap: 10px; }
.info-box ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.info-box ul li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Table ------------------------------------------------- */
.table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
}
tr:nth-child(even) td { background: var(--bg); }
tr:last-child td { border-bottom: none; }

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer__col h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  transition: color 0.15s;
}
.footer__col ul li a:hover { color: var(--teal); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }
.footer__disclaimer {
  padding: 16px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.05);
}

/* --- Service page sidebar layout -------------------------- */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.service-sidebar { position: sticky; top: 88px; }
.sidebar-cta {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.sidebar-cta h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav li a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-light);
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.sidebar-nav li a:hover { color: var(--teal-dark); background: var(--teal-light); border-left-color: var(--teal); }
.sidebar-nav li a.active { color: var(--teal-dark); background: var(--teal-light); border-left-color: var(--teal); font-weight: 600; }

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero__grid { gap: 36px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 520px; }
  .hero__sub { max-width: 100%; }
}
@media (max-width: 768px) {
  :root { --section-y: 56px; }
  .two-col, .three-col { grid-template-columns: 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: block; }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav--open .nav__links a { padding: 10px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav--open .nav__links .dropdown-menu { display: block; position: static; box-shadow: none; border: none; background: rgba(255,255,255,.04); padding: 0 0 8px 16px; }
  .hero { padding: 52px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__visual { order: -1; }
  .hero__trust { flex-wrap: wrap; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .four-col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 6px; }
}
