:root {
  --ink: #121827;
  --muted: #5c6b7d;
  --paper: #f7fafc;
  --surface: #ffffff;
  --blue: #117fb5;
  --violet: #51418e;
  --teal: #15827b;
  --gold: #b88732;
  --mist: #eef6fb;
  --line: rgba(26, 45, 72, 0.13);
  --shadow: 0 22px 64px rgba(23, 38, 61, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 42%, #f1f7f6 100%);
  color: var(--ink);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 16px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(32, 55, 94, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 60px rgba(32, 55, 94, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 127, 181, 0.15);
}

.brand-text {
  color: var(--violet);
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  color: #273c68;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(17, 127, 181, 0.12);
  color: var(--violet);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--violet);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 58px;
  min-height: calc(100vh - 78px);
  padding-top: 54px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5.3vw, 5.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-line {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.network-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(184, 135, 50, 0.1);
  color: #6c4e1b;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 127, 181, 0.24);
  cursor: pointer;
}

.btn.primary:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(17, 127, 181, 0.28);
}

button,
button:hover,
input[type="submit"],
input[type="submit"]:hover,
.btn,
.btn:hover,
.btn.primary,
.btn.primary:hover {
    cursor: pointer !important;
}


.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--violet);
}

.hero-visual {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #eef6fb);
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.carousel-track-container {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  box-shadow: 0 4px 14px rgba(32, 55, 94, 0.12);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  backdrop-filter: blur(4px);
}

.carousel-button:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(32, 55, 94, 0.18);
}

.carousel-button--left {
  left: 16px;
}

.carousel-button--right {
  right: 16px;
}

.carousel-button.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.current-indicator {
  background: #ffffff;
  transform: scale(1.2);
}

.barter-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.barter-intro {
  max-width: 1000px;
  text-align: center;
}

.barter-intro .lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 16px;
}

.barter-intro p:not(.eyebrow):not(.lead-text) {
  color: var(--muted);
  font-size: 1.05rem;
}

.barter-comparison {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1020px;
  position: relative;
  perspective: 1000px;
}

.barter-comparison .comparison-card {
  flex: 1;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.comparison-card.traditional {
  background: rgba(247, 250, 252, 0.8);
  border: 1px solid rgba(26, 45, 72, 0.08);
  opacity: 0.9;
  transform: scale(0.96) translateX(10px);
}

.comparison-card.modern.highlight-card {
  background: linear-gradient(145deg, #ffffff, #f3f8fb);
  border: 1px solid rgba(17, 127, 181, 0.3);
  box-shadow: 0 24px 54px rgba(17, 127, 181, 0.14);
  transform: scale(1.04) translateX(-10px);
  z-index: 2;
}

.comparison-card.modern.highlight-card:hover {
  transform: scale(1.06) translateX(-10px);
  box-shadow: 0 32px 64px rgba(17, 127, 181, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.card-header h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: "Playfair Display", serif;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 99px;
  letter-spacing: 0.06em;
}

.status-badge.negative {
  background: rgba(179, 59, 59, 0.1);
  color: #b33b3b;
}

.status-badge.positive {
  background: rgba(21, 130, 123, 0.15);
  color: var(--teal);
}

.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--violet);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  z-index: 3;
  flex-shrink: 0;
  align-self: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 52px;
  border-top: 1px solid var(--line);
}

.text-stack {
  color: var(--muted);
  font-size: 1.06rem;
}

.comparison-grid,
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.comparison-card,
.benefits-list article,
.benefit,
.faq-panel,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(32, 55, 94, 0.08);
}

.comparison-card,
.benefits-list article {
  padding: 24px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.clean-list.negative li::before {
  color: #b33b3b;
  content: "x";
}

.clean-list.positive li::before {
  color: var(--teal);
  content: "✓";
}

.about-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #111827, #51418e 56%, #117fb5);
  color: #ffffff;
}

.about-copy p:not(.eyebrow),
.mission-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.about-band .eyebrow {
  color: #9be4ff;
}

.mission-card {
  align-self: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.mission-card span {
  display: block;
  margin-bottom: 12px;
  color: #9be4ff;
  font-weight: 800;
}

.mission-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.14;
}

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

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

.benefit {
  min-height: 250px;
  padding: 28px;
}

.benefit p,
.benefits-list p,
.faq-panel p,
.contact-card p,
.why-copy p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--mist);
  color: var(--violet);
  font-size: 1.45rem;
  font-weight: 800;
}

.process {
  border-top: 1px solid var(--line);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #e2e8f0;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: all 0.3s ease;
}

.timeline-node .node-icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: grayscale(1) brightness(0);
}

.timeline-item:hover .timeline-node {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(17, 127, 181, 0.3);
}

.timeline-item:hover .timeline-node .node-icon {
  filter: brightness(0) invert(1);
}

.timeline-content {
  width: calc(50% - 60px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 16px;
  background: transparent;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .text-content {
  order: 1;
}

.timeline-item:nth-child(even) .bg-number {
  order: 2;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: left;
  justify-content: flex-start;
}

.timeline-item:nth-child(odd) .text-content {
  order: 2;
}

.timeline-item:nth-child(odd) .bg-number {
  order: 1;
}

.timeline-item:hover .timeline-content {
  background: rgba(17, 127, 181, 0.05);
  box-shadow: 0 12px 32px rgba(17, 127, 181, 0.08);
}

.bg-number {
  font-size: 4.5rem;
  font-weight: 800;
  color: #f1f4f6;
  line-height: 1;
  transition: color 0.3s ease;
}

.timeline-item:hover .bg-number {
  color: var(--blue);
}

.text-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #111827;
  font-weight: 800;
}

.text-content p {
  color: #5c6b7d;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.why-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: #f3f8fb;
  padding-bottom: 32px;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.why-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 981px) {
  .why-copy h2,
  .barter-intro h2 {
    white-space: nowrap;
  }
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(32, 55, 94, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.why-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(32, 55, 94, 0.08);
  border-color: rgba(17, 127, 181, 0.3);
}

.why-card.highlight {
  background: linear-gradient(135deg, #ffffff, #fdfbf7);
  border: 1px solid rgba(184, 135, 50, 0.3);
}

.why-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 127, 181, 0.1);
  color: var(--blue);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-card.highlight .why-icon {
  background: rgba(184, 135, 50, 0.15);
  color: var(--gold);
}

.why-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.closing-line {
  color: var(--ink);
  font-weight: 800;
}

.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding-top: 32px;
}

.faq-panel,
.contact-card {
  width: 100%;
  max-width: 1180px;
  padding: 28px;
}


.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 250, 252, 0.9);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--violet);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-brand {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(184, 135, 50, 0.1);
}

.cta-brand strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.cta-brand span {
  color: var(--muted);
  font-weight: 800;
}

/* ==============================
   Contact Form
============================== */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;

  gap: 6px;

  font-size: 0.9rem;

  font-weight: 700;

  color: #273c68;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.required {
  color: #000000;
  margin-left: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  padding: 12px 14px;

  border: 1px solid var(--line);

  border-radius: 8px;

  background: #fff;

  color: var(--ink);

  font: inherit;

  transition: 0.25s;
}

.contact-form textarea {
  resize: vertical;

  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;

  border-color: #117fb5;

  box-shadow: 0 0 0 3px rgba(17, 127, 181, 0.12);
}

.contact-form select {
  appearance: none;

  cursor: pointer;
}

.form-actions {
  grid-column: 1/-1;

  display: flex;

  justify-content: center;

  margin-top: 8px;
}

.form-actions .btn {
  min-width: 170px;

  min-height: 46px;

  padding: 0 30px;

  font-size: 0.95rem;
}

.form-note {
  text-align: center;

  min-height: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(150px, 0.75fr));
  gap: 38px;
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 28px;
  padding: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, #111827, #3f367c 56%, #117fb5);
  color: #ffffff;
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer-brand p,
.copyright {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-group h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}


@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 54px rgba(32, 55, 94, 0.16);
  }

  .main-nav.is-open {
    display: grid;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .about-band {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
  }

  .benefit-grid,
  .benefits-list,
  .why-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .barter-comparison {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-card.traditional {
    transform: scale(1) translateX(0);
  }

  .comparison-card.modern.highlight-card {
    transform: scale(1) translateX(0);
  }

  .comparison-card.modern.highlight-card:hover {
    transform: scale(1.02) translateX(0);
  }

  .vs-badge {
    margin: -24px 0;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 36px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .about-band,
  .why-section {
    padding-inline: 24px;
  }

  .site-header {
    gap: 12px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .comparison-grid,
  .benefit-grid,
  .benefits-list,
  .compact-list,
  .why-features,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .why-copy {
    text-align: left;
  }

  .timeline-line {
    left: 27px;
  }
  .timeline-node {
    left: 27px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-end;
  }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    width: calc(100% - 70px);
    text-align: left;
    justify-content: flex-start;
  }
  .timeline-item:nth-child(even) .text-content,
  .timeline-item:nth-child(odd) .text-content {
    order: 2;
  }
  .timeline-item:nth-child(even) .bg-number,
  .timeline-item:nth-child(odd) .bg-number {
    order: 1;
  }

  .faq-panel,
  .contact-card {
    padding: 24px;
  }

  .site-footer {
    padding: 34px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .btn {
    width: 100%;
  }
}

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.thank-you-popup[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.thank-you-popup .popup-content {
  background: transparent;
  padding: 24px;
  border-radius: 0;
  text-align: center;
  max-width: 640px;
  width: 100%;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.thank-you-popup[aria-hidden="true"] .popup-content {
  transform: translateY(20px);
}

.thank-you-popup .popup-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 130, 123, 0.15);
  color: var(--teal);
  font-size: 2.6rem;
  font-weight: 800;
  border-radius: 50%;
}

.thank-you-popup h3 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-family: "Playfair Display", serif;
}

.thank-you-popup p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
}

.footer-bottom {
    grid-column: 1 / -1;      /* Span the full footer width */
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.75);
    font-size: 0.95rem;
}

.footer-bottom span:last-child{
    color:#fff;
    font-weight:500;
}

@media (max-width:768px){
    .footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
}

/* ---------- Force hand cursor ---------- */

.contact-form button[type="submit"]{
    cursor:pointer !important;
}

.contact-form button[type="submit"]:hover{
    cursor:pointer !important;
}
