/* =========================================================
   ROOT / VARIABLES
========================================================= */

:root {
  --ink: #191817;
  --muted: #7a7a7a;
  --accent: #10B981;
  --accent-secondary: #D8B4FE;

  --cream: #ffffff;
  --yellow: #fafafa;
  --lilac: #ffffff;
  --mint: #f8f8f8;
  --peach: #ffffff;
  --blue: #fafafa;
  --rose: #ffffff;

  --white: rgba(255, 255, 255, 0.68);

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  --glow-yellow: none;
  --glow-lilac: none;
  --glow-mint: none;
  --glow-peach: none;
  --glow-blue: none;
  --glow-cream: none;
  --glow-rose: none;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-10px) rotate(var(--r, 0deg));
  }
}

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

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 0.15;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

@keyframes inputGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes softFloat {

  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }

  50% {
    transform: rotate(1.5deg) translateY(-8px);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow:
      0 18px 35px rgba(25, 24, 23, 0.09),
      0 0 0 0 rgba(29, 27, 25, 0.1);
  }

  50% {
    box-shadow:
      0 18px 35px rgba(25, 24, 23, 0.09),
      0 0 0 10px rgba(29, 27, 25, 0);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }

  100% {
    transform: translateX(220%) skewX(-12deg);
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}


/* =========================================================
   GLOBAL
========================================================= */

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Sora", system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 36px;
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 50;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
      #10B981,
      #34D399,
      #10B981);
  transition: width 0.1s linear;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
  font-family: "Sora", system-ui, sans-serif;
  position: sticky;
  top: 14px;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 13px 16px 13px 18px;
  margin-bottom: 24px;

  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.64);

  border: 1px solid rgba(25, 24, 23, 0.08);
  border-radius: 999px;

  box-shadow: 0 10px 28px rgba(39, 34, 30, 0.06);

  transition:
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px rgba(39, 34, 30, 0.12);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0px;

  text-decoration: none;
  color: inherit;
}

.brand-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0px;
  width: 100%;
}

.brand-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.brand-author {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #8a857e;
  text-align: right;
  width: 100%;
}

.brand-mark {
  display: grid;
  place-items: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: transparent;
  color: var(--ink);

  font-size: 15px;

  transition: transform 0.5s ease;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.brand:hover .brand-mark {
  transform: rotate(180deg);
  box-shadow: 0 0 20px rgba(216, 180, 254, 0.5);
}

.nav-links {
  display: flex;
  gap: 26px;

  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;

  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -3px;

  width: 0;
  height: 2px;

  background: var(--ink);

  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink);
  color: #fff;

  border-radius: 999px;

  padding: 10px 15px;

  font-size: 13px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px rgba(25, 24, 23, 0.28);
}

.nav-cta span {
  margin-left: 5px;
  display: inline-block;

  transition: transform 0.25s ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}


/* =========================================================
   MAIN / CARDS
========================================================= */

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

main > section:nth-of-type(1) { position: relative; }
main > section:nth-of-type(2) { position: sticky; top: 0; z-index: 1; }
main > section:nth-of-type(3) { position: sticky; top: 0; z-index: 2; }
main > section:nth-of-type(4) { position: sticky; top: 0; z-index: 3; }
main > section:nth-of-type(5) { position: sticky; top: 0; z-index: 4; }
main > section:nth-of-type(6) { position: sticky; top: 0; z-index: 5; }
main > section:nth-of-type(7) { position: relative; z-index: 6; }

.card {
  border-radius: 32px;

  padding: clamp(32px, 5vh, 48px) 48px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: var(--shadow);

  transition: box-shadow 0.45s ease;
}

.card-yellow:hover,
.card-lilac:hover,
.card-mint:hover,
.card-peach:hover,
.card-rose:hover,
.card-blue:hover,
.card-cream:hover {
  box-shadow: var(--shadow);
}

.card h1,
.card h2,
.card h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.055em;
  margin: 0;
}

.card h2 {
  font-size: clamp(2.6rem, 6.5vh, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
}

.card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}


/* =========================================================
   HERO
========================================================= */

.card-yellow {
  background-color: #0f0f10;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 9, 0.88) 0%, rgba(8, 8, 9, 0.55) 45%, rgba(8, 8, 9, 0.62) 100%),
    url("assets/mockup-inspirewebs.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-start;
  padding-top: clamp(20px, 6vh, 60px);
  padding-bottom: clamp(30px, 6vh, 60px);

  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
}

.hero-copy {
  max-width: 100%;
}

.eyebrow,
.section-kicker {
  letter-spacing: 0.14em;
  font-weight: 800;

  opacity: 0.65;

  margin-bottom: 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--accent-secondary);
}

.eyebrow {
  font-size: 12px;
}

.section-kicker {
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.03em;

  opacity: 0.85;

  margin-bottom: 20px;

  animation: rotateIn 0.6s ease-out forwards;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 8vh, 60px);
}

.cta-link {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cta-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-link:hover::before {
  transform: scaleX(1);
}

.cta-link span {
  transition: transform 0.3s ease;
}

.cta-link:hover span {
  transform: translateX(4px);
}

/* Hero CTA */
.hero-cta {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding-bottom: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hero-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta:hover::before {
  transform: scaleX(1);
}

.hero-cta span {
  font-size: 1.3em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.hero-cta:hover span {
  transform: translate(6px, -6px);
}

/* Form Submit CTA */
.form-submit-cta {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  font-family: inherit;
}

.form-submit-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-submit-cta:hover::before {
  transform: scaleX(1);
}

.form-submit-cta span {
  transition: transform 0.3s ease;
}

.form-submit-cta:hover span {
  transform: translateX(4px);
}

/* Contact Actions - Vertical */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: clamp(20px, 3vh, 30px);
}

/* Hero Form */
.hero-form {
  display: flex;
  width: fit-content;
  gap: 24px;
  margin-top: clamp(24px, 4vh, 40px);
  margin-bottom: clamp(20px, 3vh, 30px);
  max-width: 700px;
  align-items: flex-end;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1;
  min-width: 140px;
  padding: clamp(10px, 1.2vw, 14px) 16px;
  border: none;
  border-radius: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  transition: all 0.3s ease;
}

.hero-form input[type="email"],
.hero-form input[type="tel"] {
  flex: 1;
  max-width: 220px;
}

.hero-form input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.hero-form input:focus {
  outline: none;
  border-color: var(--accent);
  animation: inputGlow 1.5s ease-out;
}

.hero-form-btn {
  padding: clamp(10px, 1.2vw, 14px) 0;
  background: none;
  color: var(--ink);
  border: none;
  border-radius: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
}

/* Hero Form Card (alternativa) */
.hero-form-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;

  max-width: 620px;
  margin-top: clamp(24px, 4vh, 40px);
  margin-bottom: clamp(20px, 3vh, 30px);

  background: #fff;
  border-radius: 18px;
  padding: 10px;

  box-shadow: 0 20px 45px rgba(25, 24, 23, 0.09);
  border: 1px solid rgba(25, 24, 23, 0.06);
}

.hero-form-field {
  display: flex;
  align-items: center;
  gap: 10px;

  flex: 1;
  min-width: 160px;

  padding: 10px 14px;
  border-radius: 12px;

  background: #f6f5f3;
  transition: background 0.2s ease;
}

.hero-form-field:focus-within {
  background: #eef9f4;
}

.hero-form-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
}

.hero-form-field:focus-within .hero-form-icon {
  color: var(--accent);
}

.hero-form-card input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-form-card input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.hero-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 22px;
  border: none;
  border-radius: 12px;

  background: var(--accent);
  color: #fff;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;
  white-space: nowrap;

  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35);
}

@media (max-width: 650px) {
  .hero-form-card {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-form-submit {
    width: 100%;
  }
}

/* Hero Form Pill (otra alternativa: un solo campo) */
.hero-form-pill {
  display: flex;
  align-items: center;
  gap: 6px;

  max-width: 480px;
  margin-top: clamp(20px, 3vh, 32px);
  margin-bottom: clamp(20px, 3vh, 30px);

  background: var(--yellow);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(25, 24, 23, 0.06);
}

.hero-form-pill input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 0;
}

.hero-form-pill input::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.hero-form-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;

  padding: 12px 20px;
  border: none;
  border-radius: 999px;

  background: none;
  color: var(--ink);

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;
  white-space: nowrap;

  transition: transform 0.2s ease;
}

.hero-form-pill-btn span {
  font-size: 1.2em;
  display: inline-block;
  line-height: 1;
  transition: transform 0.3s ease;
}

.hero-form-pill-btn:hover span {
  transform: translate(3px, -3px);
}

@media (max-width: 480px) {
  .hero-form-pill {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 14px;
    gap: 10px;
  }

  .hero-form-pill input {
    padding: 8px 4px;
  }

  .hero-form-pill-btn {
    width: 100%;
  }
}


.hero-form-btn span {
  font-size: 1.4em;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
  color: var(--ink);
}

.hero-form-btn:hover span {
  transform: translate(4px, -4px);
}

.section-kicker::before {
  width: 9px;
  height: 9px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 9.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: normal;
  color: #e8e8e8;
}

.hero-copy .hero-subheading {
  font-size: 16px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: clamp(12px, 2vh, 20px) 0 clamp(16px, 2.5vh, 28px) 0;
}

.hero h1 em {
  font-style: normal;
}

.highlight-green {
  color: #34d399;
}

.hero p {
  max-width: 680px;

  margin: clamp(8px, 1.2vh, 14px) 0 clamp(18px, 2.5vh, 26px) 0;

  font-size: clamp(1.2rem, 2.2vw, 1.8rem);

  font-weight: 600;
  color: #cfcfcf;

  line-height: 1.5;
}

.hero .hero-how-link {
  color: #ffffff;
}

.hero .trust-row strong {
  color: #ffffff;
}

.hero .trust-row span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;

  flex-wrap: wrap;

  margin-bottom: clamp(0px, 2vh, 12px);
}

.hero-socials {
  display: flex;
  gap: 14px;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-social-icon svg {
  width: 30px;
  height: 30px;
}

.hero-social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;

  padding: 0 21px;

  border-radius: 999px;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  position: relative;
  overflow: hidden;
}

.hero-actions .button {
  min-height: clamp(56px, 9vh, 76px);

  padding: 0 clamp(28px, 3.5vw, 42px);

  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(25, 24, 23, 0.22);
}

.button span {
  display: inline-block;

  transition: transform 0.25s ease;
}

.button:hover span {
  transform: translate(3px, -1px);
}

.button-dark {
  background: var(--accent);
  color: #fff;
}

.button-dark::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 40%;
  height: 100%;

  background: linear-gradient(115deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);

  transform: translateX(-120%) skewX(-12deg);
}

.button-dark:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.button-dark:hover::before {
  animation: shineSweep 0.9s ease forwards;
}

.text-link {
  font-weight: 900;
  font-size: clamp(16px, 2.5vw, 22px);
  position: relative;
  display: inline-block;
}

.hero-how-link {
  display: inline-block;
  margin: clamp(16px, 2.5vh, 24px) 0;
  font-size: 17px;
}

.hablemos-cta {
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: -0.02em;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.trust-row {
  display: flex;

  gap: clamp(35px, 5vw, 56px);

  margin-top: clamp(20px, 5vh, 58px);
  margin-bottom: clamp(20px, 4vh, 40px);
}

.trust-row div {
  display: flex;
  flex-direction: column;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.trust-row div:nth-child(1) {
  animation-delay: 0.1s;
}

.trust-row div:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-row div:nth-child(3) {
  animation-delay: 0.3s;
}

.trust-row strong {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.02em;
}

.trust-row span {
  color: var(--muted);

  font-size: clamp(0.85rem, 1vw, 0.95rem);

  margin-top: 4px;
}


/* =========================================================
   SERVICE
========================================================= */

.card-lilac {
  background: var(--lilac);

  display: flex;
  align-items: center;

  min-height: 100vh;
  min-height: 100dvh;
}

.card-lilac h2 {
  line-height: 0.98;
}

.card-lilac h2 span {
  opacity: 0.52;
}

.card-lilac p {
  max-width: 560px;

  margin-top: clamp(16px, 2vh, 22px);
  margin-bottom: clamp(20px, 3vh, 32px);
}

.service-features {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(16px, 2vh, 24px);

  margin-top: clamp(20px, 3vh, 32px);
}

.feature-item {
  display: flex;

  gap: clamp(12px, 2vw, 16px);

  align-items: center;
}

.feature-icon {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);

  border-radius: 50%;

  border: 2px solid var(--ink);

  display: grid;
  place-items: center;

  font-weight: 800;

  font-size: clamp(1rem, 1.5vw, 1.4rem);

  flex-shrink: 0;
}


.feature-item span {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);

  font-weight: 600;

  line-height: 1.4;
}


/* =========================================================
   IMPACT
========================================================= */

.card-mint {
  background: var(--mint);

  display: flex;
  align-items: center;

  min-height: 100vh;
  min-height: 100dvh;
}

.testimonial-card>div {
  max-width: 760px;
}

.testimonial-card>div>.section-kicker,
.testimonial-card>div>h2,
.testimonial-card>div>p {
  color: var(--ink);
}

.impact-highlight {
  margin-top: clamp(24px, 4vh, 40px);

  padding: clamp(16px, 2.5vh, 24px);

  background: rgba(255, 255, 255, 0.6);

  border-radius: 16px;
}

.impact-highlight strong {
  display: block;

  font-size: clamp(1.3rem, 2.2vw, 1.8rem);

  margin-bottom: 8px;

  color: var(--ink);
}

.impact-highlight span {
  display: block;

  color: var(--muted);

  font-size: clamp(0.95rem, 1.8vw, 1.1rem);

  line-height: 1.6;
}


/* =========================================================
   PROCESS
========================================================= */

.card-peach {
  background: var(--peach);

  min-height: 100vh;
  min-height: 100dvh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-peach>div>p strong {
  font-weight: 800;
}

.process-steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: clamp(24px, 4vw, 48px);

  margin-top: clamp(32px, 5vh, 56px);
}

.process-step {
  display: flex;

  gap: clamp(20px, 3vw, 32px);

  align-items: flex-start;
}

.step-number {
  font-size: clamp(2.4rem, 5vw, 3.8rem);

  font-weight: 900;

  color: var(--ink);

  opacity: 0.15;

  flex-shrink: 0;

  line-height: 1;

  animation: zoomIn 1.2s ease-out forwards;
}

.process-step:nth-child(1) .step-number {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) .step-number {
  animation-delay: 0.2s;
}

.process-step:nth-child(3) .step-number {
  animation-delay: 0.3s;
}
}

.step-content h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);

  font-weight: 800;

  margin: 0 0 clamp(8px, 1.5vh, 12px) 0;
}

.step-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);

  color: var(--muted);

  margin: 0;

  line-height: 1.6;
}


/* =========================================================
   PROJECTS
========================================================= */

.card-rose {
  background: var(--rose);

  min-height: 100vh;
  min-height: 100dvh;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  position: relative;

  padding: clamp(32px, 5vh, 48px) 48px;
}

.card-rose .section-kicker,
.card-rose h2 {
  position: relative;

  z-index: 2;

  color: #000;
}

.card-rose .section-kicker::before {
  background: #000;
}

.card-rose .section-kicker {
  margin-bottom: 8px;

  flex-shrink: 0;
}

.card-rose h2 {
  margin-bottom: clamp(16px, 3vh, 28px);

  flex-shrink: 0;

  max-width: 78%;
}


/* =========================================================
   PROJECT CAROUSEL
========================================================= */

.mockups-image-container {
  position: relative;

  flex: 1;

  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  margin-top: 2rem;
}

.mockups-image {
  width: 100%;
  height: auto;
  max-width: 620px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

.projects-carousel-wrapper {
  position: relative;

  flex: 1;

  min-height: 0;

  display: none;
  flex-direction: column;

  width: 100%;
}

.projects-grid {
  display: flex;

  gap: 0;

  width: 100%;
  height: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;

  overflow: hidden;

  border-radius: 0;

  flex: 0 0 100%;

  width: 100%;
  height: 100%;

  scroll-snap-align: start;

  display: flex;
  align-items: flex-end;

  background: transparent;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-photo {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position: center;

  display: block;

  max-width: 900px;
  max-height: 80vh;

  margin: auto;
}


/* =========================================================
   PROJECT MOCKUPS
========================================================= */

.project-card[class*="mock"] {
  background: linear-gradient(135deg,
      #fafafa 0%,
      #f0f0f0 100%);

  display: flex;
  flex-direction: column;
}


/* DarkFeather */
.project-mock-darkfeather {
  background: linear-gradient(135deg,
      #1a1a1a 0%,
      #2a2a2a 100%);
}

.dark-nav {
  padding: clamp(8px, 2vh, 12px);

  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.8rem;

  color: #ccc;

  font-weight: 600;
}

.dark-hero {
  flex: 1;

  padding: clamp(12px, 2.5vh, 16px);

  display: flex;
  flex-direction: column;

  justify-content: center;
}


/* Unbounce */
.project-mock-unbounce {
  background: linear-gradient(135deg,
      #1a5fd4 0%,
      #2d75ff 100%);

  display: flex;
  flex-direction: column;
}

.unbounce-hero {
  padding: clamp(10px, 2.5vh, 14px);

  flex-shrink: 0;
}

.unbounce-grid {
  flex: 1;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: clamp(4px, 1.2vw, 8px);

  padding: 0 clamp(10px, 2vw, 14px) clamp(10px, 2vw, 14px);
}

.unbounce-item {
  border-radius: clamp(4px, 0.8vw, 8px);
}


/* Interior */
.project-mock-interior {
  background: linear-gradient(135deg,
      #f5f0e8 0%,
      #ebe3d7 100%);
}

.interior-header {
  padding: clamp(8px, 2vh, 12px);

  font-size: 0.8rem;

  font-weight: 700;

  color: #8b7355;
}

.interior-content {
  flex: 1;

  padding: clamp(12px, 2.5vh, 16px);

  display: flex;
  flex-direction: column;

  justify-content: center;
}


/* Nextora */
.project-mock-nextora {
  background: linear-gradient(135deg,
      #d9e8e3 0%,
      #cce3db 100%);
}

.nextora-header {
  padding: clamp(8px, 2vh, 12px);

  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid rgba(45, 95, 79, 0.1);
}

.nextora-content {
  flex: 1;

  padding: clamp(12px, 2.5vh, 16px);

  display: flex;
  flex-direction: column;

  justify-content: center;
}


/* Beauty */
.project-mock-beauty {
  background: linear-gradient(135deg,
      #f4a6a6 0%,
      #e88f8f 100%);
}

.beauty-header {
  padding: clamp(8px, 2vh, 12px);

  font-size: 0.8rem;

  font-weight: 700;

  color: #fff;

  opacity: 0.8;
}

.beauty-content {
  flex: 1;

  padding: clamp(12px, 2.5vh, 16px);

  display: flex;
  flex-direction: column;

  justify-content: center;
}


/* Legal */
.project-mock-legal {
  background: linear-gradient(135deg,
      #f9e9e9 0%,
      #f3dede 100%);
}

.legal-header {
  padding: clamp(8px, 2vh, 12px);

  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid rgba(212, 106, 106, 0.08);
}

.legal-content {
  flex: 1;

  padding: clamp(12px, 2.5vh, 16px);

  display: flex;
  flex-direction: column;

  justify-content: center;
}


/* =========================================================
   PROJECT OVERLAY
========================================================= */

.project-overlay {
  display: none;
}

.project-overlay strong {
  display: block;

  color: #fff;

  font-size: clamp(1.1rem, 3vw, 2rem);

  font-weight: 800;

  letter-spacing: -0.02em;

  line-height: 1.1;
}

.project-overlay small {
  display: block;

  color: rgba(255, 255, 255, 0.9);

  font-size: clamp(0.8rem, 1.8vw, 1.1rem);

  margin-top: clamp(4px, 0.8vh, 8px);

  font-weight: 500;
}


/* =========================================================
   CAROUSEL BUTTONS
========================================================= */

.carousel-nav {
  position: absolute;

  right: clamp(20px, 4vw, 40px);
  bottom: clamp(24px, 4vh, 48px);

  display: flex;

  gap: clamp(10px, 2vw, 16px);

  z-index: 20;
}

.carousel-btn {
  width: clamp(44px, 8vw, 56px);
  height: clamp(44px, 8vw, 56px);

  border-radius: 50%;

  background: rgba(10, 9, 8, 0.7);

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.2);

  font-size: clamp(1rem, 2vw, 1.4rem);

  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;

  display: grid;
  place-items: center;

  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(10, 9, 8, 0.9);

  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.96);
}


/* =========================================================
   PRICING
========================================================= */

.card-blue {
  background: var(--blue);

  display: grid;

  grid-template-columns: minmax(0, 1fr) 330px;

  gap: 40px;

  align-items: center;

  align-content: center;

  min-height: 100vh;
  min-height: 100dvh;
}

.card-blue p {
  max-width: 650px;
}

.price-box {
  background: #fff;

  border-radius: 25px;

  padding: 28px;

  box-shadow: 0 18px 35px rgba(25, 24, 23, 0.09);

  animation: pulseGlow 3.2s ease-in-out infinite;
}

.price-label {
  font-size: 11px;

  font-weight: 800;

  opacity: 0.55;
}

.price {
  font-family: "Sora";

  font-size: 4.6rem;

  line-height: 0.95;

  letter-spacing: -0.08em;

  margin: 8px 0;
}

.price span {
  font-size: 2rem;

  letter-spacing: -0.03em;
}

.price-note {
  color: var(--muted);

  font-size: 0.85rem;

  margin-bottom: 22px;
}

.full {
  width: 100%;
}


/* =========================================================
   CONTACT
========================================================= */

.card-cream {
  background: #ececea;

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 56px;

  align-items: center;

  align-content: center;

  min-height: 100vh;
  min-height: 100dvh;

  overflow: visible;
}

.contact-card p {
  max-width: 480px;

  margin-bottom: 0;
}

.contact-panel {
  display: flex;

  flex-direction: column;

  gap: clamp(14px, 2.5vh, 20px);

  min-width: 0;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: clamp(16px, 2.8vh, 24px);
}

.form-row {
  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: clamp(16px, 2.8vh, 24px);
}

.contact-form label {
  display: flex;

  flex-direction: column;

  gap: 8px;

  font-family: "Sora", sans-serif;

  font-size: 0.85rem;

  font-weight: 600;

  letter-spacing: 0;

  line-height: 1.08;

  color: var(--muted);

  min-width: 0;
}

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

  min-width: 0;

  font-family: "Sora", sans-serif;

  font-size: 1rem;

  font-weight: 400;

  letter-spacing: -0.02em;

  color: var(--ink);

  padding: 14px 16px;

  border-radius: 14px;

  border: none;

  background: #f6f5f3;

  resize: vertical;

  transition: background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);

  opacity: 0.7;

  font-weight: 400;
}

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

  background: #eef9f4;
}

.form-status {
  margin: 0;

  font-size: 0.85rem;

  font-weight: 700;

  min-height: 1em;
}

.form-status.success {
  color: #2f8f57;
}

.form-status.error {
  color: #c1503f;
}

.contact-alt {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  flex-wrap: wrap;
}

.contact-alt span {
  font-size: 0.85rem;

  color: var(--muted);

  font-weight: 600;
}

.contact-phone {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 56px;

  padding: 0 26px;

  border-radius: 999px;

  background: var(--accent);

  color: #fff;

  font-weight: 800;

  font-size: 16px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-phone:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 26px rgba(30, 64, 175, 0.35);
}

.contact-phone span {
  margin-left: 2px;

  display: inline-block;

  transition: transform 0.25s ease;
}

.contact-phone:hover span {
  transform: translate(3px, -1px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  color: #8a857e;
  font-size: 12px;
  line-height: 1.5;

  padding: 22px 7px 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icon svg {
  width: 26px;
  height: 26px;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}


/* =========================================================
   GENERAL TEXT
   IMPORTANT: smaller and safer than the original version
========================================================= */

.card-lilac>div>p,
.card-peach>div>p,
.card-blue>div>p,
.contact-card>div>p {
  font-family: "Sora", sans-serif;

  font-size: clamp(1rem, 1.6vw, 1.25rem);

  line-height: 1.6;

  letter-spacing: -0.025em;

  color: var(--ink);

  font-weight: 400;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .page-shell {
    width: min(100% - 28px, 760px);
  }

  .nav-links {
    display: none;
  }

  .card {
    padding: 36px 30px;
  }


  /* Hero */

  .card-yellow,
  .card-lilac,
  .card-mint,
  .card-peach,
  .card-rose,
  .card-blue,
  .card-cream {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
  }

  .hero p {
    max-width: 680px;

    font-size: clamp(1.05rem, 2vw, 1.3rem);

    line-height: 1.55;
  }


  /* Service */

  .card-lilac {
    align-items: flex-start;
  }

  .service-features {
    grid-template-columns: 1fr 1fr;
  }


  /* Process */

  .process-steps {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .process-step {
    flex-direction: row;

    align-items: flex-start;
  }


  /* Pricing */

  .card-blue {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .price-box {
    max-width: 420px;
  }


  /* Contact */

  .card-cream {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .contact-card p {
    max-width: 680px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  /* -------------------------------------------------------
     PAGE
  ------------------------------------------------------- */

  .page-shell {
    width: calc(100% - 20px);

    padding: 10px 0 24px;
  }


  /* -------------------------------------------------------
     NAV
  ------------------------------------------------------- */

  .nav {
    top: 8px;

    margin-bottom: 10px;

    padding: 10px 12px;

    border-radius: 18px;

    gap: 10px;
  }

  .brand-text {
    font-size: 16px;
  }

  .brand-author {
    font-size: 9px;
  }

  .nav-cta {
    padding: 9px 12px;

    font-size: 12px;
  }


  /* -------------------------------------------------------
     CARDS
  ------------------------------------------------------- */

  .card {
    border-radius: 22px;

    padding: 28px 18px;
  }


  /* -------------------------------------------------------
     HERO
  ------------------------------------------------------- */

  .card-yellow {
    min-height: auto;

    padding-top: 42px;
    padding-bottom: 30px;

    align-items: flex-start;
    overflow: visible;
  }

  .hero-how-link {
    margin: 10px 0;
  }

  .hero-subheading {
    margin: 8px 0 10px 0 !important;
  }

  .hero-form-card {
    margin-top: 14px;
    margin-bottom: 12px;
  }

  .hero-actions {
    margin-bottom: 6px;
  }

  .trust-row {
    margin-top: 14px !important;
  }

  .eyebrow {
    font-size: 10px;

    letter-spacing: 0.1em;

    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 4rem);

    line-height: 0.98;

    letter-spacing: -0.065em;

    word-break: normal;
  }

  .hero p {
    margin: 8px 0 20px 0;

    font-size: 1rem;

    line-height: 1.55;

    letter-spacing: -0.015em;
  }

  .hero-actions {
    width: 100%;

    gap: 12px;

    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;

    min-height: 52px;

    padding: 0 20px;

    font-size: 0.95rem;
  }

  .text-link {
    display: inline-block;

    text-align: left;

    padding: 8px 0;

    font-size: 13px;
  }

  .trust-row {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px 10px;

    margin-top: 28px;
    margin-bottom: 20px;
  }

  .trust-row div {
    min-width: 0;
  }

  .trust-row strong {
    font-size: 1.35rem;

    line-height: 1;
  }

  .trust-row span {
    font-size: 0.68rem;

    line-height: 1.25;

    margin-top: 5px;

    word-break: normal;
  }


  /* -------------------------------------------------------
     SECTION TITLES / TEXT
  ------------------------------------------------------- */

  .section-kicker {
    font-size: 0.72rem;

    letter-spacing: 0.08em;

    margin-bottom: 12px;

    line-height: 1.3;
  }

  .section-kicker::before {
    width: 6px;
    height: 6px;
  }

  .card h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);

    line-height: 1.04;

    letter-spacing: -0.06em;
  }

  .card p,
  .card-lilac>div>p,
  .card-peach>div>p,
  .card-blue>div>p,
  .contact-card>div>p {
    font-size: 1rem;

    line-height: 1.55;

    letter-spacing: -0.015em;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.55;
    letter-spacing: -0.015em;
  }


  /* -------------------------------------------------------
     SERVICE
  ------------------------------------------------------- */

  .card-lilac {
    min-height: auto;

    padding-top: 34px;
    padding-bottom: 34px;

    align-items: flex-start;
  }

  .card-lilac h2 {
    line-height: 1.04;
  }

  .card-lilac h2 br {
    display: none;
  }

  .card-lilac p {
    margin-top: 18px;

    margin-bottom: 22px;
  }

  .service-features {
    grid-template-columns: 1fr;

    gap: 14px;

    margin-top: 22px;
  }

  .feature-item {
    gap: 12px;

    align-items: center;
  }

  .feature-icon {
    width: 36px;
    height: 36px;

    font-size: 1rem;

    border-width: 1.5px;
  }

  .feature-item span {
    font-size: 0.9rem;

    line-height: 1.4;
  }


  /* -------------------------------------------------------
     IMPACT
  ------------------------------------------------------- */

  .card-mint {
    min-height: auto;

    padding-top: 34px;
    padding-bottom: 34px;

    align-items: flex-start;
  }

  .testimonial-card>div {
    max-width: 100%;
  }

  .testimonial-card h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .impact-highlight {
    margin-top: 22px;

    padding: 16px;

    border-radius: 15px;
  }

  .impact-highlight strong {
    font-size: 1.1rem;

    line-height: 1.25;

    margin-bottom: 6px;
  }

  .impact-highlight span {
    font-size: 0.9rem;

    line-height: 1.5;
  }


  /* -------------------------------------------------------
     PROCESS
  ------------------------------------------------------- */

  .card-peach {
    min-height: auto;

    padding-top: 34px;
    padding-bottom: 34px;

    justify-content: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;

    gap: 26px;

    margin-top: 28px;
  }

  .process-step {
    flex-direction: row;

    gap: 16px;

    align-items: flex-start;
  }

  .step-number {
    font-size: 2rem;

    line-height: 1;

    min-width: 42px;
  }

  .step-content {
    min-width: 0;
  }

  .step-content h3 {
    font-size: 1.1rem;

    line-height: 1.25;

    margin-bottom: 6px;
  }

  .step-content p {
    font-size: 0.9rem;

    line-height: 1.5;
  }


  /* -------------------------------------------------------
     PROJECTS
  ------------------------------------------------------- */

  .card-rose {
    min-height: auto;

    height: auto;

    padding: 28px 18px 24px;

    background: var(--rose);

    overflow: hidden;
  }

  .card-rose .section-kicker {
    display: inline-flex;

    margin-bottom: 10px;
  }

  .card-rose h2 {
    max-width: 100%;

    margin-bottom: 20px;
  }

  .projects-carousel-wrapper {
    width: calc(100% + 36px);

    margin-left: -18px;

    min-height: 0;

    flex: none;
  }

  .projects-grid {
    width: 100%;

    height: auto;

    min-height: 0;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-snap-type: x mandatory;
  }

  .project-card {
    flex: 0 0 100%;

    width: 100%;

    height: auto;

    min-height: 52vh;

    min-height: 52dvh;

    aspect-ratio: 4 / 3;

    scroll-snap-align: center;
  }

  .project-photo {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: contain;

    padding: 0;

    margin: 0;
  }

  .carousel-nav {
    right: 16px;

    bottom: 16px;

    gap: 8px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;

    font-size: 0.95rem;
  }


  /* -------------------------------------------------------
     PRICING
  ------------------------------------------------------- */

  .card-blue {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 26px;

    padding-top: 34px;
    padding-bottom: 34px;
  }

  .card-blue h2 {
    margin-bottom: 14px;
  }

  .card-blue p {
    margin-top: 0;
  }

  .price-box {
    width: 100%;

    max-width: none;

    padding: 20px;

    border-radius: 18px;
  }

  .price-label {
    font-size: 10px;
  }

  .price {
    font-size: clamp(3.2rem, 15vw, 4.5rem);

    margin: 8px 0 10px;
  }

  .price span {
    font-size: 1.5rem;
  }

  .price-note {
    font-size: 0.82rem;

    line-height: 1.45;

    margin-bottom: 18px;
  }

  .price-box .button {
    min-height: 50px;

    font-size: 0.9rem;
  }


  /* -------------------------------------------------------
     CONTACT
  ------------------------------------------------------- */

  .card-cream {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 30px;

    padding-top: 34px;
    padding-bottom: 34px;
  }

  .contact-card h2 {
    margin-bottom: 12px;
  }

  .contact-card p {
    max-width: 100%;
  }

  .contact-panel {
    width: 100%;

    min-width: 0;
  }

  .contact-form {
    gap: 20px;
  }

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

    gap: 20px;
  }

  .contact-form label {
    font-size: 0.9rem;

    gap: 7px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;

    padding: 9px 1px;
  }

  .contact-form textarea {
    min-height: 100px;
  }

  .contact-form .button {
    min-height: 50px;

    font-size: 0.9rem;
  }

  .contact-alt {
    flex-direction: column;

    align-items: stretch;

    text-align: center;

    gap: 12px;
  }

  .contact-alt span {
    font-size: 0.8rem;
  }

  .contact-phone {
    width: 100%;

    min-height: 48px;

    padding: 0 18px;

    font-size: 14px;
  }


  /* -------------------------------------------------------
     FOOTER
  ------------------------------------------------------- */

  .footer {
    gap: 12px;
    font-size: 10px;
    padding: 16px 7px 0;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social-icon svg {
    width: 24px;
    height: 24px;
  }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  .page-shell {
    width: calc(100% - 16px);
  }

  .card {
    padding-left: 15px;
    padding-right: 15px;

    border-radius: 19px;
  }

  .nav {
    padding: 9px 10px;
  }

  .brand-text {
    font-size: 15px;
  }

  .brand-author {
    font-size: 8px;
  }

  .nav-cta {
    padding: 8px 10px;

    font-size: 11px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-row strong {
    font-size: 1.2rem;
  }

  .trust-row span {
    font-size: 0.62rem;
  }

  .card h2 {
    font-size: 1.9rem;
  }

  .feature-item span {
    font-size: 0.85rem;
  }

  .process-step {
    gap: 12px;
  }

  .step-number {
    min-width: 35px;

    font-size: 1.7rem;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.84rem;
  }

  .project-card {
    min-height: 46vh;
    min-height: 46dvh;
  }

  .price {
    font-size: 3rem;
  }

  .mockups-image-container {
    margin-top: 1.5rem;
  }

  .mockups-image {
    max-width: 100%;
  }

  .section-cta {
    margin-top: 2rem;
  }

  .cta-link {
    font-size: 1rem;
  }

  .hero-cta {
    font-size: 1.2rem;
  }

  .hero-form {
    max-width: 100%;
    gap: 12px;
    padding-bottom: 12px;
    flex-wrap: nowrap;
  }

  .hero-form input {
    padding: 10px 12px;
    font-size: 0.95rem;
    min-width: 0;
    flex: 1;
  }

  .hero-form input[type="email"] {
    flex: 1.2;
  }

  .hero-form input[type="tel"] {
    flex: 1;
  }

  .hero-form-btn {
    font-size: 0.95rem;
    padding: 10px 0;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-form-btn span {
    font-size: 1.1em;
  }
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;

  transform: none;
}

.feature-grid .mini-feature:nth-child(1) {
  transition-delay: 0.05s;
}

.feature-grid .mini-feature:nth-child(2) {
  transition-delay: 0.15s;
}

.feature-grid .mini-feature:nth-child(3) {
  transition-delay: 0.25s;
}

.feature-grid .mini-feature:nth-child(4) {
  transition-delay: 0.35s;
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

  body,
  .price-box {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   MODAL (confirmación / aviso)
========================================================= */

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.site-modal.is-open {
  display: flex;
}

.site-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(3px);
  animation: modalFadeIn 0.25s ease;
}

.site-modal-box {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: modalPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.site-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}

.site-modal-close:hover {
  color: var(--ink);
}

.site-modal-icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 14px;
}

.site-modal-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px 0;
}

.site-modal-message {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 24px 0;
}

.site-modal-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-modal-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.site-modal.is-warning .site-modal-btn {
  background: var(--accent);
}

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

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* =========================================================
   SECCIONES ALTERNADAS (gris claro / gris un poco más oscuro)
========================================================= */

.section-dark.card-lilac,
.section-dark.card-peach,
.section-dark.card-blue {
  background: #ececea;
}


/* =========================================================
   EVITAR LÍNEAS DE HOVER "PEGADAS" EN PANTALLAS TÁCTILES
========================================================= */

@media (hover: none) {
  .cta-link:hover::before,
  .hero-cta:hover::before,
  .form-submit-cta:hover::before,
  .text-link:hover::after {
    transform: scaleX(0);
  }
}


/* =========================================================
   PÁGINAS LEGALES (Aviso Legal / Privacidad / Cookies)
========================================================= */

.legal-main {
  padding-top: clamp(20px, 5vh, 48px);
  padding-bottom: clamp(40px, 8vh, 80px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color 0.25s ease;
}

.legal-back:hover {
  color: var(--ink);
}

.legal-shell {
  background: #ffffff;
  border: 1px solid rgba(25, 24, 23, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vh, 56px) clamp(24px, 5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
}

.legal-shell h1 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 5vh, 2.8rem);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink);
}

.legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 36px;
}

.legal-shell h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 3vh, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 34px 0 12px;
}

.legal-shell h2:first-of-type {
  margin-top: 0;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.legal-shell ul {
  margin: 10px 0;
  padding-left: 20px;
}

.legal-shell li {
  margin-bottom: 6px;
}

.legal-shell a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-shell strong {
  color: var(--ink);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  font-size: 12px;
}

.footer-legal-links a {
  color: #8a857e;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: var(--ink);
}

.footer-legal-links span {
  color: rgba(138, 133, 126, 0.5);
}


/* =========================================================
   BANNER DE COOKIES
========================================================= */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  max-width: 760px;
  margin: 0 auto;

  background: rgba(25, 24, 23, 0.96);
  color: #fff;
  backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);

  font-size: 0.85rem;
  line-height: 1.5;

  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  flex: 1 1 280px;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-banner-btn.accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner-btn.reject {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-btn {
    flex: 1;
  }
}