*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #162639;
  --navy-light: #1E3550;
  --gold: #B8922A;
  --gold-light: #D4AB50;
  --gold-pale: #F5E9CC;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --text-main: #0D1B2A;
  --text-muted: #5C6E82;
  --text-soft: #7A8898;
  --border: #DDD8CF;
  --shadow-soft: 0 12px 30px rgba(13, 27, 42, 0.06);
  --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

section {
  padding: 96px 6%;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1rem;
}

.section-frame::before,
.section-frame::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,146,42,0.16), transparent);
  pointer-events: none;
}

.section-frame::before { left: 4.5%; }
.section-frame::after  { right: 4.5%; }

nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 72px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 146, 42, 0.18);
}

.nav-inner {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.18em;
  line-height: 1;
}

.nav-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta,
.nav-portal-btn {
  border: 1px solid var(--gold);
  padding: 0.55rem 1rem;
  border-radius: 2px;
  color: var(--gold-light) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.nav-cta:hover,
.nav-portal-btn:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 2px;
}

/* HERO */
#inicio {
  min-height: 100vh;
  background:
    linear-gradient(rgba(13,27,42,0.92), rgba(13,27,42,0.94)),
    var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 52px;
  position: relative;
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,146,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,146,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-brand {
  margin-bottom: 1.2rem;
}

.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 7.4vw, 6.4rem);
  letter-spacing: 0.14em;
  line-height: 0.95;
  color: var(--white);
}

.hero-brand-rule {
  width: min(100%, 480px);
  height: 1px;
  background: var(--gold);
  margin: 0.65rem 0 0.5rem;
  opacity: 0.65;
}

.hero-brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.65);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.15rem, 4.1vw, 4rem);
  line-height: 1.03;
  font-weight: 500;
  max-width: 680px;
  margin-bottom: 0.95rem;
}

.hero-desc {
  max-width: 650px;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.3rem;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 500;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.55rem;
}

.hero-point {
  border: 1px solid rgba(184,146,42,0.28);
  background: rgba(255,255,255,0.03);
  padding: 0.72rem 0.95rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.84);
  border-radius: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  border-radius: 2px;
  transition: .2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.85);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-shield-panel {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  aspect-ratio: 10 / 12;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.12));
  align-self: start;
  transform: translateY(10px);
}

.hero-shield-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.95;
}

.hero-shield-check {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  transform: scale(0.82);
}

.hero-shield-content {
  position: relative;
  z-index: 3;
  width: 70%;
  max-width: 285px;
  text-align: left;
  padding-top: 0;
  transform: translateY(-22px);
}

.hero-shield-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.82rem;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 0.78rem;
}

.hero-shield-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.74);
  margin-bottom: 0.82rem;
  line-height: 1.5;
}

.hero-shield-list {
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.hero-shield-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.4;
}

.hero-shield-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* RESTO */
#confianza {
  background: var(--white);
  border-top: 1px solid rgba(184,146,42,0.12);
  border-bottom: 1px solid rgba(184,146,42,0.12);
  padding: 28px 6%;
}

.trust-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1.1rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--cream);
}

.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

#servicios { background: var(--white); }

.services-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  align-items: stretch;
}

.services-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 2;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  transition: background .25s ease;
}

.service-card:hover { background: var(--cream); }

.service-number {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(184,146,42,0.09);
  line-height: 1;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.9rem;
  line-height: 1.15;
  max-width: 80%;
}

.service-problem {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.service-result {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--navy);
}

.service-result strong { color: var(--gold); }

#proceso { background: var(--cream); }

.process-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.process-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.process-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.process-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

#diferenciales { background: var(--navy); }

#diferenciales .section-title,
#diferenciales .section-intro {
  color: var(--white);
}

.why-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: var(--navy-light);
  border: 1px solid rgba(184,146,42,0.16);
  padding: 2rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
}

.why-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
}

#sobre-mi { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.about-profile {
  display: grid;
  gap: 1.5rem;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(13,27,42,0.02), rgba(13,27,42,0.02)),
    var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184,146,42,0.18);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-text {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-text strong { color: var(--navy); }

.about-credentials {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.credential {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.credential-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.credential h3 {
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.credential p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-panel::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 165px;
  height: 165px;
  opacity: 0.045;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 360'%3E%3Cpath d='M10 10 L290 10 L290 160 Q290 300 150 350 Q10 300 10 160 Z' fill='none' stroke='%23B8922A' stroke-width='8'/%3E%3Cpath d='M40 40 L260 40 L260 165 Q260 280 150 320 Q40 280 40 165 Z' fill='none' stroke='%23B8922A' stroke-width='4'/%3E%3Cpolyline points='80,190 130,240 230,130' stroke='%23B8922A' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

.about-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-panel ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.about-panel li {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.about-panel li:first-child {
  border-top: none;
  padding-top: 0;
}

.about-panel strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.about-panel span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

#clientes { background: var(--cream); }

.clients-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.client-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.client-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

#noticias {
  background: var(--white);
}

.news-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.news-card {
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .2s ease, border-color .2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.news-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(184,146,42,0.25);
  background: var(--white);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--navy);
}

.news-card p,
.news-card li {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.news-card ul {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.news-card li {
  position: relative;
  padding-left: 1.1rem;
}

.news-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.news-card strong {
  color: var(--navy);
  font-weight: 600;
}

.news-accent {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--text-soft);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#contacto { background: var(--navy); }

#contacto .section-title,
#contacto .section-intro {
  color: var(--white);
}

.contact-grid {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,146,42,0.18);
  padding: 2rem;
  border-radius: 4px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-list li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.contact-list a {
  color: rgba(255,255,255,0.9);
}

.contact-list a:hover { color: var(--gold-light); }

.contact-note {
  margin-top: 1.4rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
  color: rgba(255,255,255,0.74);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(184,146,42,0.18);
  background: rgba(255,255,255,0.98);
  color: var(--text-main);
  padding: 0.82rem 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  border-radius: 2px;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-submit,
.form-whatsapp {
  width: 100%;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  text-align: center;
}

.form-submit {
  background: var(--gold);
  color: var(--navy);
}

.form-submit:hover { background: var(--gold-light); }

.form-whatsapp {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}

.form-whatsapp:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

footer {
  background: #09131e;
  border-top: 1px solid rgba(184,146,42,0.14);
  padding: 2rem 6%;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-copy,
.footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 0.82rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.footer-links a:hover { color: var(--gold-light); }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform .2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

@media (max-width: 1180px) {
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.74rem; }
  .nav-cta, .nav-portal-btn { padding: 0.5rem 0.85rem; }
}

@media (max-width: 1050px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .clients-grid,
  .trust-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-shield-panel {
    max-width: 430px;
    margin: 0 auto;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-hamburger { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.6rem 6%;
    gap: 1rem;
    border-bottom: 1px solid rgba(184,146,42,0.18);
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-cta,
  .nav-portal-btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .why-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .services-grid::before {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-frame::before,
  .section-frame::after {
    display: none;
  }
}

@media (max-width: 640px) {
  section { padding: 78px 6%; }

  .process-grid,
  .clients-grid,
  .trust-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero-title { font-size: 2rem; }
  .hero-brand-name { font-size: 3.2rem; }
  .service-title { max-width: 100%; }
  .hero-shield-panel {
    max-width: 100%;
    transform: translateY(0);
  }
  .hero-shield-content {
    width: 74%;
    transform: translateY(-14px);
  }
  .hero-shield-title { font-size: 1.65rem; }
}