/* ============================================
   MESSAGE AFTER DEATH - Main Stylesheet
   Design: Refined, empathetic, trustworthy
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-bg-deep: #0f1118;
  --color-bg-section: #161822;
  --color-bg-card: #1c1f2e;
  --color-bg-light: #f8f6f3;
  --color-bg-warm: #f0ebe4;
  --color-gold: #c4a265;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #a88a4e;
  --color-text-light: #e8e4df;
  --color-text-muted: #c4c0bb;
  --color-text-dark: #2c2825;
  --color-text-body: #5a5550;
  --color-white: #ffffff;
  --color-border: rgba(196, 162, 101, 0.15);
  --color-border-light: rgba(0, 0, 0, 0.08);
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.12);
  --max-width: 1200px;
  --section-padding: 120px 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Section Headings --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title--large {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section-title--medium {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-body);
  max-width: 640px;
}

/* Dark section variants */
.dark .section-label {
  color: var(--color-gold-light);
}

.dark .section-title {
  color: var(--color-text-light);
}

.dark .section-subtitle {
  color: var(--color-text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-bg-deep);
}

.btn--primary:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 162, 101, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(232, 228, 223, 0.3);
}

.btn--outline-light:hover {
  border-color: var(--color-text-light);
  background: rgba(232, 228, 223, 0.08);
}

.btn--large {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(15, 17, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(196, 162, 101, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: var(--color-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bg-deep);
  background: var(--color-gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  margin: 6px 0;
  transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* Dark overlay on top of the image for text readability */
/* Two layered gradients: vertical for top/bottom fade, horizontal for left-dark/right-light */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 17, 24, 0.65) 0%,
      rgba(15, 17, 24, 0.45) 40%,
      rgba(15, 17, 24, 0.55) 70%,
      rgba(15, 17, 24, 0.9) 100%
    ),
    linear-gradient(90deg,
      rgba(15, 17, 24, 0.5) 0%,
      rgba(15, 17, 24, 0.3) 40%,
      rgba(15, 17, 24, 0.05) 75%,
      rgba(15, 17, 24, 0) 100%
    );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  margin-bottom: 150px
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Decorative accent line */
.hero__accent {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
  opacity: 0.15;
  transform: translateY(-50%);
  z-index: 2;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--color-white);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 80px;
}

.how-it-works__header .section-subtitle {
  margin: 16px auto 0;
}

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

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border-light), var(--color-border-light), transparent);
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  background: var(--color-white);
  z-index: 1;
}

.step__number-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-gold);
}

.step__icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold-dark);
  stroke-width: 1.5;
  fill: none;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.step__description {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* ============================================
   OUR STORY
   ============================================ */
.our-story {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.our-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.our-story__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-bottom: 36px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--color-gold);
}

.our-story__text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-body);
  margin-bottom: 20px;
}

.our-story__visual {
  position: relative;
}

.our-story__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.our-story__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-story__image-frame:hover .our-story__photo {
  transform: scale(1.03);
}

.our-story__accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--color-gold);
  opacity: 0.2;
  border-radius: 2px;
}

/* ============================================
   WHO THIS IS FOR
   ============================================ */
.use-cases {
  padding: var(--section-padding);
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}

.use-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(196, 162, 101, 0.04) 0%, transparent 70%);
}

.use-cases__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.use-cases__header .section-subtitle {
  color: var(--color-text-muted);
  margin: 16px auto 0;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.use-case-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 36px 28px;
  transition: all var(--transition-smooth);
}

.use-case-card:hover {
  border-color: rgba(196, 162, 101, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.use-case-card__icon {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 20px;
}

.use-case-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.use-case-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-break__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 24, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-break__text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .image-break {
    height: 300px;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-padding);
  background: var(--color-white);
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__header .section-subtitle {
  margin: 16px auto 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(196, 162, 101, 0.03), transparent);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px;
}

.pricing-card--featured .pricing-card__inner {
  padding-top: 16px;
}

.pricing-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.pricing-card__price {
  margin-bottom: 8px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-text-dark);
}

.pricing-card__amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-card__original-price {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-bottom: 24px;
}

.pricing-card__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 32px;
  min-height: 52px;
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  color: var(--color-text-body);
}

.pricing-card__feature:last-child {
  border-bottom: none;
}

.pricing-card__check {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq__header .section-subtitle {
  margin: 16px auto 0;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-gold-dark);
}

.faq__icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-body);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--color-bg-deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 30% 80%, rgba(196, 162, 101, 0.04) 0%, transparent 70%);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.contact__detail-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact__detail-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact__detail-text a {
  color: var(--color-gold);
  transition: color var(--transition-fast);
}

.contact__detail-text a:hover {
  color: var(--color-gold-light);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text-light);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 149, 144, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact__form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.final-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 24, 0.82);
  z-index: 1;
}

.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.2;
}

.final-cta__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.footer__brand span {
  color: var(--color-gold);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer__link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(154, 149, 144, 0.5);
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-text-light);
  padding: 16px 0;
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-gold);
}

.mobile-menu__cta {
  margin-top: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps::before {
    display: none;
  }

  .our-story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .our-story__visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Nav mobile */
  .nav__links {
    display: none;
  }

  .nav__cta-desktop {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  /* Hero mobile */
  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero__bg-image {
    object-position: 60% 50%;
  }

  .hero__accent {
    display: none;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Trust bar mobile */
  .trust-bar__inner {
    gap: 24px;
  }

  .trust-bar__item {
    font-size: 0.75rem;
  }

  /* Use cases mobile */
  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing mobile */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .faq__question {
    font-size: 1.05rem;
  }
}
