:root {
  --primary: #00208a;
  --primary-dark: #00145c;
  --accent: #f4911e;
  --accent-dark: #de7c0c;
  --surface: #ffffff;
  --surface-alt: #f7f8fc;
  --text: #172033;
  --muted: #62708b;
  --border: #e7eaf2;
  --shadow: 0 20px 60px rgba(8, 22, 60, 0.12);
  --radius: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section-padding { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,234,242,0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 1;
}
.brand-primary { color: var(--primary); font-size: 2rem; letter-spacing: -0.04em; }
.brand-accent { color: var(--accent); font-size: 2rem; letter-spacing: -0.04em; }
.brand-text small { margin-top: 6px; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text); }
.custom-logo-link img { max-height: 64px; width: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.menu-list, .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
  align-items: center;
}
.menu-list a {
  font-weight: 800;
  color: var(--primary);
}
.menu-list a:hover,
.footer-menu a:hover { color: var(--accent); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  padding: 16px 24px;
  font-weight: 800;
  transition: .25s ease;
}
.button-primary,
.button-nav {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.button-primary:hover,
.button-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.button-outline:hover { background: #eff3ff; }
.inline-link {
  color: var(--accent);
  font-weight: 800;
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background:
    radial-gradient(circle at top right, rgba(244,145,30,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,32,138,0.08), transparent 26%),
    #fff;
}
.hero-grid,
.about-grid,
.challenge-box,
.contact-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 46px;
  align-items: center;
}
.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-title {
  margin: 22px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.05em;
}
.hero-title span { color: var(--accent); }
.hero-description,
.section-heading p,
.about-text,
.challenge-box p,
.solution-card p,
.contact-info p,
.step-card p,
.service-card p {
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 38px;
}
.hero-card-top .eyebrow {
  margin: 0 0 8px;
  color: #bfcdfa;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
}
.hero-card-top h3 {
  margin: 0 0 24px;
  font-size: 2.2rem;
  line-height: 1;
}
.hero-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  width: 84%;
  height: 100%;
  background: var(--accent);
}
.hero-card-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  background: #f8faff;
}
.hero-card-bottom article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
}
.hero-card-bottom strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 1.1rem;
}
.hero-card-bottom span { color: var(--muted); }

.challenge-box {
  background: linear-gradient(135deg, var(--primary) 0%, #082870 100%);
  color: #fff;
  padding: 48px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.challenge-box h2,
.solution-card h3,
.section-heading h2,
.about-grid h2,
.contact-info h2,
.default-article h1,
.method-section h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.challenge-box .section-kicker,
.method-section .section-kicker {
  background: rgba(255,255,255,0.12);
  color: #dbe5ff;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-weight: 700;
}
.check-list.negative li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #ff8b8b;
}
.solution-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(8px);
}
.solution-card .inline-link { color: #fff; }

.services-section { background: var(--surface-alt); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2,
.about-grid h2,
.default-article h1 { color: var(--primary); }
.services-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 26px;
}
.service-card,
.step-card,
.stat-card,
.feature-box,
.default-article,
.contact-form-wrap,
.native-form-placeholder {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(10, 20, 60, 0.06);
}
.service-card {
  padding: 30px;
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #fff4e8;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.service-card h3,
.step-card h3,
.feature-box h3,
.native-form-placeholder h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--primary);
}
.about-grid { align-items: start; }
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-box { padding: 28px; min-height: 200px; }
.feature-box.dark { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); color: #fff; }
.feature-box.dark h3,
.feature-box.accent h3 { color: #fff; }
.feature-box.dark p,
.feature-box.accent p { color: rgba(255,255,255,0.82); }
.feature-box.accent { background: linear-gradient(180deg, var(--accent), var(--accent-dark)); color: #fff; }
.feature-box.light { background: #f7f8fc; }
.feature-box.bordered { background: #fff; border: 1px solid #dbe5ff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.stat-card { padding: 28px; }
.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--accent);
}
.stat-card span {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--muted);
}

.method-section {
  background: linear-gradient(180deg, var(--primary), #051d63);
  color: #fff;
}
.light-text h2, .light-text p { color: #fff; }
.steps-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.step-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  padding: 30px;
}
.step-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
}
.step-card h3 { color: #fff; }
.step-card p { color: #dbe5ff; }

.contact-box {
  background: #f8faff;
  border: 1px solid var(--border);
  border-radius: 38px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-info {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 30px;
  padding: 38px;
  height: 100%;
}
.contact-info p { color: #dbe5ff; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}
.contact-list li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: #9cb3ff;
}
.contact-form-wrap,
.native-form-placeholder {
  padding: 40px;
  min-height: 100%;
}
.native-form-placeholder p { color: var(--muted); }
.site-footer {
  background: #06153f;
  color: #d7e1ff;
  padding: 80px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 36px;
}
.footer-brand .brand-primary { color: #fff; }
.footer-text { max-width: 460px; color: #b8c7f0; }
.footer-heading {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  margin: 0 0 18px;
}
.footer-menu { display: grid; gap: 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .85rem;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.default-article,
.content-layout { max-width: 860px; }
.default-article { padding: 40px; }
.entry-content { color: var(--muted); }
.entry-content > *:first-child { margin-top: 0; }
.post-meta { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; color: var(--accent); font-weight: 800; }

@media (max-width: 1100px) {
  .services-grid,
  .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-grid,
  .about-grid,
  .challenge-box,
  .contact-box,
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .mobile-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .primary-nav.is-open { display: flex; }
  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
  }
  .button-nav { width: 100%; }
  .hero-title,
  .section-heading h2,
  .about-grid h2,
  .challenge-box h2,
  .solution-card h3,
  .contact-info h2,
  .default-article h1,
  .method-section h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section-padding { padding: 82px 0; }
}

@media (max-width: 620px) {
  .services-grid,
  .steps-grid,
  .stats-grid,
  .about-cards,
  .hero-card-bottom { grid-template-columns: 1fr; }
  .challenge-box,
  .contact-box,
  .contact-info,
  .contact-form-wrap,
  .native-form-placeholder,
  .default-article,
  .service-card,
  .step-card { padding: 24px; }
  .hero-actions .button { width: 100%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 18px; }
}
