/* ============ DESIGN TOKENS ============ */
:root {
  --orange: #E6791C;
  --gold: #DEB319;
  --ink: #1a2235;
  --ink-deep: #0f1729;
  --bg: #fdfcf8;
  --bg-soft: #f7f2e9;
  --card: #ffffff;
  --text: #1a2235;
  --muted: #6b7385;
  --border: #ecead9;
  --border-strong: #d9d6c3;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --gradient-brand: linear-gradient(135deg, #E6791C 0%, #DEB319 100%);
  --gradient-ink: linear-gradient(160deg, #1a2235 0%, #0f1729 100%);
  --gradient-soft: linear-gradient(180deg, #fdfcf8 0%, #f7f2e9 100%);

  --shadow-elegant: 0 30px 80px -30px rgba(230, 121, 28, 0.35);
  --shadow-soft: 0 10px 40px -15px rgba(26, 34, 53, 0.18);

  --font-display: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  --max-w: 1200px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}

/* ============ UTILS ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--muted); }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.eyebrow .dot { color: var(--orange); font-size: 8px; }
.icon-sm { width: 16px; height: 16px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-pill { border-radius: var(--radius-pill); padding: 12px 26px; }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}
.btn-primary:hover { opacity: 0.94; transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(26, 34, 53, 0.2);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(236, 234, 217, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; transition: transform 0.2s; }
.brand:hover img { transform: scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 4px;
}
.nav-desktop { display: none; gap: 36px; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 34, 53, 0.85);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--orange); }
.menu-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.menu-toggle:hover { background: var(--bg-soft); }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-close { display: block; }
.nav-mobile { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 22px; border-top: 1px solid var(--border); background: var(--bg); }
.nav-mobile a { padding: 12px 0; font-weight: 500; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
  padding: 60px 0 80px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 520px; height: 520px; top: -130px; right: -130px; background: var(--gradient-brand); opacity: 0.18; }
.blob-2 { width: 420px; height: 420px; bottom: -160px; left: -80px; background: var(--gold); opacity: 0.2; }
.blob-3 { width: 380px; height: 380px; top: 80px; right: -120px; background: var(--gradient-brand); opacity: 0.12; }
.blob-4 { width: 290px; height: 290px; top: -80px; right: -80px; background: var(--gradient-brand); opacity: 0.3; }
.blob-5 { width: 240px; height: 240px; bottom: 0; left: 33%; background: var(--gold); opacity: 0.2; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 6vw, 60px);
  margin-top: 22px;
}
.hero-copy .lead {
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  max-width: 600px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
  max-width: 420px;
}
.stats div { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1.1; }
.stats span { font-size: 12px; color: var(--muted); margin-top: 4px; }

.hero-media { position: relative; }
.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}
.hero-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(15, 23, 41, 0.42), transparent);
}
.floating-card {
  display: none;
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 250px;
  gap: 12px;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}
.floating-card .fc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  color: #fff;
}
.floating-card .fc-icon svg { width: 22px; height: 22px; }
.fc-title { font-size: 14px; font-weight: 700; }
.fc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-scroll {
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
  padding: 24px 0;
  mask: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trustScroll 32s linear infinite;
}
.trust-inner {
  display: flex;
  gap: 14px 60px;
  flex-shrink: 0;
  padding: 24px 20px;
}
.trust-inner span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.trust-inner i { color: var(--orange); font-style: normal; font-size: 10px; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 90px 0; position: relative; }
.section-soft { background: var(--gradient-soft); overflow: hidden; }
.section-head { max-width: 720px; }
.section-head h2 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 46px);
}
.section-head p { margin-top: 18px; font-size: 18px; color: var(--muted); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.about-media { position: relative; }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  display: none;
  position: absolute;
  top: -24px;
  right: -20px;
  background: var(--gradient-brand);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elegant);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; }
.about-copy h2 { margin-top: 12px; font-size: clamp(28px, 4vw, 46px); }
.about-copy p { margin-top: 20px; color: var(--muted); font-size: 17px; }
.check-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.check {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}
.check svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* ============ SERVICES ============ */
.services-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px 28px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.svc-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-elegant);
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card .svc-icon {
  position: absolute;
  top: -16px; left: 28px;
}
.svc-num {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: rgba(217, 214, 195, 0.6);
  line-height: 1;
}
.service-card h3 { font-size: 19px; margin-top: 22px; }
.service-card p { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ============ DIFFERENTIALS ============ */
.diffs-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px;
  transition: border-color 0.2s;
}
.diff-card:hover { border-color: rgba(230, 121, 28, 0.4); }
.diff-card .svc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  margin-bottom: 18px;
  position: static;
  box-shadow: none;
}
.diff-card .svc-icon svg { width: 22px; height: 22px; }
.diff-card h3 { font-size: 18px; }
.diff-card p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ============ CTA CARD ============ */
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gradient-ink);
  color: #fff;
  padding: 50px 32px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.cta-card h2 { color: #fff; font-size: clamp(26px, 3.6vw, 44px); }
.cta-card p { margin-top: 14px; color: rgba(255, 255, 255, 0.72); font-size: 16px; max-width: 560px; }
.cta-buttons { display: flex; flex-direction: column; gap: 12px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.contact-grid h2 { margin-top: 12px; font-size: clamp(28px, 4vw, 46px); }
.contact-grid > div > p.muted { margin-top: 18px; font-size: 16px; }
.contact-list { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-row:hover { border-color: rgba(230, 121, 28, 0.4); transform: translateY(-1px); }
.contact-row .svc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  position: static; box-shadow: none;
  flex-shrink: 0;
}
.contact-row .svc-icon svg { width: 20px; height: 20px; }
.row-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.row-value { display: block; font-size: 15px; font-weight: 600; margin-top: 2px; }
.contact-row:hover .row-value { color: var(--orange); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; }
.contact-form > .field + .field { margin-top: 16px; }
.contact-form > .field:last-of-type { margin-top: 16px; }
.field label { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.req { color: var(--orange); }
.field input, .field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: 12px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230, 121, 28, 0.15);
}
.contact-form button[type="submit"] { margin-top: 22px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--gradient-ink); color: #fff; margin-top: 0; }
.footer-grid {
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.brand-light .brand-name, .brand-light .brand-sub { color: #fff; }
.brand-light .brand-sub { color: rgba(255, 255, 255, 0.6); }
.footer-about { margin-top: 18px; font-size: 14px; color: rgba(255, 255, 255, 0.72); max-width: 360px; }
.footer-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); }
.footer-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-list a, .footer-list li { color: rgba(255, 255, 255, 0.85); transition: color 0.2s; }
.footer-list a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 10px;;}
.footer-bottom-inner {
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ TOAST ============ */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: #fff;
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.4s ease forwards;
  max-width: 380px;
  border-left: 4px solid;
}
.toast.toast-success { border-color: #2d8f5e; background: #f7fcf8; border-left-width: 5px; }
.toast.toast-error { border-color: #c0392b; background: #fdf7f7; border-left-width: 5px; }
.toast .toast-icon { width: 20px; height: 20px; flex-shrink: 0; }
.toast.toast-success .toast-icon { color: var(--orange); }
.toast.toast-error .toast-icon { color: #b95c1a; }
.toast.toast-out { animation: toastOut 0.35s ease forwards; }
@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-elegant);
  z-index: 60;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; }

/* ============ MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  padding: 40px 20px;
  overflow-y: auto;
}
.modal-overlay.open {
  display: flex;
  align-items: center;
}
.modal-content {
  background: var(--card);
  max-width: 640px;
  width: 100%;
  margin: auto;
  border-radius: 8px 0 0 8px;
  padding: 36px 32px;
  position: relative;
  animation: modalIn 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-button { display: none; }
.modal-content::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px 0 0 3px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--orange); }
.modal-content h2 { font-size: 26px; margin-bottom: 4px; }
.modal-content h3 { font-size: 17px; margin: 24px 0 8px; }
.modal-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.modal-content ul { margin: 4px 0 0 18px; }
.modal-content ul li { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
@keyframes modalIn {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .floating-card { display: flex; }
  .about-badge { display: block; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
  .container { padding: 0 28px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .diffs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 70px 28px 40px; }
  .cta-card { padding: 70px 50px; }
}

@media (min-width: 1024px) {
  .hide-mobile { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .nav-mobile { display: none !important; }
  .hero { padding: 90px 0 110px; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; }
  .section { padding: 120px 0; }
  .about-grid { grid-template-columns: 1fr 1.3fr; gap: 70px; }
  .diffs-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 2fr 1fr; gap: 40px; }
  .cta-buttons { flex-direction: column; align-items: flex-end; }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 60px; }
}

@media (max-width: 1023px) {
  .hide-mobile { display: none !important; }
  .nav-mobile[hidden] { display: none; }
}
