/* ==========================================================================
   INFORME CONTABILIDADE — ESTILO PREMIUM CORPORATE TRUSTWORTHY
   Paleta: Escuro Profundo (#141820 / #1A202C) com Ouro Rico (#DAA520) & Azul Naval
   Tipografia: Outfit (Headings) e Inter (Body)
   ========================================================================== */

:root {
  --bg-body: #12161F;
  --bg-surface: #181F2C;
  --bg-card: #1D2636;
  --bg-card-hover: #242F44;
  --bg-elevated: #28344B;
  --bg-glass: rgba(26, 32, 44, 0.85);

  --gold-primary: #DAA520;
  --gold-light: #F6D26F;
  --gold-dark: #B8860B;
  --gold-glow: rgba(218, 165, 32, 0.2);
  --gold-border: rgba(218, 165, 32, 0.3);

  --navy-accent: #1E3A8A;
  --navy-soft: #2563EB;
  --navy-glow: rgba(37, 99, 235, 0.15);

  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(218, 165, 32, 0.2);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 12px 32px -4px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 25px rgba(218, 165, 32, 0.25);
  --shadow-button: 0 8px 24px rgba(218, 165, 32, 0.35);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
  font-weight: 700;
}

.text-gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #F6D26F 0%, #DAA520 70%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Top Bar */
.topbar {
  background: #0D1117;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  color: var(--gold-primary);
  width: 14px;
  height: 14px;
}

.topbar-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-tag {
  background: rgba(218, 165, 32, 0.12);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.brand-fallback-logo {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #F6D26F 0%, #DAA520 80%, #B8860B 100%);
  color: #0F172A;
  box-shadow: var(--shadow-button);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(218, 165, 32, 0.45);
  background: linear-gradient(135deg, #FFFFFF 0%, #F6D26F 50%, #DAA520 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(30, 58, 138, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 85% 75%, rgba(218, 165, 32, 0.1) 0%, transparent 45%),
              var(--bg-body);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero Media Box */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.4) 0%, rgba(30, 58, 138, 0.3) 50%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
}

.hero-img-real {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  filter: contrast(1.03) brightness(0.97);
}

.hero-badge-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.hero-badge-overlay .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(218, 165, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.badge-text-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.badge-text-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-floating-card {
  position: absolute;
  top: 25px;
  right: -20px;
  background: rgba(18, 22, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-stars {
  color: #F59E0B;
  display: flex;
  gap: 2px;
  font-size: 0.85rem;
}

/* SECTION GLOBAL HEADERS */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TRUST BAR */
.trust-bar {
  background: #0E131B;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}

.trust-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold-primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* INSTITUCIONAL / QUEM SOMOS */
.section-about {
  padding: 100px 0;
  position: relative;
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-experience-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.about-exp-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-primary);
  text-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
}

.exp-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.about-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-pill-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
}

.about-pill-item h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.about-pill-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-content h3 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

.about-highlight-box {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gold-primary);
  background: rgba(218, 165, 32, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-highlight-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-white);
  font-style: italic;
}

/* SERVICES / SOLUÇÕES */
.section-services {
  padding: 100px 0;
  background: var(--bg-body);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold-subtle);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--gold-primary), #F6D26F);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-white);
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-benefits {
  list-style: none;
  margin-bottom: 28px;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.service-benefits li svg {
  color: var(--gold-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-action-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-action-link:hover {
  color: #FFFFFF;
  gap: 10px;
}

/* SPECIALTY FOCUS: INDÚSTRIA & E-COMMERCE */
.section-specialties {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, #1A2436 0%, #12161F 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.specialty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.specialty-row:last-child {
  margin-bottom: 0;
}

.specialty-row.reversed {
  direction: rtl;
}

.specialty-row.reversed > * {
  direction: ltr;
}

.specialty-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.specialty-tag {
  background: rgba(30, 58, 138, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93C5FD;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 18px;
}

.specialty-box h3 {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.specialty-box p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.checklist-specialty {
  list-style: none;
  margin-bottom: 28px;
}

.checklist-specialty li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  color: var(--text-primary);
}

.checklist-specialty li svg {
  color: var(--gold-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* COMPARISON TABLE SECTION */
.section-comparison {
  padding: 100px 0;
  background: var(--bg-surface);
}

.comparison-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: #151C28;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 700;
}

.comparison-table th.featured-col {
  background: rgba(218, 165, 32, 0.12);
  color: var(--gold-light);
  border-left: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

.comparison-table td.featured-col {
  background: rgba(218, 165, 32, 0.04);
  font-weight: 600;
  color: var(--text-white);
  border-left: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* TESTIMONIALS SECTION (REAIS) */
.section-testimonials {
  padding: 100px 0;
  background: var(--bg-body);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.testimonial-card::after {
  content: '“';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(218, 165, 32, 0.12);
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--navy-accent) 100%);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.author-meta h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #60A5FA;
}

/* FAQ ACCORDION */
.section-faq {
  padding: 100px 0;
  background: var(--bg-surface);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-header {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  padding: 0 26px 24px 26px;
  max-height: 300px;
}

/* CONTACT & LOCATION */
.section-contact {
  padding: 100px 0;
  background: var(--bg-body);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.contact-card-info {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-card-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-items {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-entry-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(218, 165, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-entry-text h5 {
  font-size: 0.92rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-entry-text p, .contact-entry-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-entry-text a:hover {
  color: var(--gold-light);
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-form-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(18, 22, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

/* CTA BANNER PRE-FOOTER */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A2438 0%, #151D2A 100%);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  text-align: center;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* FOOTER */
.footer {
  background: #0B0E14;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 18px 0 24px;
}

.footer-creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* FLOATING WHATSAPP BUTTON */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.float-wa svg {
  width: 32px;
  height: 32px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specialty-row, .specialty-row.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero {
    padding: 50px 0 70px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-img-real {
    height: 340px;
  }
  .hero-badge-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
  }
  .hero-floating-card {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table th, .comparison-table td {
    padding: 14px 12px;
    font-size: 0.85rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* MOBILE DRAWER */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1001;
  box-shadow: -8px 0 30px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transition: right 0.35s ease;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-close {
  align-self: flex-end;
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.mobile-nav-link:hover {
  color: var(--gold-light);
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
}

.backdrop.show {
  display: block;
}
