:root {
  --navy: #204da1;
  --red: #ff2929;
  --yellow: #ffe600;
  --green: #48b965;
  --orange: #ff6b22;
  --purple: #9559aa;
  --ink: #181818;
  --text: #263040;
  --muted: #627084;
  --bg: #fffaf0;
  --soft-blue: #eef5ff;
  --white: #fff;
  --border: rgba(32, 77, 161, .16);
  --shadow: 0 22px 60px rgba(20, 42, 84, .12);
  --radius: 24px;
  --container: 1180px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6
}

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

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

button,
input,
select,
textarea {
  font: inherit
}

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

.section {
  padding: 84px 0
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 100
}

.skip-link:focus {
  left: 8px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, .92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px)
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand img {
  width: 104px;
  height: auto
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  color: var(--navy)
}

.site-nav a {
  position: relative
}

.site-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0;
  background: var(--red);
  border-radius: 10px;
  transition: width .2s ease
}

.site-nav a:hover:after {
  width: 100%
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  box-shadow: 0 14px 30px rgba(255, 41, 41, .24)
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--border)
}

.hero {
  padding-top: 72px;
  background: radial-gradient(circle at 10% 18%, rgba(255, 230, 0, .28), transparent 24%), radial-gradient(circle at 85% 20%, rgba(149, 89, 170, .14), transparent 20%), linear-gradient(180deg, #fffdf7 0%, #fff3df 100%)
}

.hero-grid,
.two-col,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
  margin: 0 0 14px
}

.eyebrow:before,
.section-kicker:before {
  content: "★";
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--navy)
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.05;
  color: var(--navy);
  font-family: Fredoka, Inter, system-ui, sans-serif
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  max-width: 11ch
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem)
}

h3 {
  font-size: 1.4rem
}

.hero-text,
.section-heading p,
.about p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.trust-strip span {
  background: white;
  color: var(--navy);
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(32, 77, 161, .08)
}

.hero-card {
  position: relative;
  border-radius: 34px;
  padding: 14px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg)
}

.hero-card:before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 4px solid var(--yellow);
  border-radius: 42px;
  z-index: -1;
  transform: rotate(-3deg)
}

.hero-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 24px
}

.about {
  background: white
}

.feature-card,
.service-card,
.step,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.feature-card {
  padding: 34px;
  border-top: 8px solid var(--yellow)
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
  color: var(--text)
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: .82rem
}

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

.cards-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.service-card {
  padding: 30px;
  overflow: hidden
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 20px
}

.service-card:nth-child(2) .card-icon {
  background: var(--red);
  color: white
}

.service-card:nth-child(3) .card-icon {
  background: var(--green);
  color: white
}

.how-it-works {
  background: var(--soft-blue)
}

.step {
  padding: 28px
}

.step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  margin-bottom: 18px
}

.gallery-section {
  background: white
}

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

.gallery-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--soft-blue);
  box-shadow: 0 12px 28px rgba(20, 42, 84, .1)
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .28s ease
}

.gallery-item:hover img {
  transform: scale(1.05)
}

.contact-section {
  background: radial-gradient(circle at 85% 10%, rgba(255, 230, 0, .24), transparent 22%), linear-gradient(135deg, #fff7e6, #eef5ff)
}

.contact-note {
  margin-top: 24px;
  background: white;
  border-left: 6px solid var(--green);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(20, 42, 84, .08)
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 14px;
  align-self: start;
  width: 100%
}

.contact-form h3 {
  margin: 0 0 6px
}

.contact-form > p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5
}

.contact-form label {
  display: grid;
  gap: 5px;
  font-weight: 800;
  color: var(--navy)
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(32, 77, 161, .14);
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--text);
  font-size: 1rem
}

.contact-form input,
.contact-form select {
  min-height: 46px
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 230, 0, .35);
  border-color: var(--navy)
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted)
}

.contact-form .consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px
}

.contact-form button {
  margin-top: 6px
}

.contact-form .ls-form-message {
  margin: 0;
  font-weight: 700
}

.contact-form .ls-form-message.is-visible {
  padding: 12px 14px;
  border-radius: 14px
}

.contact-form .ls-form-message.is-success {
  color: #0f5132;
  background: #d1e7dd
}

.contact-form .ls-form-message.is-error {
  color: #842029;
  background: #f8d7da
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem
}

.site-footer {
  background: #111827;
  color: white;
  padding: 46px 0
}

.footer-grid {
  grid-template-columns: 1.2fr .7fr .8fr;
  align-items: start
}

.footer-logo {
  width: 90px;
  background: white;
  border-radius: 18px;
  padding: 6px;
  margin-bottom: 16px
}

.site-footer h3 {
  color: white;
  font-size: 1.1rem
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .76);
  margin: 8px 0
}

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

  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .cards-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-wrap {
    min-height: 82px
  }

  .brand img {
    width: 84px
  }
}

@media(max-width:640px) {
  .section {
    padding: 58px 0
  }

  h1 {
    font-size: 3rem
  }

  .hero-actions,
  .trust-strip {
    flex-direction: column
  }

  .btn {
    width: 100%
  }

  .nav-cta {
    width: auto;
    padding: 11px 14px;
    font-size: .9rem
  }

  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item img {
    height: 260px
  }

  .contact-form {
    padding: 22px
  }
}



.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #204da1;
  color: white;
  padding: 16px 20px;
  border-radius: 18px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: white;
  text-decoration: underline;
}

.cookie-btn {
  background: white;
  color: #204da1;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn:hover {
  opacity: 0.9;
}

/* Contact section layout refinement */

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-copy {
  padding-top: 56px;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-top: 0;
  }
}

.site-credit {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.site-credit a {
  display: inline;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.site-credit a:hover {
  color: var(--white);
}

.policy-card {
  max-width: 900px;
  margin: 0 auto
}

.policy-return {
  margin-top: 32px
}
