:root {
  --color-bg: #f3f7f9;
  --color-surface: #ffffff;
  --color-ink: #0f172a;
  --color-ink-soft: #475569;
  --color-brand: #0f766e;
  --color-brand-strong: #0b5f59;
  --color-accent: #b45309;
  --color-border: #d8e2e8;
  --color-dark: #0b2239;
  --color-dark-soft: #13314d;
  --shadow-sm: 0 10px 30px rgba(9, 30, 66, 0.08);
  --shadow-md: 0 18px 45px rgba(9, 30, 66, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: min(1140px, 92vw);
  --font-heading: "Avenir Next", "Sora", "Trebuchet MS", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", "Tahoma", sans-serif;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, var(--color-bg) 48%, #edf3f6 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.25);
}

.btn-primary:hover {
  background: var(--color-brand-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--color-border);
  background: #fff;
  color: var(--color-ink);
}

.btn-ghost:hover {
  border-color: #b2c6d1;
  background: #f8fbfd;
}

.text-link {
  font-weight: 700;
  color: var(--color-brand-strong);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  z-index: 2000;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(12px);
  background: rgba(243, 247, 249, 0.86);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.08);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-heading);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--color-brand), #1c9f92);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  letter-spacing: 0.03em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-ink);
}

.site-nav a:hover {
  color: var(--color-brand-strong);
}

.header-cta {
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  border-radius: 6px;
  background: var(--color-ink);
  transition: 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.hero-content {
  position: relative;
  background: linear-gradient(165deg, #0b2239 0%, #13314d 66%, #194162 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.02) 70%);
}

.hero-content .eyebrow {
  color: #fdb556;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  max-width: 16ch;
  margin-bottom: 18px;
}

.hero-subheading {
  color: #d4e4ef;
  margin-bottom: 26px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #dbe9f2;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fb8c2b, #fdb556);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}

.hero-graphic {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #d9e6f1;
  margin-bottom: 18px;
  background: #f4f8fc;
}

.hero-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.hero-panel p {
  color: var(--color-ink-soft);
  margin-bottom: 18px;
}

.hero-panel ul {
  margin: 0 0 18px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-row p {
  font-weight: 700;
  color: var(--color-ink);
}

.trust-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row li {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
  background: #f9fcfd;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.about-copy p {
  color: var(--color-ink-soft);
  margin-bottom: 12px;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-visual-card {
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.about-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-highlights article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-highlights h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.about-highlights p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(233, 242, 247, 0.5) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-ink-soft);
  margin-bottom: 14px;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--color-brand), #1ca899);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.process {
  background: linear-gradient(180deg, #fff 0%, #f0f6f9 100%);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: grid;
  gap: 14px;
}

.process-steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 20px 20px 68px;
}

.process-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: var(--color-brand);
}

.process-steps h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.process-steps p {
  color: var(--color-ink-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(9, 30, 66, 0.16);
}

.portfolio-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #dce7f2;
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.04);
}

.media-placeholder {
  height: 180px;
  background:
    linear-gradient(130deg, rgba(15, 118, 110, 0.18), rgba(180, 83, 9, 0.2)),
    repeating-linear-gradient(
      -45deg,
      rgba(11, 34, 57, 0.06) 0,
      rgba(11, 34, 57, 0.06) 10px,
      rgba(255, 255, 255, 0.2) 10px,
      rgba(255, 255, 255, 0.2) 20px
    );
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content .tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf4f4;
  color: var(--color-brand-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.portfolio-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--color-ink-soft);
  margin-bottom: 10px;
}

.portfolio-content ul {
  margin: 0;
  padding-left: 18px;
}

.portfolio-content li {
  margin: 3px 0;
}

.testimonials {
  background: linear-gradient(180deg, #f0f6f9 0%, #f8fbfc 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #1e293b;
}

.testimonial-card h3 {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--color-brand-strong);
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-card h3 {
  font-size: 0.94rem;
  color: var(--color-ink-soft);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: clip;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-brand);
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--color-ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.contact-copy h2 {
  margin-bottom: 12px;
}

.contact-copy p {
  color: var(--color-ink-soft);
  margin-bottom: 12px;
}

.contact-points {
  margin: 0 0 12px;
  padding-left: 18px;
}

.contact-meta {
  font-size: 0.95rem;
}

.legal-main {
  padding-top: 44px;
}

.legal-wrap h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--color-ink-soft);
  margin-bottom: 24px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3.6vw, 34px);
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--color-ink-soft);
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-card li {
  margin: 6px 0;
  color: var(--color-ink-soft);
}

.legal-card a {
  color: var(--color-brand-strong);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7d4dd;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-ink);
  background: #fff;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.3);
  border-color: var(--color-brand);
}

.field-error {
  color: #b91c1c;
  min-height: 1em;
  font-size: 0.78rem;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-error {
  margin-bottom: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--color-brand-strong);
  min-height: 1.3em;
}

.site-footer {
  background: var(--color-dark);
  color: #d2deea;
  padding-top: 54px;
  margin-top: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 24px;
  padding: 16px 0 24px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    right: 14px;
    top: calc(var(--header-height) - 6px);
    width: min(92vw, 340px);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #f2f8fa;
  }

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

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

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-content,
  .hero-panel {
    border-radius: 18px;
  }

  .services-grid,
  .why-grid,
  .portfolio-grid,
  .testimonials-grid,
  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    gap: 12px;
  }

  .trust-row ul {
    gap: 8px;
  }

  .process-steps li {
    padding-left: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .site-header,
  .nav-toggle span,
  .site-nav {
    transition: none;
  }
}
