@font-face {
  font-family: "InterLocal";
  src: url("../assets/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "LoraLocal";
  src: url("../assets/fonts/lora.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --cn-petrol: #1e4d6b;
  --cn-petrol-light: #29668e;
  --cn-petrol-dark: #14354a;
  --cn-green: #3d7a5c;
  --cn-green-light: #4c9873;
  --cn-beige: #f9f6f0;
  --cn-beige-dark: #f0eadd;
  --cn-gray-light: #f3f4f6;
  --cn-text: #1f2937;
  --cn-text-light: #4b5563;
  --cn-border: #e6e0d6;
  --shadow-soft: 0 20px 60px rgba(20, 53, 74, .11);
  --shadow-card: 0 10px 28px rgba(20, 53, 74, .08);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--cn-petrol);
  font-family: "LoraLocal", Lora, Georgia, serif;
  line-height: 1.16;
  letter-spacing: -.02em;
}

p {
  margin: 0;
}

.icon,
.brand-icon,
.btn-icon,
.toggle-icon,
.card-icon,
.service-svg,
.check-icon,
.panel-icon,
.star-icon,
.contact-icon,
.footer-logo,
.footer-social-icon,
.mini-icon,
.tag-icon,
.faq-chevron {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(20, 53, 74, .1);
  box-shadow: 0 6px 20px rgba(20, 53, 74, .045);
  backdrop-filter: blur(12px);
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  box-shadow: 0 12px 32px rgba(20, 53, 74, .11);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "LoraLocal", Lora, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  color: var(--cn-petrol);
  letter-spacing: -.03em;
}

.brand-icon,
.footer-logo {
  color: var(--cn-green);
  width: 24px;
  height: 24px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.desktop-nav a:not(.btn) {
  font-size: .93rem;
  font-weight: 650;
  color: var(--cn-text-light);
  transition: color .2s ease;
}

.desktop-nav a:not(.btn):hover,
.desktop-nav a:not(.btn).is-active {
  color: var(--cn-green);
}

.mobile-toggle {
  display: none;
  border: 0;
  padding: 8px;
  color: var(--cn-petrol);
  background: transparent;
  z-index: 120;
}

.toggle-close {
  display: none;
}

.mobile-toggle[aria-expanded="true"] .toggle-open {
  display: none;
}

.mobile-toggle[aria-expanded="true"] .toggle-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 44px;
  color: var(--cn-petrol);
  background: rgba(255, 255, 255, .98);
  transform: translateX(100%);
  transition: transform .28s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a:not(.btn) {
  font-size: 1.1rem;
  font-weight: 800;
}

.mobile-whatsapp {
  width: min(100%, 310px);
  justify-content: center;
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

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

.btn-primary,
.btn-whatsapp {
  color: #fff;
  background: var(--cn-green);
  border-color: #215b42;
  box-shadow: 0 8px 18px rgba(61, 122, 92, .18);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: #336f52;
  box-shadow: 0 12px 24px rgba(61, 122, 92, .25);
}

.btn-secondary {
  color: var(--cn-petrol);
  background: transparent;
  border-color: var(--cn-petrol);
}

.btn-secondary:hover {
  color: #fff;
  background: var(--cn-petrol);
}

.btn-light {
  color: var(--cn-petrol);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
}

.btn-ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-icon {
  width: 19px;
  height: 19px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 72px;
  background: var(--cn-beige);
}

.hero-angle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(79deg, transparent 0 66%, rgba(30, 77, 107, .08) 66.2% 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(46px, 7vw, 86px);
}

.hero-copy h1 {
  max-width: 610px;
  font-size: clamp(3.1rem, 5.25vw, 5.15rem);
  font-weight: 800;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 28px;
  color: var(--cn-text);
  font-size: 1.17rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  color: var(--cn-petrol);
  font-size: .94rem;
  font-weight: 700;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tag-icon {
  width: 16px;
  height: 16px;
  color: var(--cn-petrol-light);
  border: 1.5px solid currentColor;
  border-radius: 50%;
  padding: 2px;
}

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

.image-shell {
  position: relative;
  width: min(100%, 530px);
  padding: 22px;
  border-radius: 30px;
  background: rgba(30, 77, 107, .055);
  box-shadow: var(--shadow-soft);
}

.image-shell::before {
  content: "";
  position: absolute;
  inset: -18px 16px 16px -18px;
  z-index: -1;
  border-radius: 30px;
  background: rgba(30, 77, 107, .05);
}

.image-shell img {
  aspect-ratio: 16 / 8.5;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Shared sections */
.section {
  padding: clamp(78px, 9vw, 116px) 0;
}

.section-heading {
  margin: 0 auto clamp(46px, 6vw, 70px);
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
}

.section-heading p {
  margin-top: 18px;
  color: var(--cn-text);
  font-size: 1.12rem;
  line-height: 1.75;
}

.section-heading.light h2 {
  color: #fff;
}

.title-line {
  display: block;
  width: 78px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--cn-green);
}

/* Problems */
.problem-section {
  background: #fff;
}

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

.problem-card {
  min-height: 276px;
  padding: 32px;
  border-radius: 14px;
  background: var(--cn-gray-light);
  box-shadow: 0 3px 10px rgba(20, 53, 74, .045);
  transition: transform .22s ease, box-shadow .22s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20, 53, 74, .1);
}

.round-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  border-radius: 50%;
  background: var(--cn-petrol);
}

.card-icon {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-family: "InterLocal", Inter, sans-serif;
  font-size: 1.23rem;
  line-height: 1.32;
  letter-spacing: -.01em;
}

.problem-card p {
  color: var(--cn-text);
  font-size: 1rem;
  line-height: 1.68;
}

/* Services */
.services-section {
  background: var(--cn-petrol);
}

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

.service-card {
  min-height: 246px;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
}

.service-icon {
  display: inline-flex;
  color: var(--cn-green);
  margin-bottom: 22px;
}

.service-svg {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: "InterLocal", Inter, sans-serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.service-card p {
  color: var(--cn-text);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Timeline */
.process-section {
  background: #fff;
}

.timeline {
  position: relative;
  width: min(100%, 780px);
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(61, 122, 92, .18);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  align-items: center;
  gap: 48px;
  min-height: 160px;
}

.timeline-left {
  position: relative;
  text-align: right;
}

.step-number {
  display: block;
  margin-bottom: 2px;
  color: rgba(61, 122, 92, .17);
  font-family: "LoraLocal", Lora, Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.timeline-left h3 {
  font-family: "InterLocal", Inter, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--cn-petrol);
}

.timeline-item p {
  max-width: 330px;
  color: var(--cn-text);
  font-size: 1.05rem;
  line-height: 1.72;
}

.timeline-dot {
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cn-green);
}

/* Benefits */
.benefits-section {
  background: var(--cn-beige);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 8vw, 98px);
}

.benefits-list h2 {
  margin-bottom: 30px;
  font-size: clamp(2.05rem, 3vw, 2.75rem);
}

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

.benefits-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  color: var(--cn-text);
  font-size: 1.08rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  color: var(--cn-green);
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: 3px;
  flex: 0 0 auto;
}

.benefits-panel {
  padding: clamp(32px, 5vw, 48px);
  border-top: 4px solid var(--cn-green);
  border-radius: 0 0 22px 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.panel-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--cn-petrol);
}

.benefits-panel h3 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.benefits-panel p {
  color: var(--cn-text);
  font-size: 1.03rem;
  line-height: 1.72;
}

.benefits-panel p + p {
  margin-top: 18px;
}

.benefits-panel strong {
  color: var(--cn-petrol);
}

/* Testimonials */
.testimonials-section {
  background: #fff;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--cn-border);
  border-radius: 16px;
  background: rgba(249, 246, 240, .55);
  box-shadow: 0 8px 24px rgba(20, 53, 74, .045);
  transition: transform .22s ease, box-shadow .22s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(20, 53, 74, .1);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--cn-green);
}

.star-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0 0 28px;
  color: var(--cn-text);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.75;
}

.testimonial-card footer strong {
  display: block;
  color: var(--cn-petrol);
}

.testimonial-card footer span {
  display: block;
  margin-top: 3px;
  color: var(--cn-text-light);
  font-size: .92rem;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 9vw, 112px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(61, 122, 92, .36), transparent 32%),
    linear-gradient(135deg, var(--cn-petrol-dark), var(--cn-petrol));
}

.cta-inner {
  width: min(100% - 32px, 760px);
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.cta-inner p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.16rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* FAQ */
.faq-section {
  background: var(--cn-gray-light);
}

.faq-container {
  width: min(calc(100% - 32px), 780px);
}

.faq-box {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 53, 74, .06);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--cn-gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  color: var(--cn-petrol);
  background: transparent;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-question:hover {
  color: var(--cn-green);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform .22s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 32px 22px 0;
  color: var(--cn-text-light);
  line-height: 1.75;
}

.faq-answer[hidden] {
  display: none;
}

/* Contact */
.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: clamp(48px, 8vw, 90px);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2.3rem, 4vw, 3.45rem);
}

.contact-info > p {
  margin-top: 20px;
  color: var(--cn-text-light);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 24px;
  margin: 40px 0 34px;
}

.contact-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  color: var(--cn-green);
}

.contact-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--cn-text-light);
  font-size: .94rem;
}

.contact-list a,
.contact-list p {
  color: var(--cn-petrol);
  font-size: 1.05rem;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 22px;
  background: var(--cn-beige);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--cn-petrol);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--cn-text);
  background: var(--cn-gray-light);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-form textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 122, 92, .5);
  box-shadow: 0 0 0 4px rgba(61, 122, 92, .12);
  background: #fff;
}

.form-button {
  width: 100%;
  border-radius: 10px;
}

.form-note {
  color: var(--cn-text-light);
  font-size: .9rem;
}

/* Footer */
.footer {
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, .82);
  background: var(--cn-petrol-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 64px;
}

.footer-brand {
  color: #fff;
}

.footer-quote {
  margin-top: 22px;
  color: #fff;
  font-family: "LoraLocal", Lora, Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  transition: background-color .18s ease, transform .18s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
}

.footer-social-icon {
  width: 22px;
  height: 22px;
}

.footer h3 {
  margin-bottom: 20px;
  color: #fff;
  font-family: "InterLocal", Inter, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

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

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

.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.mini-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--cn-green-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

/* Legal pages */
.legal-main {
  padding: 146px 0 86px;
  background: var(--cn-beige);
  min-height: 68vh;
}

.legal-card {
  max-width: 840px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-family: "InterLocal", Inter, sans-serif;
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: var(--cn-text-light);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

/* Animations */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-2 {
  transition-delay: .14s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 76px;
  }

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

  .hero-copy h1 {
    max-width: 780px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

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

  .timeline {
    width: min(100%, 650px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 14px 0;
  }

  .brand {
    font-size: 1.26rem;
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-angle {
    background: linear-gradient(168deg, transparent 0 65%, rgba(30, 77, 107, .08) 65.2% 100%);
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-tags {
    display: grid;
    gap: 14px;
  }

  .image-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .problem-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .service-card,
  .testimonial-card {
    min-height: auto;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline-item {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
    min-height: auto;
    padding: 18px 0 26px;
  }

  .timeline-left {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 12px;
  }

  .timeline-item p {
    grid-column: 2;
    max-width: none;
  }

  .step-number {
    font-size: 2.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}

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

  .hero-copy h1 {
    font-size: 2.42rem;
  }

  .section-heading h2,
  .benefits-list h2 {
    font-size: 2rem;
  }

  .contact-form,
  .faq-box,
  .benefits-panel {
    padding: 24px;
  }

  .contact-list article {
    grid-template-columns: 32px 1fr;
  }
}
