/* ============================================================
   JOURNEY FRANCHISING — style.css
   ============================================================ */

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

:root {
  --midnight: #1e2154;
  --gold: #e3ce9a;
  --white: #ffffff;
  --black: #000000;
  --muted: #f5f5f7;
  --body-text: rgba(30, 33, 84, 0.65);

  --font-display: "Playfair Display", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;

  --container: 1280px;
  --section-py: 120px;
  --radius: 0;

  --transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.6;
  color: var(--midnight);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

::selection {
  background: rgba(227, 206, 154, 0.3);
  color: var(--midnight);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: rgba(30, 33, 84, 0.18);
}

/* UTILS */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.text-gold {
  color: var(--gold) !important;
}
.text-white {
  color: var(--white) !important;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--midnight);
}
.body-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-text);
}
.section {
  padding-block: var(--section-py);
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal--right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* FOCUS RING */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  min-height: 52px;
  min-width: 44px;
}
.btn--gold {
  background: var(--gold);
  color: var(--midnight);
}
.btn--gold:hover {
  background: var(--white);
  color: var(--midnight);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--full {
  width: 100%;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: 80px;
  background: var(--midnight);
  border-bottom: 1px solid rgba(227, 206, 154, 0.2);
  box-shadow: 0 1px 8px rgba(30, 33, 84, 0.12);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--midnight);
  box-shadow: 0 1px 8px rgba(30, 33, 84, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon {
  height: 40px;
  width: auto;
}
.nav-logo-texto {
  height: 44px;
  width: auto;
  padding-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--midnight);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  min-height: 44px;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--midnight);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle span:first-child {
  width: 24px;
}
.nav-toggle span:last-child {
  width: 16px;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--midnight);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 24px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--gold);
}
.mobile-link--cta {
  margin-top: 16px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mobile-link--cta:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  height: 750px;
}

.hero-image-col {
  display: none;
  position: relative;
  width: 68%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.25),
    transparent 50%,
    rgba(30, 33, 84, 0.35)
  );
}
.hero-brand-word {
  position: absolute;
  bottom: 40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 800;
  color: rgba(227, 206, 154, 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  animation: slideInLeft 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-content-col {
  width: 100%;
  background: var(--midnight);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(28px, 5vw, 64px) 40px;
  position: relative;
  margin-top: 80px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeUp 0.9s ease 0.5s both;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s ease 0.7s both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.9s ease 0.9s both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll:hover {
  color: var(--gold);
}
.scroll-arrow {
  animation: bounce 2s ease infinite;
  display: inline-block;
  font-size: 20px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}
.about-text .section-title {
  margin-block: 8px 28px;
}
.about-text .body-text + .body-text {
  margin-top: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(30, 33, 84, 0.1);
}
.stat-number {
  font-family: var(--font-display);
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30, 33, 84, 0.45);
  margin-top: 6px;
}

.about-image {
  position: relative;
}
.about-img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
.gold-corner {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pains {
  background: var(--white);
}
.pains .section-header {
  max-width: 600px;
  margin-bottom: 60px;
}
.pains .section-title {
  margin-top: 8px;
}
.pains-list {
  border-top: 1px solid rgba(30, 33, 84, 0.1);
}
.pain-item {
  border-bottom: 1px solid rgba(30, 33, 84, 0.1);
  padding-block: 40px;
  display: grid;
  gap: 16px;
}
.pain-item-question {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--midnight);
  transition: color 0.4s;
}
.pain-item:hover .pain-item-question {
  color: var(--gold);
}
.pain-item-answer {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership .section-header {
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-intro {
  font-size: 16px;
  color: var(--body-text);
  margin-top: 20px;
  line-height: 1.8;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}
.leadership-card {
  background: var(--white);
  border: 1px solid rgba(30, 33, 84, 0.06);
  padding: clamp(32px, 5vw, 48px);
  transition: border-color 0.5s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.leadership-card:hover {
  border-color: rgba(227, 206, 154, 0.35);
  box-shadow: 0 8px 24px rgba(227, 206, 154, 0.08);
}
.leadership-card-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.4s;
}
.leadership-card:hover .leadership-card-image {
  transform: scale(1.05);
}
.leadership-card-header {
  margin-bottom: 20px;
}
.leadership-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--midnight);
  margin-bottom: 8px;
  transition: color 0.4s;
}
.leadership-card:hover .leadership-name {
  color: var(--gold);
}
.leadership-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.leadership-bio {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.8;
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.methodology-bg {
  position: absolute;
  inset: 0;
}
.methodology-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
}
.methodology .container {
  position: relative;
  z-index: 2;
}
.methodology .section-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.methodology .section-title {
  margin-top: 8px;
}

.steps {
  display: grid;
  gap: 0;
}
.step {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.step:last-child {
  border-bottom: none;
}
.step-number {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(227, 206, 154, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.4s;
}
.step:hover .step-icon {
  background: rgba(227, 206, 154, 0.1);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 480px;
}

/* ============================================================
   FRENTES
   ============================================================ */
.frentes {
  background: var(--white);
}
.frentes .section-header {
  max-width: 600px;
  margin-bottom: 60px;
}
.frentes .section-title {
  margin-top: 8px;
}
.frentes-grid {
  display: grid;
  gap: 24px;
}

.frente {
  border: 1px solid rgba(30, 33, 84, 0.1);
  padding: clamp(32px, 5vw, 56px);
  transition: border-color 0.5s;
}
.frente:hover {
  border-color: rgba(227, 206, 154, 0.4);
}
.frente-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--midnight);
  margin-block: 12px 20px;
}
.frente-desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 28px;
}
.frente-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.frente-list li {
  font-size: 15px;
  color: rgba(30, 33, 84, 0.65);
  padding-left: 20px;
  position: relative;
}
.frente-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   CASES
   ============================================================ */
.cases {
  background: var(--muted);
}
.section-header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 600px;
  margin-bottom: 60px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-card {
  background: var(--white);
  border: 1px solid rgba(30, 33, 84, 0.06);
  padding: clamp(32px, 5vw, 48px) 24px;
  text-align: center;
  transition: border-color 0.5s;
}
.case-card:hover {
  border-color: rgba(227, 206, 154, 0.35);
}
.case-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 33, 84, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--midnight);
  transition:
    background 0.4s,
    color 0.4s;
}
.case-card:hover .case-card-icon {
  background: rgba(227, 206, 154, 0.12);
  color: var(--gold);
}
.case-card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.4s;
}
.case-card:hover .case-card-image {
  transform: scale(1.05);
}
.case-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--midnight);
  margin-bottom: 8px;
}
.case-card-market {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30, 33, 84, 0.38);
}
.cases-note {
  text-align: center;
  font-size: 14px;
  color: rgba(30, 33, 84, 0.38);
  margin-top: 40px;
  letter-spacing: 0.08em;
}

/* LIGHTBOX */
.case-card {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition), visibility 0.4s var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 33, 84, 0.86);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  width: 90vw;
  height: 90vh;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  animation: lightboxSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: lightboxImageFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxImageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  min-height: 120px;
}

.lightbox-filmstrip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.lightbox-thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.lightbox-thumbnail:hover {
  border-color: rgba(227, 206, 154, 0.5);
  transform: scale(1.05);
}

.lightbox-thumbnail.active {
  border-color: var(--gold);
}

.lightbox-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-nav {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-nav--prev {
  order: -1;
}

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.differentials {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.differentials-bg {
  position: absolute;
  inset: 0;
}
.differentials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}
.differentials .container {
  position: relative;
  z-index: 2;
}
.differentials .section-header {
  margin-bottom: 64px;
}
.differentials .section-title {
  margin-top: 8px;
}
.diffs-grid {
  display: grid;
  gap: 20px;
}

.diff-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.5s;
  backdrop-filter: blur(4px);
}
.diff-card:hover {
  border-color: rgba(227, 206, 154, 0.25);
}
.diff-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(227, 206, 154, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.diff-card:hover .diff-card-icon {
  background: rgba(227, 206, 154, 0.1);
}
.diff-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.diff-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}
.contact-text .section-title {
  margin-block: 8px 24px;
}
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  color: rgba(30, 33, 84, 0.55);
  font-size: 14px;
  transition: color 0.3s;
  min-height: 44px;
}
.contact-social:hover {
  color: var(--gold);
}

.contact-form,
.form-success {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30, 33, 84, 0.4);
}
.form-input,
.form-textarea {
  height: 52px;
  padding-inline: 16px;
  background: var(--muted);
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--midnight);
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-textarea {
  height: 130px;
  padding: 16px;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(30, 33, 84, 0.28);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-note {
  font-size: 13px;
  color: rgba(30, 33, 84, 0.3);
  text-align: center;
}

.form-success {
  display: none;
  align-items: center;
  text-align: center;
  padding: 80px 32px;
}
.form-success.visible {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(227, 206, 154, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-size: 24px;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--midnight);
}
.form-success p {
  color: var(--body-text);
  max-width: 320px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--midnight), rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  padding-block: 80px 48px;
}
.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo-icon {
  height: 200px;
  width: auto;
}
.footer-nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  min-height: 44px;
}
.footer-ig:hover {
  color: var(--gold);
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yeomids-logo {
  height: 20px;
  width: auto;
}
.footer-word {
  position: relative;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  text-align: center;
  line-height: 1;
  user-select: none;
  padding-bottom: 16px;
}

.footer-copy {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
}
.yeomids-logo {
  height: 1.4rem;
  object-fit: contain;
  transition:
    opacity 0.3s,
    transform 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.yeomids-link {
  display: inline-flex;
  align-items: center;
}
.yeomids-link:hover .yeomids-logo {
  opacity: 0.8;
  transform: scale(1.05);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(-20px);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pain-item {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .step:last-child {
    border-right: none;
  }
  .frentes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .diffs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom p {
    flex-direction: row;
  }
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-image-col {
    display: block;
  }
  .hero-content-col {
    width: 32%;
    padding: 60px clamp(28px, 5vw, 64px) 40px;
    margin-top: 80px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  * {
    box-sizing: border-box;
  }
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  :root {
    --section-py: 72px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom p {
    font-size: 10px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    justify-content: center;
  }
  .yeomids-logo {
    height: 16px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
