/* =========================================================
   DFix Digital — Landing
   Aesthetic: refined minimalism · warm off-white · ink black
   Type: Fraunces (display) + Sora (body)
   ========================================================= */

:root {
  --bg: #f5f2eb;
  --bg-alt: #efeae0;
  --surface: #ffffff;
  --ink: #15171a;
  --ink-soft: #2b2d33;
  --muted: #6e6f76;
  --line: #e4dfd3;
  --accent: #d9583e; /* terracota — único acento */
  --accent-soft: #f4c8bc;
  --green: #4a7c59;
  --shadow-sm:
    0 1px 2px rgba(21, 23, 26, 0.04), 0 2px 8px rgba(21, 23, 26, 0.04);
  --shadow-md:
    0 4px 12px rgba(21, 23, 26, 0.06), 0 12px 32px rgba(21, 23, 26, 0.06);
  --shadow-lg:
    0 10px 24px rgba(21, 23, 26, 0.08), 0 24px 60px rgba(21, 23, 26, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

/* =================== TYPOGRAPHY =================== */
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}
em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
}

/* =================== NAVBAR =================== */
.navbar {
  padding: 1.1rem 0;
  background: rgba(245, 242, 235, 0.7);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    padding var(--t-base),
    border-color var(--t-base),
    background var(--t-base);
}
.navbar.scrolled {
  padding: 0.7rem 0;
  border-bottom-color: var(--line);
  background: rgba(245, 242, 235, 0.92);
}

.navbar-brand {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink) !important;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}
.logo-text {
  color: var(--ink);
}
.logo-text em {
  color: var(--accent);
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  color: var(--ink-soft) !important;
  font-weight: 400;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: color var(--t-fast);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width var(--t-base);
}
.navbar-nav .nav-link:hover {
  color: var(--ink) !important;
}
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 2rem);
}

.btn-primary-soft {
  background: var(--ink);
  color: var(--bg) !important;
  border: 1px solid var(--ink);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-primary-soft i {
  transition: transform var(--t-fast);
}
.btn-primary-soft:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
}
.btn-primary-soft:hover i {
  transform: translate(2px, -2px);
}

.navbar-toggler {
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 1.3rem;
  color: var(--ink);
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 30%,
    transparent 70%
  );
  opacity: 0.4;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  top: -100px;
  right: -80px;
}
.orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c8d9c3, transparent 70%);
  bottom: -100px;
  left: -60px;
  animation-delay: -9s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}

.hero-container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(74, 124, 89, 0);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.hero-title em {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-cta {
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-size: 0.98rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all var(--t-base);
  border-width: 1px;
}
.btn-cta i {
  transition: transform var(--t-fast);
}
.btn-dark.btn-cta {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-dark.btn-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-dark.btn-cta:hover i {
  transform: translateY(3px);
}
.btn-outline-dark.btn-cta {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark.btn-cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-item strong {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.meta-item span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.meta-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

/* Hero card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(-1.2deg);
  transition: transform var(--t-slow);
}
.hero-card:hover {
  transform: rotate(0deg) translateY(-6px);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.status-text {
  flex: 1;
}
.status-time {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink-soft);
}
.card-body-custom {
  padding: 1.6rem 1.4rem;
}
.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.card-title-custom {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}
.card-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--line);
}
.price-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
.price-value {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--ink);
}
.price-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--t-fast);
}
.price-link:hover {
  gap: 0.6rem;
  color: var(--accent);
}
.card-footer-custom {
  background: var(--bg-alt);
  padding: 0.7rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.ticker {
  white-space: nowrap;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ticker span::after {
  content: " · Reparación · Limpieza · Optimización · Diseño Web · Recuperación de Datos";
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-hint span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--ink-soft));
  animation: scrollIndicator 2.4s ease-in-out infinite;
}
@keyframes scrollIndicator {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* =================== SECTION BASE =================== */
.section {
  padding: 6.5rem 0;
  position: relative;
}
.section-head {
  margin-bottom: 4rem;
  max-width: 720px;
}
.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--accent);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =================== SERVICES =================== */
.services-section {
  background: var(--bg);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width var(--t-base);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(-6deg);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
  transition: all var(--t-base);
}
.service-name {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
  line-height: 1.55;
}
.service-price {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--ink);
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.service-price span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.3rem;
}

.service-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.service-card--featured .service-name,
.service-card--featured .service-price {
  color: var(--bg);
}
.service-card--featured .service-desc {
  color: rgba(245, 242, 235, 0.7);
}
.service-card--featured .service-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg);
}
.service-card--featured .service-price {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.service-card--featured .service-price span {
  color: rgba(245, 242, 235, 0.55);
}
.service-card--featured:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-card--featured::before {
  background: var(--accent);
}
.badge-featured {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* =================== PACKS =================== */
.packs-section {
  background: var(--bg-alt);
}

.pack-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  height: 100%;
  position: relative;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pack-number {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pack-title {
  font-size: 1.55rem;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}
.pack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  flex: 1;
}
.pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.93rem;
}
.pack-list li:last-child {
  border-bottom: none;
}
.pack-list i {
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 2px;
}
.pack-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-from {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-right: auto;
}
.price-amount {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-currency {
  font-size: 0.85rem;
  color: var(--muted);
}

.pack-card .btn-dark,
.pack-card .btn-light {
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--t-base);
}
.pack-card .btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}
.pack-card .btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.pack-card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-12px);
}
.pack-card--accent .pack-title,
.pack-card--accent .price-amount {
  color: var(--bg);
}
.pack-card--accent .pack-list li {
  color: rgba(245, 242, 235, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.pack-card--accent .pack-number,
.pack-card--accent .price-from,
.pack-card--accent .price-currency {
  color: rgba(245, 242, 235, 0.55);
}
.pack-card--accent .pack-price {
  border-color: rgba(255, 255, 255, 0.16);
}
.pack-card--accent .pack-list i {
  color: var(--accent);
}
.pack-card--accent .btn-light {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}
.pack-card--accent .btn-light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pack-popular {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

/* =================== ABOUT =================== */
.about-section {
  background: var(--bg);
}
.about-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.feature-item:hover {
  border-color: var(--ink);
  transform: translateX(4px);
}
.feature-item i {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}
.feature-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all var(--t-base);
}
.stat-block:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.stat-block:hover .stat-num,
.stat-block:hover .stat-label {
  color: var(--bg);
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  transition: color var(--t-base);
}
.stat-num small {
  font-size: 1.4rem;
  color: var(--accent);
  font-style: italic;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--t-base);
}
.stat-1 {
  transform: translateY(0);
}
.stat-2 {
  transform: translateY(20px);
}
.stat-3 {
  transform: translateY(-10px);
}
.stat-4 {
  transform: translateY(10px);
}

/* =================== CONTACT =================== */
.contact-section {
  background: var(--bg-alt);
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.contact-info {
  background: var(--ink);
  color: var(--bg);
  padding: 2.6rem 2.2rem;
  border-radius: var(--radius-md);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 88, 62, 0.4), transparent 70%);
  filter: blur(40px);
}
.contact-info-title {
  font-size: 1.7rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-info-text {
  color: rgba(245, 242, 235, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
  position: relative;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--bg);
  transition: all var(--t-fast);
}
.contact-list li:hover .contact-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 235, 0.5);
  margin-bottom: 0.2rem;
}
.contact-value {
  color: var(--bg);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: color var(--t-fast);
}
a.contact-value:hover {
  color: var(--accent-soft);
}

.contact-hours {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(245, 242, 235, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.dot-green {
  width: 8px;
  height: 8px;
  background: #6fcf97;
  border-radius: 50%;
}

/* Form */
.contact-form {
  background: var(--surface);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-control,
.form-select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--t-fast);
}
.form-control::placeholder {
  color: var(--muted);
  opacity: 0.7;
}
.form-control:focus,
.form-select:focus {
  background: var(--surface);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(21, 23, 26, 0.06);
  outline: none;
  color: var(--ink);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  transition: all var(--t-base);
}
.btn-submit:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-submit i {
  transition: transform var(--t-fast);
}
.btn-submit:hover i {
  transform: translateX(4px);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.92rem;
  text-align: center;
  min-height: 1.2rem;
  color: var(--green);
  font-weight: 500;
}
.form-feedback.error {
  color: var(--accent);
}

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  color: rgba(245, 242, 235, 0.75);
  padding: 3rem 0 2rem;
}
.footer .navbar-brand {
  color: var(--bg) !important;
}
.footer .logo-mark {
  background: var(--bg);
  color: var(--ink);
}
.footer .logo-text {
  color: var(--bg);
}
.footer .logo-text em {
  color: var(--accent-soft);
}
.footer-note {
  color: rgba(245, 242, 235, 0.6);
  font-size: 0.92rem;
  margin: 0;
}
.footer-copy {
  color: rgba(245, 242, 235, 0.85);
  font-size: 0.92rem;
  margin: 0 0 0.2rem;
}
.footer-note.small {
  font-size: 0.82rem;
}

/* =================== ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
    gap: 0.4rem;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .btn-primary-soft {
    display: inline-flex;
    margin-top: 0.5rem;
  }
  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.6rem);
  }
  .scroll-hint {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .section {
    padding: 4.5rem 0;
  }
  .section-head {
    margin-bottom: 2.6rem;
  }
  .hero-meta {
    gap: 1rem;
  }
  .meta-item strong {
    font-size: 1.4rem;
  }
  .meta-divider {
    height: 28px;
  }
  .pack-card--accent {
    transform: translateY(0);
  }
  .about-visual {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .stat-block {
    padding: 1.4rem 1.2rem;
  }
  .stat-num {
    font-size: 2.4rem;
  }
  .stat-1,
  .stat-2,
  .stat-3,
  .stat-4 {
    transform: translateY(0);
  }
  .contact-info,
  .contact-form {
    padding: 1.8rem 1.4rem;
  }
  .hero-actions .btn-cta {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }
}
@media (max-width: 479.98px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .pack-title {
    font-size: 1.35rem;
  }
  .price-amount {
    font-size: 1.9rem;
  }
}
