@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --blue:      #2b4ead;
  --blue-lt:   #4068d4;
  --blue-bg:   #eef1fa;
  --teal:      #3bbfbf;
  --teal-lt:   #5ed4d4;
  --teal-bg:   #e8f8f8;
  --orange-bg: #fff5e0;
  --orange:    #f5a623;
  --orange-lt: #ffc04a;
  --white:     #ffffff;
  --off-white: #f6f8fc;
  --text:      #1a2840;
  --muted:     #546278;
  --border:    #dde6f2;
  --radius:    6px;
  --shadow-sm: 0 2px 12px rgba(43,78,173,0.07);
  --shadow-md: 0 8px 32px rgba(43,78,173,0.12);
  --shadow-lg: 0 16px 52px rgba(43,78,173,0.15);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Outfit',sans-serif; color:var(--text); background:var(--white); line-height:1.7; }

/* ─── NAVBAR — white background, logo shows cleanly ─── */
nav {
  position:sticky; top:0; z-index:999;
  background:var(--white);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 3rem; height:92px;
  box-shadow:0 2px 16px rgba(43,78,173,0.1);
  border-bottom:1px solid var(--border);
}
.nav-logo { display:flex; align-items:center; text-decoration:none; padding:0.3rem 0; }
.nav-logo img { height:78px; width:auto; display:block; object-fit:contain; }
.nav-links { display:flex; gap:0; list-style:none; }
.nav-links > li { position:relative; }
.nav-links a {
  color:var(--text); text-decoration:none; font-size:0.77rem;
  font-weight:600; letter-spacing:0.07em; padding:0 0.9rem;
  height:92px; display:flex; align-items:center;
  transition:color 0.2s, background 0.2s; text-transform:uppercase;
}
.nav-links a:hover,.nav-links a.active { color:var(--blue); background:var(--blue-bg); }
.nav-cta { background:var(--orange)!important; color:#fff!important; border-radius:var(--radius); margin-left:0.4rem; height:auto!important; padding:0.55rem 1.2rem!important; }
.nav-cta:hover { background:var(--orange-lt)!important; color:#fff!important; }
.dropdown {
  display:none; position:absolute; top:92px; left:0;
  background:var(--white); min-width:250px; z-index:200;
  border:1px solid var(--border); border-top:3px solid var(--teal);
  box-shadow:var(--shadow-lg);
}
.dropdown a { height:auto!important; padding:0.75rem 1.4rem!important; font-size:0.76rem!important; border-bottom:1px solid var(--border); color:var(--text)!important; background:var(--white)!important; }
.dropdown a:hover { color:var(--blue)!important; background:var(--blue-bg)!important; }
.nav-links > li:hover .dropdown { display:block; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; }

/* ─── PAGE HERO ─── */
.page-hero {
  background:linear-gradient(135deg, var(--blue) 0%, #1e3a9a 50%, #1a8fa0 100%);
  padding:4.5rem 3rem 3.5rem; position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size:48px 48px;
}
.page-hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--teal), var(--orange), var(--blue));
}
.page-hero-inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); color:#fff; font-weight:700; }
.page-hero p { color:rgba(255,255,255,0.75); font-size:0.97rem; margin-top:0.5rem; max-width:560px; }
.breadcrumb { color:rgba(255,255,255,0.6); font-size:0.73rem; letter-spacing:0.12em; text-transform:uppercase; margin-bottom:0.8rem; }
.breadcrumb a { color:rgba(255,255,255,0.5); text-decoration:none; }
.breadcrumb a:hover { color:#fff; }

/* ─── SECTIONS ─── */
section { padding:5.5rem 3rem; }
.section-inner { max-width:1100px; margin:0 auto; }
.section-tag { font-size:0.69rem; letter-spacing:0.26em; text-transform:uppercase; color:var(--teal); font-weight:700; margin-bottom:0.5rem; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.7rem); color:var(--text); margin-bottom:0.8rem; line-height:1.2; }
.section-lead { color:var(--muted); font-size:0.97rem; max-width:660px; margin-bottom:2.5rem; }
.amber-bar,.accent-bar { width:44px; height:3px; background:var(--orange); margin-bottom:2.2rem; border-radius:2px; }

/* ─── CARDS ─── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.6rem; }
.card { background:var(--white); border:1px solid var(--border); border-top:3px solid var(--teal); padding:2.2rem 2rem; border-radius:var(--radius); box-shadow:var(--shadow-sm); transition:transform 0.25s,box-shadow 0.25s; }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.card-icon { font-size:1.9rem; margin-bottom:0.9rem; }
.card h3 { font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--text); margin-bottom:0.7rem; }
.card p,.card li { font-size:0.88rem; color:var(--muted); }
.card ul { list-style:none; }
.card ul li { padding:0.25rem 0; display:flex; align-items:flex-start; gap:0.5rem; }
.card ul li::before { content:'→'; color:var(--teal); font-weight:700; flex-shrink:0; font-size:0.78rem; margin-top:3px; }

/* ─── DARK/BLUE SECTION ─── */
.dark-section { background:var(--blue); }
.dark-section .section-tag { color:var(--orange); }
.dark-section .section-title { color:#fff; }
.dark-section .section-lead { color:rgba(255,255,255,0.72); }
.dark-card { background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); border-top:3px solid var(--orange); padding:2rem 1.8rem; border-radius:var(--radius); transition:background 0.2s; }
.dark-card:hover { background:rgba(255,255,255,0.15); }
.dark-card h3 { font-family:'Playfair Display',serif; color:var(--orange); font-size:1.2rem; margin-bottom:1rem; }
.dark-card ul { list-style:none; }
.dark-card ul li { color:rgba(255,255,255,0.85); font-size:0.86rem; padding:0.3rem 0; border-bottom:1px solid rgba(255,255,255,0.1); display:flex; gap:0.5rem; }
.dark-card ul li::before { content:'→'; color:var(--teal-lt); flex-shrink:0; }

/* ─── LIGHT SECTION ─── */
.light-section { background:var(--off-white); }

/* ─── BUTTONS ─── */
.btn { display:inline-block; padding:0.85rem 2.1rem; border-radius:var(--radius); font-size:0.8rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; cursor:pointer; transition:all 0.22s; border:none; }
.btn-amber,.btn-orange { background:var(--orange); color:#fff; }
.btn-amber:hover,.btn-orange:hover { background:var(--orange-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,166,35,0.35); }
.btn-azure,.btn-primary { background:var(--blue); color:#fff; }
.btn-azure:hover,.btn-primary:hover { background:var(--blue-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(43,78,173,0.3); }
.btn-teal { background:var(--teal); color:#fff; }
.btn-teal:hover { background:var(--teal-lt); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--blue); border:1.5px solid var(--blue); }
.btn-outline:hover { background:var(--blue); color:#fff; }
.btn-outline-white { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background:rgba(255,255,255,0.15); border-color:#fff; }

/* ─── STAT BAR ─── */
.stat-bar { background:var(--blue); padding:2.8rem 3rem; }
.stat-bar-inner { max-width:960px; margin:0 auto; display:flex; justify-content:space-around; flex-wrap:wrap; gap:2rem; text-align:center; }
.stat-num { font-family:'Playfair Display',serif; font-size:2.8rem; color:#fff; font-weight:800; line-height:1; }
.stat-label { color:rgba(255,255,255,0.72); font-size:0.74rem; letter-spacing:0.14em; text-transform:uppercase; margin-top:0.3rem; }

/* ─── CTA BANNER ─── */
.cta-banner { background:linear-gradient(135deg, var(--blue) 0%, #1e3a9a 60%, #1a8fa0 100%); padding:4.5rem 3rem; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 20% 50%,rgba(245,166,35,0.15) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(59,191,191,0.15) 0%,transparent 50%); }
.cta-banner-inner { position:relative; z-index:1; max-width:720px; margin:0 auto; }

/* ─── FOOTER ─── */
footer { background:#0d1b3e; color:rgba(255,255,255,0.55); }
.footer-top { padding:4rem 3rem; display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:2.5rem; max-width:1100px; margin:0 auto; }
.footer-brand p { font-size:0.83rem; line-height:1.75; margin-top:0.75rem; color:rgba(255,255,255,0.42); }
.footer-col h4 { color:var(--orange); font-size:0.75rem; letter-spacing:0.18em; text-transform:uppercase; margin-bottom:1.1rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:0.5rem; }
.footer-col ul li a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.83rem; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--orange); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding:1.3rem 3rem; max-width:1100px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:0.75rem; font-size:0.78rem; }

/* ─── TWO-COL ─── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.two-col.reverse { direction:rtl; }
.two-col.reverse > * { direction:ltr; }
.img-placeholder { background:linear-gradient(135deg,var(--blue) 0%,var(--teal) 100%); height:320px; display:flex; align-items:center; justify-content:center; border-radius:var(--radius); }
.img-placeholder span { font-family:'Playfair Display',serif; font-size:3rem; color:rgba(255,255,255,0.3); }

/* ─── STEPS ─── */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:0; }
.step { padding:2.2rem 1.5rem; text-align:center; position:relative; }
.step::after { content:''; position:absolute; top:2.8rem; right:0; width:1px; height:40px; background:var(--border); }
.step:last-child::after { display:none; }
.step-num { width:52px; height:52px; border-radius:50%; background:var(--blue); color:var(--orange); font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.step h4 { font-size:0.88rem; font-weight:600; color:var(--text); margin-bottom:0.4rem; }
.step p { font-size:0.8rem; color:var(--muted); }

/* ─── ACCORDION ─── */
.accordion-item { border:1px solid var(--border); border-radius:var(--radius); margin-bottom:0.75rem; overflow:hidden; }
.accordion-header { padding:1.1rem 1.4rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; background:var(--white); font-weight:600; font-size:0.92rem; color:var(--text); transition:background 0.2s; }
.accordion-header:hover { background:var(--off-white); }
.accordion-header.open { background:var(--blue); color:#fff; }
.accordion-body { padding:0 1.4rem; max-height:0; overflow:hidden; transition:max-height 0.35s ease,padding 0.35s; }
.accordion-body.open { max-height:600px; padding:1rem 1.4rem; }
.accordion-body p,.accordion-body li { font-size:0.88rem; color:var(--muted); }
.accordion-body ul { padding-left:1rem; }

/* ─── FORM ─── */
.form-group { margin-bottom:1.3rem; }
.form-group label { display:block; font-size:0.8rem; font-weight:600; color:var(--text); margin-bottom:0.4rem; letter-spacing:0.05em; }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:0.8rem 1.1rem; border:1.5px solid var(--border); border-radius:var(--radius); font-family:'Outfit',sans-serif; font-size:0.88rem; color:var(--text); transition:border-color 0.2s,box-shadow 0.2s; background:var(--white); }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(43,78,173,0.1); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

/* ─── TABLE ─── */
.styled-table { width:100%; border-collapse:collapse; font-size:0.88rem; }
.styled-table th { background:var(--blue); color:#fff; text-align:left; padding:0.9rem 1.1rem; font-size:0.76rem; letter-spacing:0.1em; text-transform:uppercase; }
.styled-table td { padding:0.85rem 1.1rem; border-bottom:1px solid var(--border); color:var(--muted); }
.styled-table tr:hover td { background:var(--off-white); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box { background:var(--blue-bg); color:var(--text); padding:2.5rem; border-radius:var(--radius); border-left:4px solid var(--orange); }
.highlight-box h3 { font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--blue); margin-bottom:0.75rem; }
.highlight-box p { color:var(--muted); font-size:0.9rem; }

/* ─── SOCIAL ─── */
.social-links { display:flex; gap:0.75rem; margin-top:1rem; }
.social-links a { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.82rem; transition:background 0.2s,color 0.2s; }
.social-links a:hover { background:var(--orange); color:#fff; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }
.animate { animation:fadeUp 0.7s ease both; }
.delay-1 { animation-delay:0.12s; }
.delay-2 { animation-delay:0.24s; }
.delay-3 { animation-delay:0.36s; }

/* ─── PILLARS ─── */
.pillar-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.pillar { background:var(--white); padding:2rem 1.5rem; text-align:center; transition:background 0.25s; }
.pillar:hover { background:var(--blue); }
.pillar:hover .pillar-icon,.pillar:hover h4,.pillar:hover p { color:#fff; }
.pillar-icon { font-size:2rem; margin-bottom:0.75rem; display:block; transition:color 0.25s; }
.pillar h4 { font-family:'Playfair Display',serif; font-size:1rem; color:var(--text); margin-bottom:0.5rem; transition:color 0.25s; }
.pillar p { font-size:0.8rem; color:var(--muted); transition:color 0.25s; }

/* ─── TECH STRIP ─── */
.tech-strip { background:var(--off-white); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:1.5rem 3rem; }
.tech-strip-inner { display:flex; gap:1.5rem; align-items:center; flex-wrap:wrap; justify-content:center; }
.tech-pill { background:var(--white); border:1px solid var(--border); border-radius:50px; padding:0.45rem 1.1rem; font-size:0.78rem; font-weight:500; color:var(--muted); white-space:nowrap; box-shadow:var(--shadow-sm); transition:border-color 0.2s,color 0.2s; }
.tech-pill:hover { border-color:var(--teal); color:var(--teal); }

/* ─── RESPONSIVE ─── */
@media(max-width:960px) { .two-col{grid-template-columns:1fr;gap:2rem;} .footer-top{grid-template-columns:1fr 1fr;} nav{padding:0 1.5rem;} }
@media(max-width:640px) { .nav-links{display:none;} .hamburger{display:flex;} section{padding:3.5rem 1.5rem;} .stat-bar{padding:2rem 1.5rem;} .cta-banner{padding:3.5rem 1.5rem;} .footer-top{grid-template-columns:1fr;padding:2.5rem 1.5rem;} .footer-bottom{padding:1.2rem 1.5rem;flex-direction:column;text-align:center;} .form-grid{grid-template-columns:1fr;} .page-hero{padding:3rem 1.5rem 2.5rem;} }
