/* =====================================================
  ABOLENGO ESTUDIO DIGITAL
  CLEAN FINAL CSS
  Royal Navy × Ivory × Champagne Blue
===================================================== */

:root {
  --blue-deep: #063B72;
  --blue-dark: #052B55;
  --blue-main: #169FEF;
  --blue-sky: #63D5FF;
  --blue-pale: #F4FBFF;
  --blue-pale-2: #FFFFFF;
  --blue-soft: #DDF5FF;

  --pop-yellow: #FFD966;
  --pop-coral: #FF7A90;
  --pop-mint: #49D6B2;
  --pop-purple: #8B7CFF;

  --text-main: #07345F;
  --text-muted: rgba(7, 52, 95, .70);
  --text-light: rgba(255, 255, 255, .86);

  --white: #FFFFFF;
  --border-blue: rgba(22, 159, 239, .16);
  --border-light: rgba(255, 255, 255, .22);

  --shadow-soft: 0 18px 50px rgba(22, 159, 239, .12);
  --shadow-card: 0 20px 56px rgba(5, 43, 85, .12);
  --shadow-dark: 0 28px 80px rgba(5, 43, 85, .26);

  --max: 1180px;
  --header-h: 76px;
}

/* =====================================================
  00 / RESET
===================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background: var(--blue-pale);
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.045em;
}

p {
  line-height: 1.75;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-pad {
  padding: 84px 0;
}

/* =====================================================
  01 / COMMON COMPONENTS
===================================================== */

.section-head {
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .68rem;
  font-weight: 900;
}

.section-title {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--text-main);
  font-size: clamp(2.35rem, 9vw, 4.8rem);
  line-height: .98;
  font-weight: 850;
}

.section-lead {
  max-width: 820px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

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

.btn span {
  display: block;
  font-size: .61rem;
  letter-spacing: .1em;
  opacity: .82;
}

.btn-whatsapp {
  flex-direction: column;
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  color: var(--blue-dark);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 217, 102, .32);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #FFFFFF, var(--blue-sky));
  color: var(--blue-dark);
}

.btn-outline {
  color: var(--blue-dark);
  background: #EAF8FF;
  border-color: rgba(22, 159, 239, .24);
  box-shadow: 0 12px 32px rgba(5, 43, 85, .06);
}

.btn-outline:hover {
  color: #FFFFFF;
  background: var(--blue-main);
  border-color: var(--blue-main);
}

.hero .btn-outline,
.visual-break-dark .btn-outline,
.contact .btn-outline,
.site-footer .btn-outline {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
}

.hero .btn-outline:hover,
.visual-break-dark .btn-outline:hover,
.contact .btn-outline:hover,
.site-footer .btn-outline:hover {
  color: var(--blue-dark);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

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

.negative li::before {
  content: '×';
  color: var(--pop-coral);
}

.positive li::before {
  content: '✓';
  color: var(--pop-mint);
}

/* =====================================================
  01 / COMMON COMPONENTS
===================================================== */

.section-head {
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .68rem;
  font-weight: 900;
}

.section-title {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--text-main);
  font-size: clamp(2.35rem, 9vw, 4.8rem);
  line-height: .98;
  font-weight: 850;
}

.section-lead {
  max-width: 820px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 900;
  text-align: center;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease;
}

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

.btn span {
  display: block;
  font-size: .61rem;
  letter-spacing: .1em;
  opacity: .82;
}

.btn-whatsapp {
  flex-direction: column;
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  color: var(--blue-dark);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 217, 102, .32);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #FFFFFF, var(--blue-sky));
  color: var(--blue-dark);
}

.btn-outline {
  color: var(--blue-dark);
  background: #EAF8FF;
  border-color: rgba(22, 159, 239, .24);
  box-shadow: 0 12px 32px rgba(5, 43, 85, .06);
}

.btn-outline:hover {
  color: #FFFFFF;
  background: var(--blue-main);
  border-color: var(--blue-main);
}

.hero .btn-outline,
.visual-break-dark .btn-outline,
.contact .btn-outline,
.site-footer .btn-outline {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
}

.hero .btn-outline:hover,
.visual-break-dark .btn-outline:hover,
.contact .btn-outline:hover,
.site-footer .btn-outline:hover {
  color: var(--blue-dark);
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

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

.negative li::before {
  content: '×';
  color: var(--pop-coral);
}

.positive li::before {
  content: '✓';
  color: var(--pop-mint);
}

/* =====================================================
  02 / HEADER
  Premium clean header / no rounded logo box
===================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-h);
  background:
    linear-gradient(
      180deg,
      rgba(5, 43, 85, .96) 0%,
      rgba(5, 43, 85, .90) 100%
    );
  border-bottom: 1px solid rgba(99, 213, 255, .20);
  box-shadow: 0 16px 42px rgba(5, 43, 85, .22);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

/* ロゴは四角いカードに入れない。紋章のように見せる */
.brand-mark {
  width: 58px;
  height: 44px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  width: 58px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 4px 12px rgba(0, 0, 0, .26))
    drop-shadow(0 0 10px rgba(255, 217, 102, .16));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong,
.brand-name {
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 4vw, 1.28rem);
  font-weight: 850;
  letter-spacing: .105em;
  line-height: .95;
  text-shadow: 0 3px 18px rgba(5, 43, 85, .32);
}

.brand-copy small,
.brand-sub {
  margin-top: 7px;
  color: #C9F3FF;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .5rem;
  font-weight: 900;
  line-height: 1.1;
}

.desktop-nav {
  display: none;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 15px;
  color: #052B55;
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 217, 102, .24);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .62rem;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #FFFFFF, #C9F3FF);
}

/* PC */
@media (min-width: 860px) {
  .header-inner {
    gap: 28px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 70px;
    height: 50px;
    flex-basis: 70px;
  }

  .brand-logo {
    width: 70px;
    max-height: 50px;
  }

  .brand-copy strong,
  .brand-name {
    font-size: 1.24rem;
    letter-spacing: .13em;
  }

  .brand-copy small,
  .brand-sub {
    font-size: .54rem;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
  }

  .desktop-nav a {
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .66rem;
    font-weight: 900;
    transition: color .25s ease;
  }

  .desktop-nav a:hover {
    color: #C9F3FF;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: .66rem;
  }
}

/* スマホ */
@media (max-width: 520px) {
  .header-inner {
    min-height: 74px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 40px;
    flex-basis: 54px;
  }

  .brand-logo {
    width: 54px;
    max-height: 40px;
  }

  .brand-copy strong,
  .brand-name {
    font-size: .95rem;
    letter-spacing: .075em;
  }

  .brand-copy small,
  .brand-sub {
    margin-top: 6px;
    font-size: .46rem;
    letter-spacing: .18em;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: .58rem;
    letter-spacing: .1em;
  }

  .header-cta::after {
    content: none;
  }
}

/* =====================================================
  03 / HERO
  Pop blue hero / video restored / readable offer panel
===================================================== */

.hero {
  position: relative;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 12% 12%, rgba(99, 213, 255, .38), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 217, 102, .28), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(255, 122, 144, .22), transparent 32%),
    linear-gradient(135deg, #052B55 0%, #0867B8 50%, #15A9F5 100%);
  overflow: hidden;
}

/* ------------------------------
  Top hero visual area
------------------------------ */

.hero-visual-layer {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 10% 12%, rgba(99, 213, 255, .42), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 217, 102, .30), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(73, 214, 178, .24), transparent 34%),
    linear-gradient(
      135deg,
      rgba(5, 43, 85, .94) 0%,
      rgba(8, 103, 184, .84) 48%,
      rgba(22, 159, 239, .80) 100%
    ),
    url("hero-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-visual-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .72;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 56px;
  align-items: center;
}

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

.hero .section-kicker {
  margin-bottom: 20px;
  color: #C9F3FF;
  text-shadow: 0 2px 18px rgba(5, 43, 85, .34);
}

.hero h1 {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: clamp(3.1rem, 11vw, 7.1rem);
  line-height: .91;
  letter-spacing: -.065em;
  text-shadow: 0 5px 42px rgba(5, 43, 85, .42);
}

.hero-lead {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 1.05rem;
  line-height: 1.78;
  text-shadow: 0 2px 18px rgba(5, 43, 85, .32);
}

/* ------------------------------
  Hero video
  Full width / no animation
------------------------------ */

.hero-luxury-media {
  position: relative;
  width: 100%;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(5, 43, 85, .28);
  backdrop-filter: blur(12px);
  transform: none !important;
  opacity: 1 !important;
  clip-path: none !important;
  transition: none !important;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

/* Disable motion classes on hero video */

.video-card.scroll-mask,
.video-card.is-mask-complete {
  clip-path: none !important;
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.video-card.scroll-mask img,
.video-card.scroll-mask video,
.video-card.is-mask-complete img,
.video-card.is-mask-complete video {
  transform: none !important;
  transition: none !important;
}

/* ------------------------------
  Offer area
  Dark panel for strong readability
------------------------------ */

.hero-offer-layer {
  position: relative;
  padding: 0 0 88px;
  background:
    linear-gradient(
      180deg,
      #15A9F5 0%,
      #EAF8FF 48%,
      #FFFFFF 100%
    );
}

.hero-offer-layer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -76px;
  height: 76px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(21, 169, 245, 0) 0%,
      rgba(21, 169, 245, .56) 52%,
      rgba(21, 169, 245, 1) 100%
    );
}

.hero-luxury-panel {
  position: relative;
  z-index: 2;
  margin-top: -26px;
  padding: 28px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 213, 255, .26), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(255, 217, 102, .15), transparent 30%),
    linear-gradient(135deg, #052B55 0%, #063B72 52%, #0867B8 100%);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(5, 43, 85, .30);
}

.hero-luxury-panel::before {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .70),
      transparent
    );
}

/* price block */

.hero-luxury-price {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
}

.hero-luxury-price span {
  color: #C9F3FF;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .62rem;
  font-weight: 900;
}

.hero-luxury-price strong {
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.35rem, 10vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.05em;
  text-shadow: 0 4px 26px rgba(5, 43, 85, .42);
}

/* plan list */

.hero-luxury-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
}

.hero-luxury-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hero-luxury-list div:last-child {
  border-bottom: 0;
}

.hero-luxury-list span {
  color: #C9F3FF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-luxury-list strong {
  color: #FFFFFF;
  font-size: .96rem;
  line-height: 1.42;
  text-shadow: 0 2px 16px rgba(5, 43, 85, .32);
}

/* buttons */

.hero-actions-luxury {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  margin-bottom: 18px;
}

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

.hero-actions-luxury .btn-whatsapp {
  min-height: 72px;
  padding: 18px 26px;
  color: #052B55;
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(255, 217, 102, .32);
}

.hero-actions-luxury .btn-whatsapp:hover {
  color: #052B55;
  background: linear-gradient(135deg, #FFFFFF, var(--blue-sky));
}

.hero-actions-luxury .btn-whatsapp span {
  margin-top: 6px;
  color: rgba(5, 43, 85, .72);
  font-size: .64rem;
}

.hero-actions-luxury .btn-outline {
  min-height: 62px;
  padding: 17px 24px;
  color: #052B55;
  background: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 16px 36px rgba(5, 43, 85, .16);
}

.hero-actions-luxury .btn-outline:hover {
  color: #FFFFFF;
  background: #052B55;
  border-color: #052B55;
}

.hero-luxury-note {
  margin: 0;
  color: rgba(255, 255, 255, .90);
  font-size: .84rem;
  line-height: 1.62;
  text-shadow: 0 2px 14px rgba(5, 43, 85, .32);
}

/* ------------------------------
  Responsive
------------------------------ */

@media (min-width: 700px) {
  .hero-actions-luxury {
    grid-template-columns: minmax(280px, 1fr) minmax(220px, .72fr);
    align-items: stretch;
  }

  .hero-luxury-panel {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    column-gap: 30px;
    row-gap: 24px;
    align-items: center;
  }

  .hero-luxury-price {
    padding-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .20);
    padding-right: 30px;
  }

  .hero-luxury-list {
    border-bottom: 0;
  }

  .hero-actions-luxury,
  .hero-luxury-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  .hero-visual-layer {
    min-height: 72vh;
    display: grid;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  }

  .hero h1 {
    font-size: clamp(5rem, 6.8vw, 7.25rem);
  }
}

@media (max-width: 760px) {
  .hero-visual-layer {
    padding-top: calc(var(--header-h) + 38px);
    padding-bottom: 62px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 11.4vw, 3.55rem);
    line-height: .96;
    margin-bottom: 20px;
  }

  .hero-lead {
    max-width: 94%;
    font-size: .95rem;
  }

  .hero-luxury-media {
    display: block;
    width: 100%;
    margin-top: 18px;
  }

  .video-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    border-radius: 26px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .26);
    box-shadow: 0 22px 58px rgba(5, 43, 85, .24);
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
    transition: none !important;
  }

  .video-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-offer-layer {
    padding-bottom: 74px;
  }

  .hero-luxury-panel {
    margin-top: -34px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-luxury-price {
    padding-bottom: 22px;
  }

  .hero-luxury-list div {
    min-height: 60px;
  }

  .hero-luxury-list strong {
    font-size: .94rem;
    line-height: 1.45;
  }
}

/* =====================================================
  04 / SECTION BACKGROUNDS
===================================================== */

body {
  background: var(--blue-pale);
  color: var(--text-main);
}

.problem,
.examples,
.faq,
.visual-break-light,
.package,
.more-info {
  background:
    radial-gradient(circle at 12% 6%, rgba(99, 213, 255, .24), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255, 217, 102, .18), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #EAF8FF 100%);
}

.visual-break-dark,
.contact,
.site-footer {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 10% 12%, rgba(99, 213, 255, .28), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(255, 217, 102, .20), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(255, 122, 144, .18), transparent 32%),
    linear-gradient(135deg, #052B55 0%, #063B72 55%, #0867B8 100%);
}

.visual-break-dark h1,
.visual-break-dark h2,
.visual-break-dark h3,
.visual-break-dark h4,
.visual-break-dark p,
.visual-break-dark span,
.visual-break-dark small,
.contact h1,
.contact h2,
.contact h3,
.contact h4,
.contact p,
.site-footer,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .88);
}

.visual-break-dark .section-kicker,
.contact .section-kicker,
.footer-contact small,
.footer-more small {
  color: #C9F3FF;
}

/* =====================================================
  05 / CARDS AND PROBLEM
===================================================== */

.two-cards,
.faq-grid,
.more-info-grid {
  display: grid;
  gap: 18px;
}

.info-card,
.light-card,
.faq-list details,
.more-info details,
.problem-bento-card,
.portfolio-card,
.contact-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.info-card {
  padding: 28px 22px;
}

.dark-card,
.problem-bento-dark {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 213, 255, .26), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 217, 102, .14), transparent 28%),
    linear-gradient(135deg, #052B55 0%, #0867B8 100%);
  border: 1px solid rgba(99, 213, 255, .30);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
}

.card-number {
  display: block;
  margin-bottom: 22px;
  color: rgba(22, 159, 239, .22);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: .8;
}

.info-card h3,
.problem-bento-card h3,
.contact-card h3 {
  margin-bottom: 14px;
  color: var(--text-main);
  font-size: 1.65rem;
  line-height: 1.12;
}

.info-card p,
.problem-bento-card p,
.contact-card p {
  color: var(--text-muted);
}

.dark-card h3,
.dark-card p,
.dark-card li,
.problem-bento-dark h3,
.problem-bento-dark p,
.problem-bento-dark li {
  color: #FFFFFF;
}

.problem-letter {
  max-width: 1040px;
  margin-bottom: 44px;
}

.problem-letter .section-title {
  max-width: 1040px;
  font-size: clamp(2.55rem, 9vw, 5.35rem);
}

.problem-letter .section-lead {
  max-width: 860px;
}

.problem-bento-grid {
  display: grid;
  gap: 18px;
}

.problem-bento-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px 22px;
}

.problem-bento-card::before {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(99, 213, 255, .70),
      transparent
    );
}

.problem-bento-card span:not(.card-number) {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: .62rem;
  font-weight: 900;
}

.problem-bento-card h3 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--text-main);
  font-size: clamp(1.65rem, 6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.problem-bento-card p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.78;
}

.problem-bento-large {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 92% 8%, rgba(99, 213, 255, .16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(234,248,255,.98) 100%);
}

.problem-bento-large .card-number {
  position: absolute;
  top: 28px;
  left: 22px;
  margin: 0;
}

.problem-bento-dark span:not(.card-number) {
  color: #C9F3FF;
}

.problem-bento-dark p {
  color: rgba(255, 255, 255, .84);
}

@media (min-width: 860px) {
  .problem-bento-grid {
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: minmax(220px, auto);
  }

  .problem-bento-large {
    grid-row: span 2;
  }
}

/* =====================================================
  06 / VISUAL BREAKS
===================================================== */

.visual-break {
  padding: 54px 0;
}

.visual-break-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.visual-break-image {
  overflow: hidden;
  background: var(--blue-dark);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 28px;
  box-shadow: 0 24px 66px rgba(5, 43, 85, .10);
}

.visual-break-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.visual-break-image:hover img {
  transform: scale(1.035);
}

.visual-break-copy {
  max-width: 620px;
}

.visual-break-copy h2 {
  margin: 0 0 16px;
  color: var(--text-main);
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.visual-break-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.visual-break-dark .visual-break-copy h2 {
  color: #FFFFFF;
}

.visual-break-dark .visual-break-copy p {
  color: rgba(255, 255, 255, .86);
}

/* =====================================================
  07 / PACKAGE
===================================================== */

.package {
  position: relative;
  overflow: hidden;
}

.pricing-head-productized,
.pricing-head {
  max-width: 1080px;
  margin-bottom: 46px;
}

.pricing-head-productized .section-title,
.pricing-head .section-title {
  max-width: 1080px;
  color: var(--text-main);
  font-size: clamp(2.55rem, 9vw, 5.25rem);
}

.pricing-head-productized .section-lead,
.pricing-head .section-lead {
  max-width: 880px;
  color: var(--text-muted);
}

.pricing-grid,
.pricing-grid-productized {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 24px 24px;
  color: var(--text-main);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(99, 213, 255, .70),
      transparent
    );
}

.pricing-card-featured {
  color: #FFFFFF;
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 213, 255, .26), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 217, 102, .14), transparent 28%),
    linear-gradient(135deg, #052B55 0%, #0867B8 100%);
  border: 1px solid rgba(99, 213, 255, .30);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
}

.pricing-card-pro {
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 213, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(234,248,255,.98) 100%);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .58rem;
  font-weight: 900;
}

.pricing-card-top {
  margin-bottom: 24px;
}

.pricing-label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .62rem;
  font-weight: 900;
}

.pricing-card-featured .pricing-label,
.pricing-card-featured .pricing-mini-section small,
.pricing-card-featured .pricing-condition strong {
  color: #C9F3FF;
}

.pricing-card h3 {
  margin: 0 0 14px;
  color: var(--text-main);
  font-size: clamp(1.95rem, 7vw, 2.75rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.pricing-card-featured h3 {
  color: #FFFFFF;
}

.pricing-card-top p {
  margin: 0;
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.72;
}

.pricing-card-featured .pricing-card-top p {
  color: rgba(255, 255, 255, .84);
}

.pricing-price-block {
  margin-bottom: 24px;
  padding: 22px 0 20px;
  border-top: 1px solid rgba(22, 159, 239, .16);
  border-bottom: 1px solid rgba(22, 159, 239, .16);
}

.pricing-card-featured .pricing-price-block {
  border-top-color: rgba(255, 255, 255, .18);
  border-bottom-color: rgba(255, 255, 255, .18);
}

.pricing-price {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.pricing-price strong {
  color: var(--text-main);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 12vw, 4.9rem);
  line-height: .82;
  letter-spacing: -.06em;
}

.pricing-price span {
  color: rgba(7, 52, 95, .62);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .66rem;
  font-weight: 900;
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 12px;
}

.pricing-monthly strong {
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 900;
}

.pricing-monthly span {
  color: rgba(7, 52, 95, .58);
  font-size: .86rem;
  font-weight: 700;
}

.pricing-card-featured .pricing-price strong,
.pricing-card-featured .pricing-monthly strong {
  color: #FFFFFF;
}

.pricing-card-featured .pricing-price span,
.pricing-card-featured .pricing-monthly span {
  color: rgba(255, 255, 255, .72);
}

.pricing-daily {
  margin: 0;
  color: var(--pop-coral);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.55;
}

.pricing-card-featured .pricing-daily {
  color: #FFD966;
}

.pricing-mini-section {
  margin-bottom: 22px;
}

.pricing-mini-section small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  font-weight: 900;
}

.pricing-mini-section p {
  margin: 0;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

.pricing-card-featured .pricing-mini-section p {
  color: rgba(255, 255, 255, .84);
}

.pricing-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(22, 159, 239, .14);
}

.pricing-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(22, 159, 239, .12);
  font-size: .9rem;
  line-height: 1.55;
}

.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--pop-mint);
  font-weight: 900;
}

.pricing-card-featured .pricing-list {
  border-top-color: rgba(255, 255, 255, .18);
}

.pricing-card-featured .pricing-list li {
  color: rgba(255, 255, 255, .86);
  border-bottom-color: rgba(255, 255, 255, .14);
}

.pricing-condition {
  margin-top: auto;
  margin-bottom: 22px;
  padding: 17px 16px;
  background: rgba(22, 159, 239, .08);
  border: 1px solid rgba(22, 159, 239, .18);
  border-radius: 20px;
}

.pricing-condition strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .58rem;
  font-weight: 900;
}

.pricing-condition p {
  margin: 0;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.65;
}

.pricing-card-featured .pricing-condition {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}

.pricing-card-featured .pricing-condition p {
  color: rgba(255, 255, 255, .84);
}

.pricing-btn {
  width: 100%;
}

.pricing-card:not(.pricing-card-featured) .btn-outline {
  color: var(--blue-dark);
  background: #EAF8FF;
  border-color: rgba(22, 159, 239, .24);
}

.pricing-card:not(.pricing-card-featured) .btn-outline:hover {
  color: #FFFFFF;
  background: var(--blue-main);
  border-color: var(--blue-main);
}

/* Contract flow */

.contract-flow,
.contract-summary {
  display: grid;
  gap: 30px;
  margin-top: 48px;
  padding: 32px 24px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 88% 0%, rgba(99, 213, 255, .26), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 217, 102, .14), transparent 28%),
    linear-gradient(135deg, #052B55 0%, #0867B8 100%);
  border: 1px solid rgba(99, 213, 255, .30);
  border-radius: 30px;
  box-shadow: var(--shadow-dark);
}

.contract-flow-head .section-kicker,
.contract-summary .section-kicker {
  color: #C9F3FF;
}

.contract-flow-head h3,
.contract-summary h3 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #FFFFFF;
  font-size: clamp(2rem, 7vw, 3.65rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.contract-flow-head p,
.contract-summary p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .96rem;
  line-height: 1.78;
}

.contract-flow-grid,
.contract-steps {
  display: grid;
  gap: 14px;
}

.contract-flow-grid div,
.contract-steps div {
  padding: 20px 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
}

.contract-flow-grid span,
.contract-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--pop-yellow);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 900;
}

.contract-flow-grid strong,
.contract-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.35;
}

.contract-flow-grid p,
.contract-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  line-height: 1.65;
}

.pricing-legal-note {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(5, 43, 85, .06);
}

.pricing-legal-note p {
  margin: 0;
  color: rgba(7, 52, 95, .64);
  font-size: .78rem;
  line-height: 1.72;
}

@media (min-width: 860px) {
  .pricing-grid,
  .pricing-grid-productized {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .pricing-card-featured {
    transform: translateY(-16px);
  }

  .contract-flow,
  .contract-summary {
    padding: 38px 34px;
  }

  .contract-flow-grid,
  .contract-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pricing-grid,
  .pricing-grid-productized {
    gap: 18px;
    margin-top: 34px;
  }

  .pricing-card {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .pricing-card::before {
    left: 20px;
    right: 20px;
  }

  .pricing-card h3 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .pricing-price strong {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .pricing-condition {
    padding: 16px 15px;
  }

  .contract-flow,
  .contract-summary {
    margin-top: 36px;
    padding: 26px 20px;
    border-radius: 24px;
  }

  .pricing-legal-note {
    padding: 16px;
  }

  .pricing-legal-note p {
    font-size: .74rem;
  }
}

/* =====================================================
  07.5 / FEATURED PLAN EMPHASIS
===================================================== */

.pricing-card-featured {
  position: relative;
  transform: translateY(-16px);
  border-width: 2px;
  box-shadow:
    0 34px 90px rgba(5, 43, 85, .32),
    0 0 0 1px rgba(255, 217, 102, .26) inset;
}

.pricing-card-featured::after {
  content: 'Recomendado';
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  color: #052B55;
  background: linear-gradient(135deg, var(--pop-yellow), #FFF3B0);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .54rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 217, 102, .22);
}

.pricing-card-featured .pricing-badge {
  margin-right: 110px;
}

@media (max-width: 760px) {
  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured::after {
    top: 16px;
    right: 16px;
  }

  .pricing-card-featured .pricing-badge {
    margin-right: 105px;
  }
}

/* =====================================================
  08 / EXAMPLES
  Portfolio with benefit line
===================================================== */

.example-grid {
  display: grid;
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.portfolio-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  background: #052B55;
}

.portfolio-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform .55s ease;
}

.portfolio-thumb:hover img {
  transform: scale(1.025);
}

.portfolio-body {
  padding: 28px 26px 30px;
}

.portfolio-body small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: .62rem;
  font-weight: 900;
}

.portfolio-body h3 {
  margin: 0 0 14px;
  color: var(--text-main);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.portfolio-body p {
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

.portfolio-result {
  margin: 22px 0 22px;
  padding: 18px 18px;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #EAF8FF 100%);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 20px;
}

.portfolio-result span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  font-weight: 900;
}

.portfolio-result p {
  margin: 0;
  color: rgba(7, 52, 95, .72);
  font-size: .88rem;
  line-height: 1.65;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(7, 52, 95, .34);
  padding-bottom: 6px;
  transition: color .25s ease, border-color .25s ease;
}

.portfolio-link:hover {
  color: var(--blue-main);
  border-bottom-color: var(--blue-main);
}

@media (min-width: 760px) {
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .portfolio-body {
    padding: 24px 22px 26px;
  }

  .portfolio-body h3 {
    font-size: 1.8rem;
  }

  .portfolio-result {
    padding: 16px;
    border-radius: 18px;
  }
}

/* =====================================================
  08 / EXAMPLES
  Portfolio with real screenshots
  3 real websites
===================================================== */

.example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

/* Portfolio card */
.portfolio-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(142, 169, 196, .20);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(7, 17, 31, .12);
}

/* Screenshot area */
.portfolio-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  background: #07111F;
  border-bottom: 1px solid rgba(142, 169, 196, .18);
}

.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 31, .08) 0%,
      transparent 38%,
      rgba(7, 17, 31, .12) 100%
    );
}

.portfolio-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition:
    transform .65s ease,
    filter .65s ease;
}

.portfolio-thumb:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

/* Text body */
.portfolio-body {
  padding: 28px 26px 30px;
}

.portfolio-body small {
  display: block;
  margin-bottom: 12px;
  color: #8EA9C4;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: .62rem;
  font-weight: 900;
}

.portfolio-body h3 {
  margin: 0 0 14px;
  color: #101B2D;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.portfolio-body p {
  margin: 0 0 18px;
  color: rgba(16, 27, 45, .70);
  line-height: 1.75;
}

/* Result box */
.portfolio-result {
  margin: 24px 0 24px;
  padding: 18px 18px 19px;
  background:
    radial-gradient(circle at 12% 10%, rgba(142, 169, 196, .14), transparent 34%),
    linear-gradient(180deg, #FFFFFF 0%, #F3F0E8 100%);
  border: 1px solid rgba(142, 169, 196, .24);
  border-radius: 20px;
}

.portfolio-result small {
  display: block;
  margin: 0 0 9px;
  color: #8EA9C4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  font-weight: 900;
}

.portfolio-result span {
  display: block;
  margin: 0 0 9px;
  color: #8EA9C4;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  font-weight: 900;
}

.portfolio-result p {
  margin: 0;
  color: rgba(16, 27, 45, .72);
  font-size: .9rem;
  line-height: 1.68;
}

/* Link */
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101B2D;
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(16, 27, 45, .34);
  padding-bottom: 6px;
  transition:
    color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.portfolio-link:hover {
  color: #8EA9C4;
  border-bottom-color: #8EA9C4;
  transform: translateX(3px);
}

/* Desktop: 3 cards */
@media (min-width: 1020px) {
  .example-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .portfolio-body {
    padding: 26px 24px 28px;
  }

  .portfolio-body h3 {
    font-size: 1.75rem;
  }

  .portfolio-body p {
    font-size: .95rem;
  }

  .portfolio-result {
    padding: 16px;
  }
}

/* Tablet: 2 cards */
@media (min-width: 760px) and (max-width: 1019px) {
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 759px) {
  .example-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-card {
    border-radius: 24px;
  }

  .portfolio-body {
    padding: 24px 22px 26px;
  }

  .portfolio-body h3 {
    font-size: 1.85rem;
  }

  .portfolio-result {
    padding: 16px;
    border-radius: 18px;
  }
}

/* =====================================================
  09 / FAQ
===================================================== */

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 22px 20px;
  color: var(--text-main);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  transition: color .25s ease;
}

.faq-list details:hover summary {
  color: var(--blue-main);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--text-muted);
}

/* =====================================================
  10 / CONTACT
  Industry examples + better spacing
===================================================== */

.contact-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.contact .section-title,
.contact h2 {
  color: #FFFFFF;
}

.contact .section-lead,
.contact p {
  color: rgba(255, 255, 255, .86);
}

.message-examples {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.message-example {
  padding: 22px 20px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(99, 213, 255, .18);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(5, 43, 85, .14);
}

.message-example small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-main);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .62rem;
  font-weight: 900;
}

.message-example p {
  margin: 0;
  color: var(--text-muted) !important;
  font-size: .96rem;
  line-height: 1.76;
}

.contact-card {
  padding: 34px 26px 32px;
  color: var(--text-main);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(22, 159, 239, .16);
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
}

.contact-card h3 {
  margin: 0 0 26px;
  color: var(--text-main);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.contact-card ol {
  margin: 0 0 34px;
  padding-left: 26px;
  color: var(--text-muted);
}

.contact-card li {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-card li:last-child {
  margin-bottom: 0;
}

.contact-card .btn,
.contact-card .contact-main-cta {
  width: 100%;
}

.contact-main-cta {
  margin: 4px 0 26px;
  min-height: 68px;
}

.contact-note {
  margin: 0;
  padding-top: 4px;
  color: var(--text-muted) !important;
  font-size: .98rem;
  line-height: 1.85;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  }
}

@media (max-width: 760px) {
  .contact-grid {
    gap: 28px;
  }

  .contact-card {
    padding: 32px 24px 34px;
    border-radius: 28px;
  }

  .contact-card h3 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .contact-card ol {
    margin-bottom: 38px;
    padding-left: 28px;
  }

  .contact-card li {
    margin-bottom: 12px;
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .contact-main-cta {
    margin-top: 6px;
    margin-bottom: 28px;
    min-height: 70px;
  }

  .contact-note {
    font-size: .98rem;
    line-height: 1.9;
  }
}

/* =====================================================
  11 / MORE INFO
===================================================== */

.more-info-grid {
  display: grid;
  gap: 14px;
}

.more-info details {
  padding: 0;
  overflow: hidden;
}

.more-info summary {
  padding: 22px 20px;
  color: var(--text-main);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
}

.more-info-body {
  padding: 0 20px 22px;
  color: var(--text-muted);
}

.more-info-body p {
  margin: 0 0 14px;
}

.more-info-body ul,
.more-info-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.more-info-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.more-info-body strong {
  color: var(--text-main);
}

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

.site-footer {
  position: relative;
  padding: 78px 0 132px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 10% 12%, rgba(99, 213, 255, .22), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(255, 217, 102, .10), transparent 28%),
    linear-gradient(135deg, #052B55 0%, #063B72 55%, #0867B8 100%);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .24;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  gap: 40px;
}

.footer-brand {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

/* ロゴは箱に入れない */
.footer-logo {
  width: 124px;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter:
    drop-shadow(0 6px 18px rgba(0, 0, 0, .22))
    drop-shadow(0 0 12px rgba(255, 217, 102, .12));
}

.footer-brand-copy {
  display: grid;
  gap: 12px;
}

.footer-brand-title {
  margin: 0;
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 8vw, 3rem);
  line-height: .95;
  letter-spacing: .08em;
  text-shadow: 0 4px 18px rgba(5, 43, 85, .25);
}

.footer-description {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.78;
}

.footer-content,
.footer-content-extended {
  display: grid;
  gap: 26px;
}

.footer-nav,
.footer-more,
.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-nav small,
.footer-more small,
.footer-contact small {
  color: #C9F3FF;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .62rem;
  font-weight: 900;
}

.footer-nav a,
.footer-more a,
.footer-contact a {
  color: rgba(255,255,255,.82);
  font-size: .96rem;
  line-height: 1.45;
  transition: color .25s ease, transform .25s ease;
}

.footer-nav a:hover,
.footer-more a:hover,
.footer-contact a:hover {
  color: #FFD966;
  transform: translateY(-1px);
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  line-height: 1.55;
}

@media (min-width: 860px) {
  .site-footer {
    padding: 86px 0 44px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    align-items: start;
    gap: 52px;
  }

  .footer-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-content,
  .footer-content-extended {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
  }

  .footer-nav,
  .footer-more,
  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* =====================================================
  13 / MOBILE STICKY CTA
  WhatsApp floating CTA / mobile safe
===================================================== */

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 16px);
  z-index: 1200;

  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 22px;
  background: linear-gradient(135deg, #FFE98A 0%, #FFD966 100%);
  color: #07345F;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;

  box-shadow:
    0 18px 42px rgba(5, 43, 85, .26),
    0 0 0 1px rgba(255, 255, 255, .24) inset;

  font-size: .68rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .10em;
  text-transform: uppercase;
  text-align: center;

  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.mobile-sticky-cta:hover {
  color: #052B55;
  background: linear-gradient(135deg, #FFFFFF 0%, #C9F3FF 100%);
}

@media (min-width: 860px) {
  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 104px;
  }

  .mobile-sticky-cta {
    left: 18px;
    right: 18px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    min-height: 58px;
    padding: 0 18px;
    font-size: .64rem;
    letter-spacing: .08em;
  }
}

/* =====================================================
  14 / PREMIUM MOTION SYSTEM
===================================================== */

.hero,
#paquete,
#ejemplos,
#preguntas,
#contacto {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.992);
  filter: blur(2px);
  transition:
    opacity .85s ease,
    transform .95s cubic-bezier(.16, 1, .3, 1),
    filter .95s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-mask {
  --mask-progress: 0;
  --mask-scale: 1.035;
  --mask-opacity: .35;

  clip-path: inset(
    calc((1 - var(--mask-progress)) * 42%)
    0
    calc((1 - var(--mask-progress)) * 42%)
    0
  );
  transform: scale(var(--mask-scale));
  opacity: var(--mask-opacity);
  will-change: clip-path, transform, opacity;
  transition:
    clip-path .08s linear,
    transform .08s linear,
    opacity .08s linear;
}

.scroll-mask img,
.scroll-mask video {
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.scroll-mask.is-mask-complete img,
.scroll-mask.is-mask-complete video {
  transform: scale(1);
}

.type-kinetic {
  transform-origin: left center;
  will-change: transform, letter-spacing, opacity;
}

.type-kinetic:not(.type-in) {
  opacity: .88;
  letter-spacing: -.075em;
  transform: translateY(10px) scaleX(.985);
}

.type-kinetic.type-in {
  opacity: 1;
  letter-spacing: -.045em;
  transform: translateY(0) scaleX(1);
  transition:
    opacity .9s ease,
    transform 1.05s cubic-bezier(.16, 1, .3, 1),
    letter-spacing 1.05s cubic-bezier(.16, 1, .3, 1);
}

.has-odometer {
  font-variant-numeric: tabular-nums;
}

.visual-break-dark,
.contact,
.site-footer {
  position: relative;
  overflow: hidden;
}

.visual-break-dark::before,
.contact::before,
.site-footer::before {
  content: '';
  position: absolute;
  left: -12%;
  right: -12%;
  top: -54px;
  height: 100px;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 8% 58%, rgba(184, 201, 216, .28) 0 22px, transparent 24px),
    radial-gradient(circle at 24% 42%, rgba(243, 240, 232, .18) 0 14px, transparent 16px),
    radial-gradient(circle at 46% 62%, rgba(184, 201, 216, .22) 0 28px, transparent 30px),
    radial-gradient(circle at 68% 45%, rgba(243, 240, 232, .14) 0 18px, transparent 20px),
    radial-gradient(circle at 88% 60%, rgba(184, 201, 216, .20) 0 26px, transparent 28px);
  filter: blur(9px) contrast(18);
  transform: translate3d(0, 0, 0);
}

.btn,
.header-cta,
.mobile-sticky-cta,
.portfolio-link {
  --mx: 0px;
  --my: 0px;
  transform: translate3d(var(--mx), var(--my), 0);
  will-change: transform;
}

.btn.is-pressed,
.header-cta.is-pressed,
.mobile-sticky-cta.is-pressed,
.portfolio-link.is-pressed {
  transform: translate3d(var(--mx), var(--my), 0) scale(.975) !important;
}

/* =====================================================
  15 / RESPONSIVE
  Layout only / no header-footer color overrides
===================================================== */

/* Tablet and up */

@media (min-width: 700px) {
  .two-cards,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 760px) {
  .example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop layout */

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  }

  .visual-break {
    padding: 76px 0;
  }

  .visual-break-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
  }

  .visual-break-grid.reverse {
    grid-template-columns: .95fr 1.05fr;
  }

  .visual-break-grid.reverse .visual-break-image {
    order: 2;
  }

  .visual-break-grid.reverse .visual-break-copy {
    order: 1;
  }

  .more-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none;
  }
}

/* Mobile spacing */

@media (max-width: 760px) {
  .section-pad {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .faq-grid {
    gap: 28px;
  }

  .contact-grid {
    gap: 28px;
  }

  .portfolio-body {
    padding: 22px 22px 24px;
  }

  .portfolio-body h3 {
    font-size: 1.75rem;
  }

  .more-info-grid {
    gap: 14px;
  }
}

/* Small mobile */

@media (max-width: 520px) {
  :root {
    --header-h: 74px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section-title {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .info-card,
  .problem-bento-card,
  .pricing-card,
  .contact-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =====================================================
  16 / MOTION SAFETY
===================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-mask {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .btn,
  .header-cta,
  .mobile-sticky-cta,
  .portfolio-link {
    transform: none !important;
  }
}

/* =====================================================
  SPLASH SCREEN
===================================================== */

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(142, 169, 196, .16), transparent 34%),
    radial-gradient(circle at 50% 60%, rgba(243, 240, 232, .06), transparent 28%),
    linear-gradient(135deg, #07111F 0%, #101B2D 58%, #07111F 100%);
  transition:
    opacity .75s ease,
    visibility .75s ease;
}

.splash-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(243, 240, 232, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .24;
}

.splash-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 34px;
  animation: splashLogoIn 1.1s ease both;
}

.splash-inner img {
  width: min(260px, 58vw);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 20px 44px rgba(0, 0, 0, .42))
    drop-shadow(0 0 26px rgba(185, 154, 91, .18));
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.splash-lock {
  overflow: hidden;
}

@keyframes splashLogoIn {
  0% {
    opacity: 0;
    transform: scale(.94) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}