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

:root {
  --primary: #1565c0;
  --primary-light: #1e88e5;
  --primary-pale: #e3f2fd;
  --accent: #00b0ff;
  --dark: #0f172a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #e5e7eb;
  --gray-200: #cbd5e1;
  --text: #334155;
  --text-muted: #64748b;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 35px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.14);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 4rem, 1280px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.section-label { display: inline-block; margin-bottom: 0.9rem; color: var(--primary); font-family: 'Oxanium', sans-serif; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section-title { color: var(--dark); font-family: 'Oxanium', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.025em; }
.section-title span { color: var(--primary); }
.section-sub { max-width: 720px; color: var(--text-muted); line-height: 1.8; }

.navbar { position: fixed; inset: 0 0 auto; z-index: 1000; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(203,213,225,0.72); }
.nav-inner { width: min(100% - 4rem, 1280px); min-height: 78px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { width: auto; height: 42px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { color: var(--text); font-size: 0.92rem; font-weight: 600; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links .nav-cta { padding: 0.72rem 1.15rem; border-radius: 999px; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 8px 22px rgba(21,101,192,0.22); }
.nav-links .nav-cta:hover { color: var(--white); transform: translateY(-1px); }
.hamburger { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--dark); }

.hero { min-height: 88vh; padding: 138px 2rem 86px; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(155deg, #f5fbff 0%, var(--primary-pale) 55%, #eef6ff 100%); }
.hero::before { content: ''; position: absolute; width: 700px; height: 700px; right: -250px; top: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(0,176,255,0.15), transparent 70%); }
.hero-grid { width: min(100%, 1280px); margin-inline: auto; display: grid; grid-template-columns: 1fr; position: relative; z-index: 1; }
.hero-content { max-width: 820px; }
.ai-badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.55rem 0.9rem; margin-bottom: 1.5rem; border-radius: 999px; color: var(--primary); background: rgba(21,101,192,0.09); font-size: 0.82rem; font-weight: 700; }
.ai-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(0,176,255,0.7); }
.hero-title { margin-bottom: 1.4rem; color: var(--dark); font-family: 'Oxanium', sans-serif; font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.07; letter-spacing: -0.04em; }
.highlight { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { max-width: 720px; margin-bottom: 2.2rem; color: var(--text-muted); font-size: 1.08rem; line-height: 1.82; }
.hero-actions, .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0.85rem 1.35rem; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: var(--transition); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 10px 24px rgba(21,101,192,0.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21,101,192,0.3); }
.btn-outline { color: var(--dark); border-color: var(--gray-200); background: var(--white); }
.btn-outline:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.btn-white { color: var(--primary); background: var(--white); }

.features-strip { padding: 0 2rem; background: var(--white); }
.features-strip-inner { max-width: 1280px; margin-inline: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--gray-100); }
.feature-item { min-width: 0; padding: 2.2rem 1.8rem; display: flex; gap: 1.1rem; align-items: flex-start; border-right: 1px solid var(--gray-100); transition: var(--transition); }
.feature-item:last-child { border-right: 0; }
.feature-item:hover { background: var(--gray-50); }
.feature-icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 12px; background: var(--primary-pale); font-size: 1.7rem; }
.feature-text h3 { margin-bottom: 0.35rem; color: var(--dark); font-family: 'Oxanium', sans-serif; font-size: 1rem; }
.feature-text p { color: var(--text-muted); font-size: 0.88rem; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card { padding: 2.25rem 2rem; position: relative; overflow: hidden; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.pillar-card::after { content: ''; position: absolute; inset: auto 0 0; height: 4px; background: var(--primary); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-emoji { display: block; margin-bottom: 1rem; font-size: 2.3rem; }
.pillar-card h3 { margin-bottom: 0.7rem; color: var(--dark); font-family: 'Oxanium', sans-serif; font-size: 1.2rem; }
.pillar-card p { margin-bottom: 1.35rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.72; }
.pillar-card a { color: var(--primary); font-family: 'Oxanium', sans-serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.pillar-wellbeing, .pillar-safety, .pillar-security { background: var(--white); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step { padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--gray-100); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.step-num { width: 54px; height: 54px; margin: 0 auto 1.25rem; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--primary); font-family: 'Oxanium', sans-serif; font-weight: 800; box-shadow: 0 8px 20px rgba(21,101,192,0.25); }
.process-step h4 { margin-bottom: 0.55rem; color: var(--dark); font-family: 'Oxanium', sans-serif; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

.cta-section { padding: 94px 2rem; text-align: center; position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--dark), #11253d); }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(0,176,255,0.13), transparent 70%); }
.cta-section h2, .cta-section p, .cta-actions { position: relative; }
.cta-section h2 { margin-bottom: 1rem; font-family: 'Oxanium', sans-serif; font-size: clamp(2rem, 4vw, 3rem); }
.cta-section p { max-width: 620px; margin: 0 auto 2rem; color: rgba(255,255,255,0.68); }
.cta-actions { justify-content: center; }

footer, .footer { padding: 72px 2rem 24px; color: rgba(255,255,255,0.72); background: var(--dark); }
.footer-inner { max-width: 1280px; margin-inline: auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-brand p { max-width: 360px; line-height: 1.75; }
footer h4, .footer h4 { margin-bottom: 1rem; color: var(--white); font-family: 'Oxanium', sans-serif; font-size: 0.92rem; }
footer li + li, .footer li + li { margin-top: 0.65rem; }
footer a:hover, .footer a:hover { color: var(--white); }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; }

.animate-up { animation: fade-up 0.7s ease both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .nav-links { gap: 1.05rem; }
  .features-strip-inner, .pillars-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px solid var(--gray-100); }
  .feature-item:last-child { border-bottom: 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { width: min(100% - 2.5rem, 1280px); }
  .section { padding: 72px 0; }
  .nav-inner { width: min(100% - 2rem, 1280px); min-height: 68px; }
  .nav-logo img { height: 36px; }
  .hamburger { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.25rem 1.4rem; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
  .nav-links.active, .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 0.85rem 0.25rem; }
  .nav-links .nav-cta { margin-top: 0.5rem; text-align: center; }
  .hero { min-height: auto; padding: 110px 1.25rem 68px; }
  .hero-title { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero-title br { display: none; }
  .hero-desc { font-size: 1rem; }
  .features-strip { padding-inline: 1.25rem; }
  .process-steps, .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .feature-item, .pillar-card, .process-step { padding: 1.5rem; }
  footer, .footer { padding-inline: 1.25rem; }
}


/* Shared secondary-page foundations */
.page-hero{padding:150px 2rem 90px;text-align:center;background:linear-gradient(155deg,#f5fbff 0%,var(--primary-pale) 58%,#eef6ff 100%)}
.page-hero h1{max-width:1000px;margin:1rem auto;color:var(--dark);font-family:'Oxanium',sans-serif;font-size:clamp(2.4rem,5vw,4rem);font-weight:800;line-height:1.12}
.page-hero p{max-width:780px;margin:0 auto;color:var(--text-muted);font-size:1.05rem;line-height:1.8}
input,select,textarea{width:100%;max-width:100%}
@media(max-width:768px){.page-hero{padding:110px 1.25rem 65px}.page-hero h1{font-size:clamp(2rem,9vw,3rem)}.page-hero h1 br{display:none}}
