/* Dayego — warm, supportive + strategic */
:root {
  --navy: #28235B;
  --teal: #3FC1CC;
  --coral: #EF4747;
  --bg: #ffffff;
  --soft: rgba(40, 35, 91, 0.06);
  --text: rgba(20, 20, 25, 0.92);
  --muted: rgba(20, 20, 25, 0.70);
  --card: #ffffff;
  --border: rgba(40, 35, 91, 0.14);
  --shadow: 0 10px 30px rgba(40, 35, 91, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 10000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(40, 35, 91, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand-logo {
  height: 34px;
  width: auto;
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.nav-toggle-lines {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  position: relative;
}
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--navy);
  transform: translateY(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(40, 35, 91, 0.92);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-links a:hover {
  background: rgba(63, 193, 204, 0.12);
}

.lang-switch {
  display: flex;
  gap: 8px;
}
.chip {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}
.chip-active {
  background: rgba(40, 35, 91, 0.08);
}

.hero {
  padding: 48px 0 22px;
  background:
    radial-gradient(900px 450px at 20% 0%, rgba(63, 193, 204, 0.18), transparent 60%),
    radial-gradient(700px 380px at 85% 10%, rgba(239, 71, 71, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(40, 35, 91, 0.04), transparent 60%);
}
.hero-inner {
  display: grid;
  place-items: center;
}
.hero-card {
  width: min(860px, 100%);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(40,35,91,0.10);
  box-shadow: var(--shadow);
  border-radius: calc(var(--radius) + 6px);
  padding: 26px 22px 22px;
}

.hero-logo-wrap {
  background: #fff;
  border: 1px solid rgba(40,35,91,0.08);
  border-radius: 20px;
  padding: 18px 18px 14px;
  display: grid;
  place-items: center;
}
.hero-logo {
  width: min(520px, 100%);
  height: auto;
}
.hero-subline {
  margin-top: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
  text-align: center;
}
.hero-title {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.6px;
  text-align: center;
}
.hero-lead {
  margin: 14px auto 0;
  max-width: 64ch;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(40,35,91,0.16);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: rgba(40,35,91,0.18);
}
.btn-primary:hover {
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(63,193,204,0.10);
  color: rgba(40,35,91,0.94);
}
.btn-ghost:hover {
  background: rgba(63,193,204,0.16);
}

.trust-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-pill {
  border: 1px solid rgba(40,35,91,0.10);
  background: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  color: rgba(40,35,91,0.82);
}

.section {
  padding: 54px 0;
}
.section-soft {
  background: var(--soft);
}
.section-head {
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
  color: rgba(40,35,91,0.96);
}
.muted {
  margin: 10px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}
.cards {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--card);
  border: 1px solid rgba(40,35,91,0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(40,35,91,0.06);
}
.card h3 {
  margin: 0 0 8px;
  color: rgba(40,35,91,0.94);
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
}
.link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 800;
}
.link:hover { text-decoration: underline; }

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: start;
}
.about-image img{
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(40, 35, 91, 0.14);
  border: 1px solid rgba(40, 35, 91, 0.10);
}
.about-right{
  display: grid;
  gap: 16px;
}
.panel {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(40,35,91,0.12);
  border-radius: var(--radius);
  padding: 18px;
}
.panel-title {
  font-weight: 900;
  color: rgba(40,35,91,0.94);
  margin-bottom: 10px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  padding-left: 28px;
  position: relative;
  margin: 10px 0;
  color: rgba(20,20,25,0.82);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.insights {
  grid-template-columns: repeat(3, 1fr);
}
.insight {
  background: #fff;
  border: 1px solid rgba(40,35,91,0.12);
  border-radius: var(--radius);
  padding: 18px;
}
.insight-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(63,193,204,0.12);
  color: rgba(40,35,91,0.92);
}
.insight h3 {
  margin: 10px 0 6px;
  color: rgba(40,35,91,0.94);
}
.center {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.callout {
  background: rgba(255,255,255,0.85);
  border: 1px dashed rgba(40,35,91,0.22);
  border-radius: var(--radius);
  padding: 18px;
}
.callout-title {
  font-weight: 900;
  color: rgba(40,35,91,0.94);
}
.callout-text { color: var(--muted); margin: 8px 0 0; }

.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(40,35,91,0.12);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 22px;
}
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-info {
  border-left: 1px solid rgba(40,35,91,0.10);
  padding-left: 16px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(40,35,91,0.06);
}
.info-label {
  color: rgba(40,35,91,0.75);
  font-weight: 800;
  font-size: 13px;
}
.info-value {
  color: rgba(20,20,25,0.86);
  text-decoration: none;
  font-weight: 800;
}
.info-value:hover { text-decoration: underline; }

.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40,35,91,0.14);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(20,20,25,0.88);
  font-weight: 900;
}
.fab-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
}

.site-footer {
  border-top: 1px solid rgba(40,35,91,0.10);
  padding: 26px 0 18px;
  background: rgba(255,255,255,0.95);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-logo {
  height: 30px;
  width: auto;
}
.footer-links, .footer-social {
  display: grid;
  gap: 10px;
}
.footer-links a, .footer-social a {
  color: rgba(40,35,91,0.86);
  text-decoration: none;
  font-weight: 800;
}
.footer-links a:hover, .footer-social a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { border-left: none; padding-left: 0; border-top: 1px solid rgba(40,35,91,0.10); padding-top: 12px; }
  .insights { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 58px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(40,35,91,0.12);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }
  .nav-links a { padding: 12px 12px; }
  .nav-links.open { display: flex; }
}
.image-divider{
  padding: 40px 0;
}

.image-divider img{
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(40, 35, 91, 0.15);
  border: 1px solid rgba(40, 35, 91, 0.08);
}