@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --primary: #0056D2;
  --primary-dark: #003FA3;
  --primary-light: #E8F0FE;
  --accent: #00A878;
  --text-main: #0D1B2A;
  --text-muted: #5A6A7E;
  --text-light: #8FA0B5;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FF;
  --bg-card: #FFFFFF;
  --border: #D8E2F0;
  --shadow-sm: 0 1px 4px rgba(0,86,210,0.07);
  --shadow-md: 0 4px 20px rgba(0,86,210,0.10);
  --shadow-lg: 0 12px 48px rgba(0,86,210,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; font-weight: 700; }

a { text-decoration: none; color: var(--primary); }
a:hover { color: var(--primary-dark); }

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--primary); letter-spacing: -0.5px;
}

.nav-logo span { color: var(--accent); }

.nav-logo svg { width: 32px; height: 32px; }

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}

.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 8px 20px; border-radius: 8px;
  font-size: 0.85rem !important; font-weight: 600 !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; box-shadow: 0 4px 16px rgba(0,86,210,0.3) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; padding: 1.5rem 5%; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md); z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius); cursor: pointer;
  border: none; transition: all var(--transition); text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(0,86,210,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark); color: #fff;
  box-shadow: 0 8px 28px rgba(0,86,210,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light); color: var(--primary);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(0,168,120,0.25);
}
.btn-accent:hover { background: #008f66; color: #fff; transform: translateY(-1px); }

/* ── SECTION LAYOUT ── */
.section { padding: 88px 5%; }
.section-sm { padding: 60px 5%; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); background: var(--primary-light);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--text-main); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.7; }
.section-sub.center { text-align: center; margin: 0 auto 3rem; }
.section-title.center { text-align: center; }

/* ── CARDS ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
  background: var(--text-main); color: #fff;
  padding: 56px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 2.5rem; }
.footer-brand p { color: #8FA0B5; font-size: 0.9rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; color: #fff; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: #8FA0B5; font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; color: #8FA0B5; }
.footer-logo { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--accent); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 5%;
}
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 120px 5% 64px; margin-top: 68px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ── PROSE (policies) ── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.25rem; color: var(--text-main); margin: 2.5rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; }
.prose ul { color: var(--text-muted); padding-left: 1.25rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; font-size: 0.97rem; }
.prose strong { color: var(--text-main); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}
.badge-green { background: rgba(0,168,120,0.1); color: var(--accent); }
.badge-blue { background: var(--primary-light); color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 5%; }
  .page-hero { padding: 100px 5% 48px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-up  { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.anim-up-d1 { animation-delay: 0.1s; }
.anim-up-d2 { animation-delay: 0.2s; }
.anim-up-d3 { animation-delay: 0.3s; }
.anim-up-d4 { animation-delay: 0.4s; }
