:root {
  --navy: #0b1d36;
  --navy-light: #15355c;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --text: #1e293b;
  --text-soft: #64748b;
  --bg: #ffffff;
  --bg-cream: #faf8f6;
  --bg-light: #f1f5f9;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 10px;
  font-size: 22px;
  box-shadow: 0 4px 12px -2px rgba(249,115,22,0.35);
}
.logo-text { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; color: var(--navy); }
.logo-text strong { font-weight: 700; color: var(--orange); }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }

/* Submenu */
.nav-item { position: relative; }
.has-submenu .submenu-trigger { cursor: pointer; }
.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 1001;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.submenu a::after { display: none; }
.submenu a:hover { background: var(--bg-light); color: var(--orange); }

/* Mobile submenu */
@media (max-width: 900px) {
  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    margin: 8px 0 8px 12px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    min-width: auto;
    transition: max-height 0.3s ease;
  }
  .submenu::before { display: none; }
  .has-submenu.open .submenu { max-height: 400px; }
  .submenu a { padding: 12px 16px; font-size: 15px; }
}.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.header-phone:hover { background: var(--orange); transform: translateY(-2px); }
.menu-toggle {
  display: none; background: none; border: none; font-size: 26px;
  cursor: pointer; color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0b1d36 0%, #11294a 60%, #1a3a5c 100%);
  color: #fff;
  padding: 120px 0 110px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero::before {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -150px; right: -100px;
}
.hero::after {
  width: 360px; height: 360px;
  background: #38bdf8;
  bottom: -80px; left: -60px;
  opacity: 0.12;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--orange); }
.hero-lead {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(249,115,22,0.45);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.hero-trust {
  display: flex; gap: 48px; flex-wrap: wrap;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 32px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-trust .stat { display: flex; align-items: center; gap: 14px; }
.hero-trust .stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(249,115,22,0.2);
  display: grid; place-items: center;
  font-size: 20px;
}
.hero-trust strong { font-size: 26px; font-weight: 700; display: block; }
.hero-trust span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 90px 0 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--orange); opacity: 0.15;
  filter: blur(70px); top: -120px; right: -80px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 800px;
}
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 680px;
}

/* Sections */
.section { padding: 92px 0; }
.section-cream { background: var(--bg-cream); }
.section-light { background: var(--bg-light); }
.section-header {
  text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  color: var(--orange); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-header p { color: var(--text-soft); font-size: 18px; }
.content-section { padding: 72px 0; }
.content { max-width: 820px; }
.content h2 {
  font-family: 'Poppins', sans-serif; font-size: 30px;
  color: var(--navy); margin: 40px 0 16px; font-weight: 700;
}
.content h3 {
  font-family: 'Poppins', sans-serif; font-size: 22px;
  color: var(--navy); margin: 28px 0 12px; font-weight: 600;
}
.content p { margin-bottom: 20px; color: var(--text); font-size: 18px; line-height: 1.75; }
.content ul, .content ol { margin: 20px 0 20px 32px; font-size: 17px; }
.content li { margin-bottom: 12px; line-height: 1.7; }
.content a { color: var(--orange-dark); text-decoration: none; font-weight: 600; font-size: 17px; }
.content a:hover { text-decoration: underline; }
.content img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 24px 0; }

/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  opacity: 0; transition: opacity 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,0.25);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--orange-soft);
  display: grid; place-items: center;
  font-size: 26px; margin-bottom: 20px;
}
.card h3 { font-family: 'Poppins', sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--text-soft); font-size: 16px; line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--orange-dark); font-weight: 600;
  text-decoration: none; font-size: 15px;
}
.card-link:hover { gap: 10px; }

/* Service cards from generated content */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,0.25);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}
.service-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card-body p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* Feature rows */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-media {
  background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 40px;
  display: grid; place-items: center;
  min-height: 320px;
}
.feature-media .emoji { font-size: 120px; }
.feature-content h3 {
  font-family: 'Poppins', sans-serif; font-size: 32px; color: var(--navy); margin-bottom: 16px; font-weight: 700;
}
.feature-content p { color: var(--text-soft); font-size: 17px; margin-bottom: 20px; }
.check-list { list-style: none; margin-left: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--text); font-weight: 500;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--orange); opacity: 0.12;
  filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 620px; margin: 0 auto 32px; }

/* Contact form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 15px;
  background: var(--bg); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Process grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; border-radius: 12px;
  display: grid; place-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 18px;
}
.process-step h3 { font-family: 'Poppins', sans-serif; font-size: 19px; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.process-step p { color: var(--text-soft); font-size: 15px; line-height: 1.6; }

/* Two column feature */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-media {
  background: linear-gradient(135deg, var(--orange-soft) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 50px;
  display: grid; place-items: center;
  min-height: 340px;
}
.feature-media .emoji { font-size: 130px; }
.check-list { list-style: none; margin: 22px 0 0 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--text); font-weight: 500; font-size: 17px;
}
.check-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff; padding: 84px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--orange); opacity: 0.12;
  filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 19px; max-width: 620px; margin: 0 auto 32px; }

/* Mobile additions */
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .feature-media { min-height: 220px; padding: 32px; }
}

/* Footer */
.footer {
  background: var(--navy); color: #fff; padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px;
}
.footer-brand p { color: rgba(255,255,255,0.65); margin-top: 18px; font-size: 15px; line-height: 1.7; }
.footer h4 { font-family: 'Poppins', sans-serif; font-size: 15px; color: #fff; margin-bottom: 22px; font-weight: 600; }
.footer a {
  display: block; color: rgba(255,255,255,0.65); text-decoration: none;
  margin-bottom: 12px; font-size: 14px; transition: color 0.2s;
}
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 14px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { display: inline; color: rgba(255,255,255,0.7); }

/* Mobile */
@media (max-width: 900px) {
  .header-inner { height: 68px; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; background: #fff;
    flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 18px; width: 100%; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
