:root {
  --brand: #111827;
  --brand-2: #0b1324;
  --accent: #d97706;
  --accent-2: #b45309;
  --muted: #475569;
  --ink: #0f172a;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
  --my-blue: #2e2e92;
  --my-blue-hover: #afafdf;
}
/* Dark theme overrides */
[data-theme="dark"] {
  --brand: #0f172a;
  --brand-2: #0b0f1a;
  --accent: #f59e0b;
  --accent-2: #d97706;
  --muted: #94a3b8;
  --ink: #e5e7eb;
  --line: #1f2937;
  --bg: #0b1220;
  --bg-alt: #0e1526;
  --card: #0f172a;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  --my-blue: #2e2e92;
  --my-blue-hover: #afafdf;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
p {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
h4 {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}
.logo {
  /* width: 36px;
  height: 36px; */
  width: 300px;
  /* height: 100px; */
  object-fit: contain;
  border-radius: 8px;
  /* background: #fff; */
  /* margin-bottom: -140px; */
  /* margin-top: -60px; */
  margin: -60px 0 -140px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  color: var(--ink);
}
.nav .btn {
  margin-left: 4px;
}
.dropdown {
  position: relative;
}
.dropdown > button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 220px;
  padding: 8px;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}
.dropdown-menu a:hover {
  background: var(--bg-alt);
}
.dropdown.open .dropdown-menu {
  display: block;
}

/* toggles */
.toggle-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}
.lang-select {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 10px;
}

/* MOBILE NAV IS IN A SEPARE FILE; mobile-header.css*/
.mobile-header-placeholder {
  /* display: none; */
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #fff;
  text-align: center;
  padding: 70px 22px;
}
.hero .kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}
.hero h1 {
  margin: 8px 0 10px;
  font-size: 2.4rem;
}
.hero p {
  max-width: 860px;
  margin: 0 auto 16px;
  color: #eaf0ff;
}

/* GRIDS & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--muted);
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.card p {
  text-align: center;
  font-style: italic;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lift:hover {
  transform: translateY(-6px);
  border: 1.5px solid var(--my-blue-hover);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--my-blue-hover);
  color: #fff;
  background: var(--my-blue-hover);
  font-weight: 800;
  cursor: pointer;
}
.btn:hover {
  /* background: var(--accent-2); */
  /* border-color: var(--accent-2); */
  background: rgba(217, 119, 6, 0.08);
  border-color: var(--my-blue);
}
.btn.ghost {
  background: transparent;
  /* color: var(--accent); */
  color: var(--my-blue);
}
.btn.ghost:hover {
  background: rgba(217, 119, 6, 0.08);
}

/* RIBBON */
.ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
  color: var(--muted);
}

/* SECTIONS */
.section {
  padding: 34px 22px;
}
.section h2 {
  margin: 0 0 10px;
}
.muted {
  color: var(--muted);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 20px 22px;
  color: var(--muted);
  text-align: center;
  margin-top: 40px;
  background: var(--card);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}

/* FORMS */
.input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  color: var(--ink);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form .full {
  grid-column: 1/-1;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(12px);
}
.reveal.show {
  opacity: 1;
  transform: none;
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* FAB WhatsApp */
.whatsapp-fab {
  position: fixed;
  /* right: 16px; */
  /* bottom: 16px; */
  right: 25px;
  bottom: 120px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* background: #25d366; */
  background-color: var(--muted);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 60;
  animation: pulse 2s infinite;
}
.whatsapp-fab i {
  font-size: 24px;
}

/* UTIL */
.kpi {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .logo {
    margin: -60px 0 -140px 10%;
  }
}
