/* ClothCure — Brand Design System */
:root {
  --navy: #002147;
  --navy-light: #0a3366;
  --teal: #007b85;
  --teal-light: #009aab;
  --teal-dark: #006670;
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-100: #f1f5f7;
  --gray-200: #e2e8ec;
  --gray-400: #94a3b0;
  --gray-600: #5a6b7a;
  --gray-800: #2d3a47;
  --shadow-sm: 0 2px 8px rgba(0, 33, 71, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 33, 71, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 33, 71, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Lato", system-ui, sans-serif;
  --transition: 0.25s ease;
  --header-height: 76px;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Typography */
.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }

.section {
  padding: 5rem 0;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header--light .section-title,
.section-header--light .section-desc {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-tag--teal { color: var(--teal-light); }
.section-tag--white { color: rgba(255, 255, 255, 0.9); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title--white { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
}

.section-header--light .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

.link-teal {
  color: var(--teal);
  font-weight: 600;
}

.link-teal:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar__item a {
  color: inherit;
}

.top-bar__item a:hover {
  color: var(--teal-light);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.nav {
  flex: 1;
  min-width: 0;
}

.nav__list {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__link {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  white-space: nowrap;
}

@media (min-width: 1100px) {
  .nav__link {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
  }
}

.nav__link:hover,
.nav__link.active {
  color: var(--teal);
}

.header__cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.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 */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 33, 71, 0.92) 0%, rgba(0, 123, 133, 0.75) 100%),
    url("https://images.unsplash.com/photo-1582735689369-4fe89db7114c?w=1920&q=80") center/cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__title .text-navy,
.hero__title .text-teal {
  color: var(--white);
}

.hero__title .text-teal {
  color: #5eead4;
}

.hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__actions .btn--outline {
  color: var(--white);
  border-color: var(--white);
}

.hero__actions .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #5eead4;
}

.stat__label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Features */
.features {
  background: var(--off-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: var(--teal);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.service-card__list {
  font-size: 0.85rem;
  opacity: 0.75;
}

.service-card__list li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-light);
}

/* Promise */
.promise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promise__checklist {
  margin: 1.5rem 0;
}

.promise__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--gray-800);
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.promise__tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--teal);
  margin-top: 1rem;
}

.promise__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Process */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: none;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Pricing */
.pricing {
  background: var(--gray-100);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.price-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border: 2px solid var(--teal);
  transform: scale(1.02);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.price-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 1rem;
}

.price-card__price {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--teal);
}

.price-card__price span:first-child {
  font-size: 1.25rem;
  vertical-align: super;
}

.price-card__unit {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-600);
}

.price-card__note {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.pricing__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2rem;
}

/* About */
.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about__content p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.about__highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about__highlight strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--teal);
}

.about__highlight span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.about__card {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.about__card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
}

.about__card blockquote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.about__card cite {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-style: normal;
}

/* Testimonials */
.testimonials {
  background: var(--off-white);
}

.testimonials__slider {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card footer span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.slider-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 5px;
}

/* Pickup form */
.pickup__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.pickup__benefits {
  margin-top: 1.5rem;
}

.pickup__benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.95;
}

.pickup__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.pickup-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 123, 133, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form-message.success {
  color: #059669;
}

.form-message.error {
  color: #dc2626;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.contact-card {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.contact-card a:hover {
  color: var(--teal);
}

.contact-card--qr {
  text-align: center;
}

.contact-card__qr-link {
  display: inline-block;
  margin: 0.5rem 0 0.75rem;
  padding: 0.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card__qr-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card__qr-link img {
  display: block;
  width: 140px;
  height: auto;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.contact__map {
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__map iframe {
  min-height: 360px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}

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

.footer__tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal-light);
  margin: 1rem 0 0.5rem;
}

.footer__thanks {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__thanks span {
  color: #f87171;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer ul li {
  padding: 0.3rem 0;
}

.footer a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .promise__inner,
  .about__inner,
  .pickup__inner,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .top-bar__item--hide-mobile {
    display: none;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    flex: none;
  }

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

  .nav__list {
    flex-direction: column;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 1rem;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand img {
    margin: 0 auto;
  }

  .about__highlights {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero__stats {
    gap: 1.5rem;
  }
}

/* ========== Rate List Page ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero__desc {
  max-width: 560px;
  margin: 0 auto 0.75rem;
  opacity: 0.9;
}

.page-hero__note {
  font-size: 0.85rem;
  opacity: 0.75;
}

.ratelist-summary {
  background: var(--off-white);
  padding: 2rem 0;
  margin-top: -1rem;
  position: relative;
  z-index: 1;
}

.ratelist-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.ratelist-summary__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
  .ratelist-summary__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ratelist-summary__grid--5 {
    grid-template-columns: 1fr;
  }
}

.ratelist-summary__card--highlight {
  border-top: 3px solid var(--teal);
  background: linear-gradient(180deg, rgba(0, 123, 133, 0.06) 0%, var(--white) 100%);
}

.ratelist-panel__intro {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 123, 133, 0.08);
  border-radius: var(--radius);
  color: var(--gray-800);
  font-size: 0.95rem;
}

.ratelist-table--compare th,
.ratelist-table--compare td {
  text-align: center;
}

.ratelist-table--compare th:first-child,
.ratelist-table--compare td:first-child {
  text-align: left;
}

.ratelist-table--compare td:not(:first-child) {
  color: var(--gray-800);
  font-weight: 600;
}

.ratelist-summary__card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
}

.ratelist-summary__card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ratelist-summary__from {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.ratelist-summary__from strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--teal);
}

.ratelist-summary__card > p:last-child {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.ratelist-section {
  padding-top: 2rem;
}

.ratelist-toolbar {
  margin-bottom: 1.5rem;
}

.ratelist-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 400px;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.ratelist-search svg {
  color: var(--gray-400);
  flex-shrink: 0;
}

.ratelist-search input {
  flex: 1;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: transparent;
}

.ratelist-search input:focus {
  outline: none;
}

.ratelist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ratelist-tab {
  padding: 0.6rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.ratelist-tab:hover {
  background: var(--gray-200);
}

.ratelist-tab.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.ratelist-panel__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--teal);
}

.ratelist-panel__title:first-child {
  margin-top: 0;
}

.ratelist-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.ratelist-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.ratelist-table thead {
  background: var(--navy);
  color: var(--white);
}

.ratelist-table th,
.ratelist-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
}

.ratelist-table th:last-child,
.ratelist-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  width: 120px;
}

.ratelist-table thead th:last-child {
  color: var(--white);
}

.ratelist-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
}

.ratelist-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.ratelist-table tbody tr:hover {
  background: rgba(0, 123, 133, 0.06);
}

.ratelist-table tbody tr[hidden] {
  display: none;
}

.ratelist-no-results {
  text-align: center;
  color: var(--gray-600);
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.ratelist-disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.ratelist-disclaimer p + p {
  margin-top: 0.75rem;
}

.ratelist-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.page-ratelist .ratelist-cta .btn--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.page-ratelist .ratelist-cta .btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.pricing__cta {
  text-align: center;
  margin-top: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .ratelist-tabs {
    gap: 0.35rem;
  }

  .ratelist-tab {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }

  .ratelist-table th,
  .ratelist-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
}

/* ========== Terms & Conditions Page ========== */
.terms-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.terms-meta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.terms-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  counter-reset: toc;
}

.terms-toc h2 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.terms-toc ol {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.terms-toc li {
  counter-increment: toc;
}

.terms-toc a {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.5rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.terms-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.terms-toc a:hover,
.terms-toc a.active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
}

.terms-content {
  min-width: 0;
  counter-reset: section;
}

.terms-intro {
  padding: 1.25rem 1.5rem;
  background: rgba(0, 123, 133, 0.08);
  border-radius: var(--radius);
  color: var(--gray-800);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.terms-section {
  counter-increment: section;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.terms-section:first-of-type {
  padding-top: 0;
}

.terms-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.terms-section__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.terms-section__title::before {
  content: counter(section, decimal-leading-zero) "  ";
  color: var(--teal);
  opacity: 0.45;
}

.terms-section p {
  color: var(--gray-600);
  font-size: 0.98rem;
  max-width: 68ch;
  margin-bottom: 0.9rem;
}

.terms-section ul,
.terms-section ol {
  margin: 0 0 1.1rem 0;
  max-width: 68ch;
}

.terms-section ul li,
.terms-section ol li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--gray-600);
  font-size: 0.98rem;
}

.terms-section ul li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  color: var(--teal);
  font-weight: 700;
}

.terms-section ol {
  counter-reset: substep;
}

.terms-section ol li {
  counter-increment: substep;
}

.terms-section ol li::before {
  content: counter(substep) ".";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.terms-callout {
  padding: 1.1rem 1.4rem;
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 68ch;
  margin: 1rem 0 1.4rem;
}

.terms-callout strong {
  color: var(--navy);
}

.terms-contact-box {
  margin-top: 0.5rem;
  padding: 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
}

.terms-contact-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: none;
}

.terms-contact-box a {
  color: var(--teal-light);
  font-weight: 700;
}

.terms-contact-box a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .terms-section__title {
    font-size: 1.2rem;
  }
}