/* ============================================================
   GREEN DOOR TRAVEL — STYLESHEET
   ============================================================ */

/* BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep:  #0c2818;
  --green-mid:   #1a4a32;
  --green-light: #2e7d52;
  --cream:       #f8f4ed;
  --cream-dark:  #f0ebe0;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --gold-pale:   #f7f0e3;
  --text-dark:   #0d1a14;
  --text-muted:  #5a7a68;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* previne scroll horizontal sem quebrar position:fixed */
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */

/* Eyebrow label (reused in many sections) */
.eyebrow {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ============================================================
   NAV
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 40, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 0.65rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--gold-light);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(12,40,24,0.72) 0%, rgba(12,40,24,0.5) 60%, rgba(12,40,24,0.88) 100%),
    url(images/img01.webp) center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Lighter hero for phones/tablets (keep in sync with the preload media in index.html) */
@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(to bottom, rgba(12,40,24,0.72) 0%, rgba(12,40,24,0.5) 60%, rgba(12,40,24,0.88) 100%),
      url(images/img01-mobile.webp);
  }
}

.hero-tag {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 213, 176, 0.78);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.55;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 213, 176, 0.65);
  background: none;
  border: none;
  cursor: pointer;
}

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.5);
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 24s linear infinite;
}

.ticker-item {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-item::after {
  content: '◆ ';
  font-size: 0.4rem;
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */

.certifications {
  background: var(--cream);
  padding: 5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.cert-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cert-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cert-logos {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.cert-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.cert-logo-img {
  opacity: 0.85;
  filter: grayscale(20%);
}

/* ============================================================
   PROBLEM
   ============================================================ */

.problem {
  background: var(--cream-dark);
  padding: 7rem 4rem;
  text-align: center;
}

.problem-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green-deep);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.problem-text {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider-line {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 3rem auto 0;
  opacity: 0.4;
}

/* ============================================================
   SOLUTION
   ============================================================ */

.solution {
  background: var(--green-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.solution-image {
  background: url(images/img02.webp) center / cover no-repeat;
  position: relative;
}

.solution-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--green-deep));
}

.solution-content {
  padding: 5rem 4rem;
}

.sol-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.sol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(232, 213, 176, 0.75);
  line-height: 1.6;
}

.sol-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  background: radial-gradient(circle, var(--gold) 35%, transparent 36%);
}

/* ============================================================
   EXPERIENCES
   ============================================================ */

.experiences {
  background: var(--cream);
  padding: 7rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
}

.section-title-light {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.exp-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-img {
  transform: scale(1.05);
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 40, 24, 0.92) 30%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
}

.exp-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.exp-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.exp-desc {
  font-size: 0.82rem;
  color: rgba(232, 213, 176, 0.65);
  line-height: 1.6;
}

/* ============================================================
   MID CTA
   ============================================================ */

.mid-cta {
  background: var(--cream-dark);
  padding: 3.5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.mid-cta-eyebrow {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.mid-cta-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.btn-dark {
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  background: var(--green-deep);
  padding: 7rem 4rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 5rem;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
}

.how-step {
  text-align: center;
  padding: 0 3rem;
}

.how-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  background: var(--green-deep);
  position: relative;
  z-index: 1;
}

.how-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.88rem;
  color: rgba(232, 213, 176, 0.55);
  line-height: 1.7;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */

.who {
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.who-content {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.who-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.who-pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.who-pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.who-pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.who-image {
  background: url(images/img03.webp) center / cover no-repeat;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  background: var(--green-deep);
  padding: 8rem 4rem;
}

.testi-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testi-main-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.testi-main-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.testi-subtitle {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(232, 213, 176, 0.45);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201, 169, 110, 0.1);
}

.testi-card {
  background: var(--green-deep);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.3s;
}

.testi-card:hover {
  background: var(--green-mid);
}

.testi-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testi-source-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34E0A1;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(232, 213, 176, 0.85);
  line-height: 1.65;
  flex: 1;
}

.testi-author {
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding-top: 1.25rem;
}

.testi-author-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 169, 110, 0.35);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.testi-origin {
  font-size: 0.73rem;
  color: rgba(201, 169, 110, 0.5);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

.testi-lodge {
  font-size: 0.7rem;
  color: rgba(201, 169, 110, 0.35);
  margin-top: 0.2rem;
  font-style: italic;
}

/* ============================================================
   POST-TESTIMONIAL CTA
   ============================================================ */

.post-testi-cta {
  background: var(--cream-dark);
  padding: 4rem;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.post-testi-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.post-testi-sub {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   FORM
   ============================================================ */

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form-left {
  background: var(--green-mid);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.form-intro {
  font-size: 0.93rem;
  color: rgba(232, 213, 176, 0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-promise {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.promise-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.5);
  flex-shrink: 0;
  margin-top: 1px;
  background: radial-gradient(circle at center, var(--gold) 35%, transparent 36%);
}

.form-promise span {
  font-size: 0.87rem;
  color: rgba(232, 213, 176, 0.65);
  line-height: 1.5;
}

.form-right {
  background: var(--gold-pale);
  padding: 6rem 4rem;
}

.form-right h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--green-deep);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.form-right > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.fg {
  margin-bottom: 1.25rem;
}

.fg label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(46, 125, 82, 0.2);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green-light);
}

.fg textarea {
  resize: vertical;
  min-height: 90px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.25rem;
}

.btn-submit:hover {
  background: var(--green-mid);
}

.form-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 4rem 0;
}

.success-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--green-light);
}

.success-msg h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green-deep);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.success-msg p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   WHATSAPP
   ============================================================ */

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25D366;
  color: #fff;
  padding: 1rem 1.5rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
  font-family: var(--sans);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

.whatsapp-btn-label {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-btn-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.or-divider {
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.or-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(46, 125, 82, 0.15);
}

.or-divider span {
  position: relative;
  background: var(--gold-pale);
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--green-deep);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-light);
}

.footer-contact {
  font-size: 0.78rem;
  color: rgba(201, 169, 110, 0.4);
}

.footer-contact a {
  color: rgba(201, 169, 110, 0.5);
  text-decoration: none;
}

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

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-stats {
    position: static;
    margin-top: 3rem;
    gap: 2rem;
  }

  .problem,
  .experiences,
  .how,
  .testimonials {
    padding: 5rem 1.5rem;
  }

  .certifications,
  .mid-cta,
  .post-testi-cta {
    padding: 3rem 1.5rem;
  }

  .cert-row {
    gap: 2rem;
  }

  .solution,
  .who,
  .form-section {
    grid-template-columns: 1fr;
  }

  .solution-image,
  .who-image {
    min-height: 260px;
  }

  .solution-content,
  .who-content,
  .form-left,
  .form-right {
    padding: 3.5rem 1.5rem;
  }

  .exp-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }

  .how-grid::before {
    display: none;
  }

  .how-step {
    padding: 0 0.5rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5.5rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-tag::before {
    display: none;
  }

  .hero-btns {
    gap: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .nav-cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .certifications,
  .mid-cta,
  .post-testi-cta {
    padding: 2.5rem 1.25rem;
  }

  .problem,
  .experiences,
  .how,
  .testimonials {
    padding: 4rem 1.25rem;
  }

  .solution-content,
  .who-content,
  .form-left,
  .form-right {
    padding: 2.5rem 1.25rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .testi-header {
    margin-bottom: 2.5rem;
  }

  .testi-card {
    padding: 2rem 1.25rem;
  }

  .btn-dark {
    width: 100%;
  }

  footer {
    padding: 2rem 1.25rem;
    gap: 0.75rem;
  }
}
