:root {
  --bg-page: #f4f6fb;
  --bg-white: #ffffff;
  --bg-soft: #f8faf9;
  --color-primary: #14527f;
  --color-accent: #f4a52a;
  --text-main: #172535;
  --text-muted: #647181;
  --border-soft: #dde3ee;
  --radius-sm: 0.7rem;
  --radius-md: 1rem;
  --radius-lg: 1.2rem;
  --shadow-soft: 0 18px 40px rgba(12, 35, 63, 0.12);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-page);
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.site-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid rgba(12, 35, 63, 0.05);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), #2e7ed0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdfdfd;
  font-weight: 700;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.95rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.logo-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.98rem;
}

.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transition: width 0.18s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: #eef3fb;
}

.btn-outline:hover {
  background-color: #dfeafc;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #ffc45a);
  color: #3c2702;
  box-shadow: 0 12px 26px rgba(244, 165, 42, 0.48);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(244, 165, 42, 0.56);
}

.btn-ghost {
  border-color: rgba(20, 82, 127, 0.24);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-ghost:hover {
  background-color: #edf3ff;
}

.hero {
  background: radial-gradient(circle at top left, #fff4de, var(--bg-page) 60%);
  padding: 2.8rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.hero h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 1.25;
  margin: 0 0 0.7rem;
}

.accent-text {
  color: var(--color-primary);
}

.hero-text {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.98rem;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-main);
}

.hero-list i {
  margin-top: 0.15rem;
  color: #18834d;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 360px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.hero-card-bottom {
  padding: 0.9rem 1rem 1rem;
}

.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  background-color: #f0f4ff;
  margin-bottom: 0.4rem;
}

.hero-card-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-card-value {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-card-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section {
  padding: 2.4rem 0;
}

.section-soft {
  background-color: var(--bg-soft);
}

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 1.6rem;
}

.section-heading h2 {
  margin: 0 0 0.4rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.7rem;
}

.section-heading p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.section-heading-left {
  text-align: left;
  margin-left: 0;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.phase-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 26px rgba(12, 35, 63, 0.05);
  position: relative;
  overflow: hidden;
}

.phase-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: rgba(244, 165, 42, 0.09);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  color: #805018;
  font-weight: 600;
}

.phase-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.phase-card p {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.phase-note {
  font-weight: 500;
  color: var(--color-primary);
}

.expert-section {
  background-color: var(--bg-white);
}

.expert-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.expert-card {
  background: radial-gradient(circle at top, #fdf0df, #f8fafc 60%);
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 18px 36px rgba(12, 35, 63, 0.14);
  text-align: center;
  border: 1px solid rgba(221, 227, 238, 0.8);
}

.expert-photo-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(12, 35, 63, 0.25);
}

.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-family: "Poppins", system-ui, sans-serif;
}

.expert-role {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.expert-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: #eaf3ff;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.expert-location {
  margin: 0 0 0.7rem;
  font-size: 0.96rem;
  color: var(--text-muted);
}

.expert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.96rem;
  color: var(--text-main);
  display: grid;
  gap: 0.3rem;
}

.expert-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.expert-list i {
  margin-top: 0.15rem;
  color: #18834d;
}

.expert-article h2 {
  margin: 0 0 0.7rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.7rem;
}

.expert-article p {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.results-section .section-heading {
  margin-bottom: 1.4rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.result-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 12px 26px rgba(12, 35, 63, 0.06);
}

.result-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f3ff;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.result-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.result-card p {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.96rem;
  color: var(--text-main);
}

.result-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.2rem;
}

.result-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

.faq-section {
  background-color: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.faq-item {
  background: radial-gradient(circle at top left, #f3fbff, #f7f9fd 60%);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem 1.2rem;
  border: 1px solid rgba(221, 227, 238, 0.9);
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.contact-section {
  background-color: var(--bg-soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text {
  padding: 1.1rem 0.2rem;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(20, 82, 127, 0.06);
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.contact-kicker i {
  font-size: 0.9rem;
}

.contact-text h2 {
  margin: 0 0 0.5rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.6rem;
}

.contact-text p {
  margin: 0 0 0.7rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.contact-list li {
  position: relative;
  padding-left: 1rem;
}

.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
}

.contact-form {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 30px rgba(12, 35, 63, 0.09);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-field input,
.form-field textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.96rem;
  background-color: #fdfdff;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(20, 82, 127, 0.8);
  box-shadow: 0 0 0 1px rgba(20, 82, 127, 0.35);
  background-color: #ffffff;
}

.contact-footer {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 420px;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-text h2 {
  margin: 0 0 0.4rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.6rem;
}

.cta-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.cta-contact p {
  margin: 0;
  font-size: 0.98rem;
}

.cta-contact i {
  margin-right: 0.4rem;
}

.site-footer {
  background-color: #0d1623;
  color: #c5d3f2;
  padding: 2rem 0 1.3rem;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-info {
  max-width: 320px;
}

.footer-brand {
  margin: 0 0 0.4rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-line {
  margin: 0;
  color: #9fb0d0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-column a:hover {
  color: var(--color-accent);
}

.footer-newsletter {
  max-width: 320px;
}

.footer-newsletter h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-newsletter p {
  margin: 0 0 0.6rem;
  color: #b2c1e2;
  font-size: 0.94rem;
}

.newsletter-form {
  display: block;
}

.newsletter-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.newsletter-row input[type="email"] {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #3a4763;
  background-color: #111a29;
  color: #f5f6ff;
  padding: 0.55rem 0.8rem;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
}

.newsletter-row input::placeholder {
  color: #7f8caf;
}

.newsletter-row input:focus {
  border-color: var(--color-accent);
}

.newsletter-row .btn-primary {
  white-space: nowrap;
  padding-inline: 1.1rem;
  box-shadow: 0 8px 18px rgba(244, 165, 42, 0.45);
}

.newsletter-small {
  margin: 0;
  font-size: 0.86rem;
  color: #9fb0d0;
}

.footer-bottom {
  margin: 0;
  border-top: 1px solid #253044;
  padding-top: 0.8rem;
  color: #9fb0d0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0b1320;
  color: #e4ecff;
  padding: 0.9rem 0;
  z-index: 40;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 0.18s ease;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions .btn {
  font-size: 0.9rem;
  padding: 0.55rem 1.05rem;
}

.cookie-actions .btn-ghost {
  background-color: transparent;
  border-color: #4c5c7f;
  color: #e4ecff;
}

.cookie-actions .btn-ghost:hover {
  background-color: #222c3d;
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .phases-grid,
  .results-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expert-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-text {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .phases-grid,
  .results-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    flex-direction: column;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
