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

:root {
  --navy:    #1a1f8c;
  --navy-dk: #13166b;
  --white:   #ffffff;
  --off-wh:  #f7f8fc;
  --light:   #eef0f8;
  --muted:   #8890b8;
  --dark:    #1a1e2e;
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--dark); font-family: 'Barlow', sans-serif; font-weight: 300; overflow-x: hidden; margin: 0 !important; padding: 0 !important; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,31,140,.10);
}
.nav-logo { display: flex; align-items: center; gap: .8rem; }
.nav-wordmark { display: flex; flex-direction: column; gap: 2px; }
.nav-wordmark strong { font-family: 'Barlow', sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: .22em; color: var(--navy); text-transform: uppercase; line-height: 1; }
.nav-wordmark span { font-family: 'Barlow', sans-serif; font-size: .56rem; font-weight: 400; letter-spacing: .18em; color: var(--navy); text-transform: uppercase; line-height: 1.3; }

.btn-login {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .52rem 1.2rem; border: 1.5px solid var(--navy); background: transparent;
  color: var(--navy); font-family: 'Barlow', sans-serif; font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-login:hover { background: var(--navy); color: var(--white); }
.btn-login svg { width: 14px; height: 14px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6rem 1.6rem 3.5rem; overflow: hidden; background: var(--off-wh);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(247,248,252,.15) 0%, rgba(247,248,252,.65) 55%, var(--off-wh) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.hero-tag { position: relative; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; font-weight: 500; animation: fadeUp .8s .2s both; }
.hero h1 { position: relative; font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem,13vw,8rem); line-height: .94; letter-spacing: .01em; color: var(--dark); animation: fadeUp .8s .35s both; }
.hero h1 em { font-style: italic; color: var(--navy); display: block; }
.hero-sub { position: relative; max-width: 44ch; margin-top: 1.6rem; font-size: .92rem; line-height: 1.75; color: #4a5080; animation: fadeUp .8s .5s both; }
.hero-cta { position: relative; margin-top: 2.4rem; animation: fadeUp .8s .65s both; }

.btn-primary { display: inline-block; padding: .85rem 2rem; background: var(--navy); color: var(--white); font-family: 'Barlow', sans-serif; font-size: .8rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background .2s; }
.btn-primary:hover { background: var(--navy-dk); }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(26,31,140,.10); background: var(--white); }
@media (min-width:600px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat-item { padding: 2rem 1.6rem; border-right: 1px solid rgba(26,31,140,.10); }
.stat-item:nth-child(2) { border-right: none; }
@media (min-width:600px) { .stat-item:nth-child(2) { border-right: 1px solid rgba(26,31,140,.10); } .stat-item:last-child { border-right: none; } }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.stat-label { margin-top: .3rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ── SECTIONS ── */
section { padding: 5rem 1.6rem; }
.section-tag { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--navy); font-weight: 500; margin-bottom: .7rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,7vw,4rem); font-weight: 700; line-height: 1.02; color: var(--dark); }

/* ── SERVICES ── */
.services { background: var(--light); }
.services-grid { display: grid; gap: 1px; background: rgba(26,31,140,.08); margin-top: 3rem; }
@media (min-width:600px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .services-grid { grid-template-columns: repeat(4,1fr); } }
.service-card { background: var(--white); padding: 2rem 1.6rem; transition: background .2s; }
.service-card:hover { background: var(--off-wh); }
.service-icon { width: 32px; height: 32px; margin-bottom: 1.2rem; color: var(--navy); }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: .7rem; }
.service-desc { font-size: .84rem; line-height: 1.7; color: #4a5080; }

/* ── CONTACT ── */
.contact { background: var(--off-wh); }
.contact-inner { display: grid; gap: 3rem; margin-top: 3rem; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select { background: var(--white); border: 1.5px solid rgba(26,31,140,.15); color: var(--dark); font-family: 'Barlow', sans-serif; font-size: .9rem; padding: .75rem 1rem; outline: none; transition: border-color .2s; resize: vertical; width: 100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer { border-top: 1px solid rgba(26,31,140,.10); padding: 2rem 1.6rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: var(--white); }
footer p { font-size: .75rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0; }
.footer-links a { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--navy); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
