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

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --navy: #0b1736;
  --sky: #12639a;
  --green: #6fd35e;
  --green-2: #a9e33b;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  height: 54px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 600;
  color: #334155;
}

.desktop-nav a:hover {
  color: var(--sky);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(135deg, #0f4c81 0%, #116b98 45%, #27ae60 100%);
  color: #fff;
  padding: 72px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #22c55e;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.92);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #ffffff;
  color: var(--navy);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-full {
  width: 100%;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.feature-chip {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.feature-chip strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.feature-chip span {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.84);
}

.hero-visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

.trust-strip {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: #f1f5f9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card,
.process-card,
.form-card,
.panel,
.gallery-main,
.gallery-thumb,
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.gallery-main img,
.gallery-thumb img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-side {
  display: grid;
  gap: 22px;
}

.card-dark {
  padding: 30px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
}

.card-dark h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.04;
}

.card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.panel {
  padding: 30px 32px;
}

.panel-green {
  background: linear-gradient(135deg, #3ab96b 0%, #a9e33b 100%);
  color: #081224;
}

.panel-green .eyebrow {
  color: rgba(255,255,255,0.92);
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 24px;
}

.feature-list li {
  margin: 0 0 18px;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.45;
}

.side-stack {
  display: grid;
  gap: 22px;
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.step-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--sky);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background: #0f172a;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.contact-copy p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
}

.micro-trust {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.micro-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.micro-trust-item::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
  font-size: 0.92rem;
  flex: 0 0 24px;
}

.form-card {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}

.lead-form {
  padding: 32px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

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

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #cbd5e1;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(18, 99, 154, 0.1);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .gallery-layout,
  .split-layout,
  .contact-grid,
  .process-grid,
  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main img {
    min-height: 360px;
  }

  .hero {
    padding-top: 54px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 42px;
  }

  .section,
  .hero {
    padding: 56px 0;
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    letter-spacing: -0.05em;
  }

  .hero-text,
  .section-heading p,
  .contact-copy p {
    font-size: 1rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

    .hero-features {
    grid-template-columns: 1fr;
  }

  .feature-chip {
    text-align: left;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .panel,
  .card,
  .process-card,
  .card-dark {
    padding: 22px 20px;
  }

  .feature-list {
    padding-left: 20px;
  }

  .feature-list li {
    font-size: 1.03rem;
    margin-bottom: 14px;
  }

  .gallery-main img,
  .gallery-thumb img,
  .image-card img,
  .hero-visual img {
    border-radius: 22px;
  }
}


.image-card img {
  min-height: 360px;
}

.side-stack {
  align-content: start;
}
