*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1e22b4;
  --navy:    #2a2a6e;
  --mid:     #5a5a90;
  --light:   #f4f4fb;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #6b6b8a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

nav .logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

nav .logo-wrap img {
  height: 56px;
  width: auto;
}

nav .brand {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

nav ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 60%, #1a1a4e 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem 5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--light);
}

/* ── SECTION BASE ── */
section { padding: 5rem 2rem; }

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
#services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0f0;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(30,34,180,0.1);
  transform: translateY(-3px);
}

.service-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(30, 34, 180, 0.08);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card .icon i {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ── ABOUT ── */
#about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 680px) {
  .about-inner { grid-template-columns: 1fr; }
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-img img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* ── CONTACT ── */
#contact { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.contact-item h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.contact-item p, .contact-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.98rem;
}

.contact-item a:hover { text-decoration: underline; color: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 0.875rem;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

footer a:hover { color: var(--white); }

/* ── PRIVACY POLICY PAGE ── */
.policy-wrap {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 2rem 5rem;
}

.policy-wrap h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.policy-wrap .last-updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.policy-wrap h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.5rem;
}

.policy-wrap p, .policy-wrap li {
  color: #3a3a5c;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.policy-wrap ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-wrap a { color: var(--blue); }

/* ── POLICY NAV ── */
.policy-nav {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.policy-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.policy-nav a:hover { color: var(--white); }

.policy-nav .sep { color: rgba(255,255,255,0.3); }
