/* ===== RTS ADVOGADOS — DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Ultra-sleek Dark Navy & Obsidian Base */
  --navy-deep: #080c16;
  --navy: #0e1526;
  --navy-medium: #141d33;
  --navy-light: #1c2845;
  --navy-surface: #111828;

  /* Accents - Silver & Ice Blue */
  --accent: #5b97d1;
  --accent-dark: #3e7ab8;
  --accent-soft: #a9c7e6;
  --accent-glow: rgba(91, 151, 209, 0.15);

  /* Silver & Metallic Tokens */
  --silver-bright: #e8ecf1;
  --silver: #c5cdd6;
  --silver-dark: #8a9aaa;
  --silver-line: rgba(197, 205, 214, 0.18);
  --silver-beam: rgba(255, 255, 255, 0.08);

  /* Neutrals */
  --white: #ffffff;
  --ice: #f0f4f8;
  --gray-dark: #5a6a7a;

  /* Lines */
  --line: rgba(255, 255, 255, 0.09);
  --line-light: rgba(12, 35, 64, 0.12);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #20bd5a;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-section: 96px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-med: 0.35s var(--ease);
}

/* ===== RESET & GLOBAL ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
section[id] { scroll-margin-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--ice);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===== CRACKED GLASS & LIGHT BEAMS STATIC BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  background: 
    /* Light Beam Rays (Feixes de Luz) */
    linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    linear-gradient(215deg, rgba(91, 151, 209, 0.07) 0%, transparent 40%),
    linear-gradient(35deg, rgba(197, 205, 214, 0.04) 10%, transparent 50%),
    /* Radial Glow Spots */
    radial-gradient(circle at 15% 25%, rgba(91, 151, 209, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(197, 205, 214, 0.08) 0%, transparent 50%),
    /* Cracked Glass / Crystal Facet Geometric Shards */
    linear-gradient(62deg, rgba(255, 255, 255, 0.02) 24%, transparent 24.5%),
    linear-gradient(-58deg, rgba(255, 255, 255, 0.015) 32%, transparent 32.5%),
    linear-gradient(142deg, rgba(197, 205, 214, 0.025) 18%, transparent 18.5%),
    linear-gradient(-122deg, rgba(255, 255, 255, 0.02) 28%, transparent 28.5%),
    /* Dark base background */
    var(--navy-deep);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 180px 180px, 240px 240px, 300px 300px, 220px 220px, 100% 100%;
  pointer-events: none;
}

/* Subtle overlay grid */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(197, 205, 214, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 205, 214, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

::selection { background: var(--accent); color: var(--navy-deep); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul, ol { list-style: none; }

/* ===== UNIFIED CONTAINER / WRAPPER ===== */
.wrap, .container, .cont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.sec-pad, .sec { padding: var(--space-section) 0; }

/* ===== TYPOGRAPHY & SECTION HEADINGS ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sec-head, .sec-header, .areas-header, .how-header, .testimonials-header, .faq-header, .text-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}
.sec-tag, .tag, .section-tag, .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(91, 151, 209, 0.08);
  border: 1px solid rgba(91, 151, 209, 0.25);
  border-radius: 30px;
}
.sec-h, .sec-title, .section-title, h2.section-title {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 18px;
  color: var(--white);
}
.sec-h em, .sec-title em, .section-title em, h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.sec-sub, .section-subtitle, .lead, .hero-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--silver);
  font-weight: 400;
  line-height: 1.65;
}

/* ===== HEADER & LOGO ALIGNMENT ===== */
header, .header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver-line);
  transition: var(--t-med);
}

.header-inner, .header-container, .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand / Logo - Perfectly Aligned */
.brand, .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}
.brand-seal-logo {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--silver-line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: var(--t-fast);
}
.brand:hover .brand-seal-logo {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(91, 151, 209, 0.4);
  transform: scale(1.04);
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 205, 214, 0.06);
  border: 1px solid var(--silver-line);
  border-radius: 8px;
  transition: var(--t-fast);
}
.brand:hover .logo-mark, .logo:hover .logo-mark {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(91, 151, 209, 0.25);
}
.logo-text, .brand .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-name, .logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--white);
}
.logo-sub, .logo-tagline, .logo-text span:last-child {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.4em;
  color: var(--silver);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Navigation Links */
.nav, .nav-links, .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav a, .nav-links a, .nav-list a {
  color: var(--silver);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--t-fast);
  padding: 6px 0;
  position: relative;
  text-decoration: none;
}
.nav a:hover, .nav-links a:hover, .nav-list a:hover,
.nav a.active, .nav-links a.active, .nav-list a.active {
  color: var(--accent);
}
.nav a.active::after, .nav-links a.active::after, .nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mobile Menu Button */
.mobile-menu-btn, .mob-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--silver-line);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== UNIFIED BUTTONS ===== */
.btn, .btn-prim, .btn-primary, .nav-cta, .cta-whatsapp-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--t-fast);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-prim, .btn-primary {
  background: var(--accent);
  color: var(--navy-deep);
}
.btn-prim:hover, .btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(91, 151, 209, 0.3);
}

.whatsapp, .btn-whatsapp, .whatsapp-btn, .nav-cta {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
}
.whatsapp:hover, .btn-whatsapp:hover, .whatsapp-btn:hover, .nav-cta:hover {
  background: var(--whatsapp-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35) !important;
}

.btn-ghost, .btn-secondary, .btn-outline {
  background: rgba(197, 205, 214, 0.05);
  border: 1px solid var(--silver-line);
  color: var(--white);
}
.btn-ghost:hover, .btn-secondary:hover, .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(91, 151, 209, 0.08);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-inner, .hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1, .hero-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  color: var(--white);
}
.hero p, .hero-description, .hero-lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--silver);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions, .hero-cta-group, .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-photo, .hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: 480px;
}
.hero-photo img, .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hero Small (subpages) */
.hero-small {
  padding: 140px 0 60px;
  text-align: center;
}
.hero-small .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== CARDS GRID & FEATURING ===== */
.grid-3, .areas-grid, .diff-grid, .prob-grid, .res-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card, .area-card, .diff-item, .prob-card, .testimonial-card {
  background: rgba(20, 29, 51, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--silver-line);
  border-radius: 12px;
  padding: 36px 30px;
  transition: var(--t-med);
  display: flex;
  flex-direction: column;
}
.card:hover, .area-card:hover, .diff-item:hover, .prob-card:hover {
  border-color: rgba(91, 151, 209, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: rgba(24, 35, 61, 0.7);
}

.card .ic, .area-icon, .diff-icon, .prob-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(91, 151, 209, 0.12);
  border: 1px solid rgba(91, 151, 209, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}
.card h3, .area-card h3, .diff-item h4, .prob-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.card p, .area-card p, .diff-item p, .prob-card p {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-list, .area-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.feature-item, .area-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--silver);
}
.feature-item svg, .area-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.card-link, .area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  transition: var(--t-fast);
}
.card-link:hover, .area-card-link:hover {
  color: var(--accent-soft);
  gap: 12px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--silver-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.about-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}
.about-text p {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-text p strong {
  color: var(--white);
}

.values-list, .vals {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-list li, .vals li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--silver);
}
.values-list li svg, .vals li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid, .steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(20, 29, 51, 0.4);
  border: 1px solid var(--silver-line);
  border-radius: 12px;
  transition: var(--t-med);
}
.step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.step-num, .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(91, 151, 209, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h4, .step h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.faq-container, .faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: rgba(20, 29, 51, 0.5);
  border: 1px solid var(--silver-line);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--t-fast);
}
.faq-question, .faq-q {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq-question:hover, .faq-q:hover {
  color: var(--accent);
}
.faq-icon, .pm {
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--t-fast);
}
.faq-item.active .faq-icon, .faq-item.open .pm {
  transform: rotate(45deg);
}
.faq-answer, .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}
.faq-item.active .faq-answer, .faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 26px 22px;
}
.faq-answer p, .faq-answer-content, .faq-a p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CTA FINAL SECTION ===== */
.cta-section, .cta-final {
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(14, 21, 38, 0.8), var(--navy-deep));
}
.cta-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(20, 29, 51, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid var(--silver-line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-box p {
  font-size: 17px;
  color: var(--silver);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
footer, .footer {
  border-top: 1px solid var(--silver-line);
  padding: 60px 0 30px;
  background: #060911;
}
.footer-content, .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer p, .foot-brand p {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
}
.footer-links-column h5, .foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-column a, .foot-col a {
  display: block;
  color: var(--silver);
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-links-column a:hover, .foot-col a:hover {
  color: var(--white);
}
.footer-bottom, .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: var(--silver-dark);
  font-size: 13px;
}
.foot-contact-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
}
.foot-contact-item span {
  color: var(--white);
}
.foot-contact-item svg {
  flex-shrink: 0;
  stroke: #C5CDD6;
}
.footer-legal-notice {
  font-size: 11.5px;
  color: var(--silver);
  opacity: 0.65;
  line-height: 1.55;
  font-style: italic;
  max-width: 920px;
  text-align: center;
  margin: 0 auto;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp, .wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
  text-decoration: none;
}
.floating-whatsapp:hover, .wpp:hover {
  transform: scale(1.08) translateY(-2px);
}
.floating-whatsapp svg, .wpp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ===== FADE ANIMATIONS ===== */
.fade, .animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner, .hero-content, .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-text, .about-text {
    align-items: center;
    text-align: center;
  }
  .hero-brand-block {
    align-items: center;
    text-align: center;
  }
  .hero-brand-sub, .hero-areas-line {
    justify-content: center;
  }
  .hero-text h1, .hero-title, .hero-description, .hero-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions, .hero-cta-group {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-photo {
    display: none;
  }
  .steps-grid, .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-content, .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* Menu Mobile Expandir para Baixo (Dropdown) */
  .nav, .nav-links, .nav-list {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 999;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--silver-line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav.active, .nav-links.active, .nav-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a, .nav-links a, .nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    width: 100%;
    max-width: none;
    border-radius: 8px;
    background: rgba(197, 205, 214, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--t-fast);
  }

  .nav a:hover, .nav a.active {
    background: rgba(91, 151, 209, 0.16);
    border-color: var(--accent);
    color: var(--accent);
  }

  .nav a.active::after, .nav-links a.active::after, .nav-list a.active::after {
    display: none;
  }

  .nav a.btn {
    margin-top: 6px;
    text-align: center;
    border: none;
  }

  .mobile-menu-btn, .mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(197, 205, 214, 0.08);
    border: 1px solid var(--silver-line);
    color: var(--white);
    cursor: pointer;
  }
}

@media (max-width: 560px) {
  .wrap, .container, .cont {
    padding: 0 16px;
  }
  .hero-actions, .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn, .btn-prim, .btn-primary, .btn-ghost, .btn-secondary {
    width: 100%;
  }
  .steps-grid, .steps-container {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 40px 20px;
  }
}
