/* =========================================================
   KOSPI INSIDER — Sunset Coral Editorial Theme
   Palette: #FF6B6B coral, #FFB6B9 peach, #2C3E50 navy
   Font: Nanum Gothic (Korean) + Nanum Myeongjo italic accents
   ========================================================= */

:root{
  --coral: #FF6B6B;
  --coral-deep: #E84E5E;
  --coral-soft: #FF8B7E;
  --peach: #FFB6B9;
  --peach-light: #FFD9D8;
  --navy: #2C3E50;
  --navy-deep: #1A2533;
  --navy-soft: #3E5266;
  --cream: #FFF7F2;
  --cream-2: #FFEFE7;
  --ink: #1A2533;
  --ink-soft: #4A5A6B;
  --line: #EDE0D6;
  --white: #FFFFFF;
  --gold: #E8B86A;
  --shadow-1: 0 6px 18px rgba(44, 62, 80, 0.08);
  --shadow-2: 0 18px 50px rgba(232, 78, 94, 0.18);
  --shadow-3: 0 30px 80px rgba(44, 62, 80, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}

body{
  font-family: 'Nanum Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  padding-bottom: 120px; /* room for fixed CTA */
}

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

.container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn .btn-icon-img{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.btn-primary{
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(232, 78, 94, 0.32);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover{background: var(--ink); color: #fff;}
.btn-mini{
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 999px;
}
.btn-mini:hover{background: var(--coral); transform: translateY(-1px);}
.btn-mini .btn-icon-img{width:18px;height:18px;}
.btn-lg{padding: 18px 34px; font-size: 16px;}
.btn-xl{padding: 22px 42px; font-size: 18px;}

.btn-icon-img{
  background: #fff;
  padding: 2px;
}

/* Pulse animation for primary CTA */
.pulse{
  position: relative;
}
.pulse::after{
  content:'';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55);
  animation: pulseRing 2.2s var(--ease) infinite;
  pointer-events: none;
}
@keyframes pulseRing{
  0%{box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.55);}
  70%{box-shadow: 0 0 0 22px rgba(255, 107, 107, 0);}
  100%{box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);}
}

/* =========================================================
   BRAND ROW (no header — inline brand at top of hero)
   ========================================================= */
.brand-row{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.logo-mark{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color:#fff; font-size: 17px;
  box-shadow: 0 10px 22px rgba(232, 78, 94, 0.32);
  position: relative;
  overflow: hidden;
}
.logo-mark::after{
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shineSweep 3s ease-in-out infinite;
}
@keyframes shineSweep{
  0%, 60%{transform: translateX(-100%);}
  100%{transform: translateX(100%);}
}
.brand-name{
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand-name em{
  font-family: 'Bebas Neue', sans-serif;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--coral);
  margin-left: 4px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  padding: 64px 0 24px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(255, 182, 185, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 90%, rgba(255, 107, 107, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blob-1{
  width: 380px; height: 380px;
  background: var(--peach);
  top: -120px; right: -80px;
  animation: floatBlob 9s ease-in-out infinite;
}
.blob-2{
  width: 280px; height: 280px;
  background: var(--coral);
  bottom: -100px; left: -60px;
  opacity: 0.25;
  animation: floatBlob 11s ease-in-out -3s infinite;
}
.blob-3{
  width: 200px; height: 200px;
  background: var(--gold);
  top: 40%; right: 40%;
  opacity: 0.18;
  animation: floatBlob 14s ease-in-out -6s infinite;
}

/* Sparkles */
.sparkle{
  position: absolute;
  color: var(--coral);
  pointer-events: none;
  animation: sparkleSpin 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 107, 0.5));
}
.sparkle.s1{top: 14%; left: 4%; font-size: 22px; color: var(--gold); animation-delay: 0s;}
.sparkle.s2{top: 70%; left: 8%; font-size: 14px; color: var(--coral); animation-delay: -0.7s;}
.sparkle.s3{top: 22%; right: 10%; font-size: 26px; color: var(--peach); animation-delay: -1.3s;}
.sparkle.s4{top: 88%; right: 24%; font-size: 18px; color: var(--gold); animation-delay: -2s;}
.sparkle.s5{top: 50%; left: 48%; font-size: 16px; color: var(--coral); animation-delay: -1s;}
.sparkle.s6{top: 8%; left: 46%; font-size: 14px; color: var(--peach); animation-delay: -2.2s;}
.sparkle.s7{top: 60%; right: 4%; font-size: 20px; color: var(--gold); animation-delay: -0.4s;}
@keyframes sparkleSpin{
  0%, 100%{transform: scale(0.6) rotate(0deg); opacity: 0.35;}
  50%{transform: scale(1.15) rotate(180deg); opacity: 1;}
}

/* Confetti dropping */
.confetti{
  position: absolute;
  top: -20px;
  width: 10px; height: 14px;
  border-radius: 2px;
  pointer-events: none;
  animation: confettiFall linear infinite;
  opacity: 0.85;
}
.confetti.c1{left: 5%; background: var(--coral); animation-duration: 11s; animation-delay: 0s; transform: rotate(15deg);}
.confetti.c2{left: 18%; background: var(--peach); width: 8px; height: 8px; border-radius:50%; animation-duration: 8s; animation-delay: -2s;}
.confetti.c3{left: 30%; background: var(--gold); animation-duration: 12s; animation-delay: -5s; transform: rotate(-20deg);}
.confetti.c4{left: 45%; background: var(--coral); width: 6px; height: 6px; border-radius:50%; animation-duration: 9s; animation-delay: -1s;}
.confetti.c5{left: 58%; background: var(--peach); animation-duration: 10s; animation-delay: -4s; transform: rotate(35deg);}
.confetti.c6{left: 72%; background: var(--gold); width: 9px; height: 9px; animation-duration: 11s; animation-delay: -3s;}
.confetti.c7{left: 85%; background: var(--coral); animation-duration: 9s; animation-delay: -6s; transform: rotate(-25deg);}
.confetti.c8{left: 92%; background: var(--peach); width: 7px; height: 7px; border-radius:50%; animation-duration: 10s; animation-delay: -2.5s;}
.confetti.c9{left: 64%; background: var(--gold); animation-duration: 13s; animation-delay: -7s; transform: rotate(45deg);}
@keyframes confettiFall{
  0%{top: -20px; opacity: 0;}
  10%{opacity: 0.85;}
  90%{opacity: 0.85;}
  100%{top: 110%; opacity: 0;}
}

/* Sticker tape (diagonal banner) */
.sticker-tape{
  position: absolute;
  top: 60px;
  right: -50px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 60px;
  transform: rotate(8deg);
  letter-spacing: 0.16em;
  box-shadow: 0 8px 22px rgba(232, 184, 106, 0.4);
  z-index: 5;
  pointer-events: none;
}
.sticker-tape span{
  display: inline-block;
  animation: tapeSlide 12s linear infinite;
}
@keyframes tapeSlide{
  0%, 100%{transform: translateX(0);}
  50%{transform: translateX(-30px);}
}

/* Marker highlighter behind text */
.marker-hl{
  position: relative;
  display: inline-block;
  z-index: 1;
}
.marker-hl::before{
  content:'';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6%;
  height: 38%;
  background: var(--peach);
  z-index: -1;
  border-radius: 50% 30% 50% 25% / 60% 40% 50% 50%;
  transform: skew(-6deg) scaleX(0);
  transform-origin: left;
  transition: transform .9s var(--ease);
}
.marker-hl.marker-drawn::before{transform: skew(-6deg) scaleX(1);}
.marker-hl.marker-gold::before{background: var(--gold); opacity: 0.7;}
.marker-hl.marker-coral::before{background: var(--coral); opacity: 0.5;}

/* Hand-drawn squiggle under serif accent */
.squiggle{
  display: block;
  width: 80%;
  height: 14px;
  margin-top: 4px;
  stroke: var(--coral);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.hero-title.title-in .squiggle{stroke-dashoffset: 0;}

/* Title star deco */
.title-star{
  display: inline-block;
  font-size: 0.38em;
  color: var(--gold);
  margin-left: 14px;
  vertical-align: middle;
  animation: sparkleSpin 2.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(232, 184, 106, 0.5));
}
.title-deco{
  display: inline-block;
  color: var(--gold);
  font-size: 0.55em;
  margin-left: 14px;
  animation: sparkleSpin 3s ease-in-out infinite;
}

/* Circle mark around numbers like Korean ads */
.circle-mark{
  position: relative;
  display: inline-block;
  font-weight: 800;
  color: var(--coral-deep);
  padding: 0 6px;
}
.circle-mark::before{
  content:'';
  position: absolute;
  inset: -8% -12%;
  border: 2.5px solid var(--coral);
  border-radius: 50%;
  transform: rotate(-4deg);
}
@keyframes floatBlob{
  0%,100%{transform: translate(0,0) scale(1);}
  50%{transform: translate(20px, -28px) scale(1.05);}
}
.hero-grain{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.4 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 28px;
}

.kicker{
  display:inline-flex; align-items:center; gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-family: 'Bebas Neue', 'Nanum Gothic', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.kicker-dot{
  width:6px; height:6px;
  border-radius:50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.22);
  animation: blink 1.6s ease-in-out infinite;
}
.kicker-live{
  display:inline-flex; align-items:center; gap:5px;
  padding: 3px 9px;
  background: var(--coral);
  color:#fff;
  border-radius: 999px;
  font-size: 10px;
}
.kicker-live i{font-size: 6px; animation: blink 1s ease-in-out infinite;}
@keyframes blink{
  0%,100%{opacity:1}
  50%{opacity:0.35}
}

.hero-title{
  font-size: clamp(40px, 5.6vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-title .line{display:block;}
.hero-title .accent{color: var(--coral); display:inline-block;}
.hero-title .serif{
  font-family: 'Nanum Myeongjo', serif;
  font-style: italic;
  font-weight: 700;
}
.hero-title .serif em{font-style: italic;}

.hero-sub{
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-sub strong{color: var(--coral-deep); font-weight: 800;}

.hero-cta-row{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 520px;
}
.hero-stats li{display:flex; flex-direction:column; gap: 6px;}
.hero-stats .num{
  font-family: 'Bebas Neue', 'Nanum Gothic', sans-serif;
  font-size: 36px;
  color: var(--coral-deep);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-stats .lbl{
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

/* Hero visual */
.hero-visual{
  position: relative;
  min-height: 540px;
}
.hero-img-main{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease);
}
.hero-img-main img{
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display:block;
}
.hero-img-main:hover{transform: rotate(0deg) scale(1.01);}
.hero-img-main.tilt{
  transition: transform .15s var(--ease);
}

.hero-tag{
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.hero-tag i{color: var(--coral);}
.tag-top{
  top: 22px; left: 22px;
  animation: bobUp 4s var(--ease) infinite;
}
.tag-bottom{
  bottom: 30px; right: 22px;
  animation: bobUp 4s var(--ease) -2s infinite;
}
@keyframes bobUp{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-8px)}
}

.hero-img-accent{
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -28px;
  left: -38px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 6px solid var(--cream);
  z-index: 3;
  transition: transform .4s var(--ease);
}
.hero-img-accent img{width:100%; height:100%; object-fit: cover;}
.hero-img-accent.float{animation: floatY 6s var(--ease) infinite;}
.hero-img-accent:hover{transform: rotate(-6deg) scale(1.05);}
@keyframes floatY{
  0%,100%{transform: translateY(0) rotate(-4deg);}
  50%{transform: translateY(-14px) rotate(-1deg);}
}

.ticker-card{
  position: absolute;
  bottom: 16px;
  right: -30px;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--line);
  z-index: 4;
  animation: floatY 7s var(--ease) -1s infinite;
}
.ticker-row{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.ticker-row:last-child{border-bottom: none;}
.ticker-row .t-name{font-weight: 700; color: var(--ink);}
.ticker-row .t-val{
  font-family: 'Bebas Neue', monospace;
  font-size: 16px;
  color: var(--ink-soft);
}
.ticker-row .t-chg{
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 800;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
}
.ticker-row.up .t-chg{background: rgba(255, 107, 107, 0.12); color: var(--coral-deep);}
.ticker-row.down .t-chg{background: rgba(44, 62, 80, 0.1); color: var(--navy);}

.ticker-card-head{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1.5px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.ticker-card-head i{color: var(--coral);}
.ticker-card-head .live-dot{
  margin-left: auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
  animation: blink 1.4s ease-in-out infinite;
}

/* badge stickers around hero image */
.badge-sticker{
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: 0 14px 30px rgba(44, 62, 80, 0.18);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2.5px solid var(--ink);
}
.badge-sticker.bs-best{
  top: -22px; right: -10px;
  background: var(--gold);
  color: var(--ink);
  flex-direction: column;
  padding: 12px 14px;
  text-align: center;
  transform: rotate(8deg);
  animation: stickerBob 4s ease-in-out infinite;
  border-color: var(--ink);
}
.badge-sticker.bs-best span{
  font-weight: 800;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-sticker.bs-best small{
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.badge-sticker.bs-rate{
  left: -30px;
  top: 38%;
  background: #fff;
  color: var(--ink);
  transform: rotate(-6deg);
  animation: stickerBob 5s ease-in-out -2s infinite;
}
.badge-sticker.bs-rate i{color: var(--gold); font-size: 18px;}
.badge-sticker.bs-rate strong{font-size: 22px; font-weight: 800;}
.badge-sticker.bs-rate small{
  display: block;
  font-size: 10px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
@keyframes stickerBob{
  0%, 100%{transform: rotate(8deg) translateY(0);}
  50%{transform: rotate(6deg) translateY(-8px);}
}

/* speech bubble */
.speech-bubble{
  position: absolute;
  right: -8px;
  top: -10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 12px;
  line-height: 1.45;
  max-width: 200px;
  z-index: 6;
  box-shadow: 0 14px 30px rgba(44, 62, 80, 0.3);
  transform: rotate(2deg);
  animation: stickerBob 5.5s ease-in-out -1.5s infinite;
  display: none; /* shown only on wide screens */
  align-items: flex-start;
  gap: 8px;
}
.speech-bubble i{color: var(--coral); font-size: 14px; margin-top: 2px;}
.speech-bubble strong{color: var(--peach);}

/* accent flag on small accent image */
.accent-flag{
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--coral);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 107, 107, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #fff;
}

/* deco shapes around hero visual */
.deco-blob{
  position: absolute;
  pointer-events: none;
}
.deco-circle{
  width: 80px; height: 80px;
  border: 3px dashed var(--coral);
  border-radius: 50%;
  top: -30px; left: -30px;
  opacity: 0.55;
  animation: rotateSlow 16s linear infinite;
}
@keyframes rotateSlow{
  to{transform: rotate(360deg);}
}
.deco-dots{
  width: 120px; height: 120px;
  bottom: -40px; right: -30px;
  background-image: radial-gradient(circle, var(--coral) 1.6px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.45;
}

/* Button shine sweep */
.btn-shine{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.btn-shine::before{
  content:'';
  position: absolute;
  top: 0; left: -75%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: btnShineSweep 3.2s ease-in-out infinite;
}
.btn-primary{position: relative; overflow: hidden;}
@keyframes btnShineSweep{
  0%, 40%{left: -75%;}
  100%{left: 130%;}
}

/* Magnetic hover */
.magnetic{transition: transform .25s var(--ease), box-shadow .25s var(--ease);}

/* Marquee */
.marquee{
  margin-top: 28px;
  background: var(--ink);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--coral);
}
.marquee::before, .marquee::after{
  content:'';
  position: absolute; top:0; bottom:0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before{left: 0; background: linear-gradient(90deg, var(--ink), transparent);}
.marquee::after{right: 0; background: linear-gradient(-90deg, var(--ink), transparent);}
.marquee-track{
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.marquee-track span{display:inline-flex; align-items:center; gap: 8px;}
.marquee-track i{color: var(--coral); font-size: 11px;}
@keyframes marquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

/* =========================================================
   GENERAL SECTION
   ========================================================= */
.section{
  padding: 110px 0;
  position: relative;
}
.section-alt{background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);}
.section-archive{background: var(--cream-2);}
.section-reviews{background: var(--cream);}

.section-head{margin-bottom: 64px;}
.section-head.center{text-align: center; max-width: 720px; margin-left:auto; margin-right:auto;}

.section-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 107, 107, 0.1);
  color: var(--coral-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.section-eyebrow i{font-size: 11px;}
.section-eyebrow.gold{background: rgba(232, 184, 106, 0.18); color: var(--gold);}

.section-title{
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 22px;
}
.section-title em{
  font-style: italic;
  font-family: 'Nanum Myeongjo', serif;
  font-weight: 800;
}
.section-title em.ink-accent{color: var(--coral-deep);}
.section-title em.coral-accent{color: var(--coral);}
.section-title.light{color: #fff;}

.section-lead{
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 0 30px;
}
.section-lead.light{color: rgba(255,255,255,0.78);}

/* =========================================================
   TWO COLUMN
   ========================================================= */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse .col-text{order: 2}
.two-col.reverse .col-visual{order: 1}

.col-text .btn{margin-top: 20px;}

/* Frame (image cards) */
.col-visual{position: relative;}
.frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  transition: transform .5s var(--ease);
}
.frame img{width:100%; height:auto; display:block; aspect-ratio: 5/4; object-fit: cover;}
.frame-tilt-right{transform: rotate(2deg);}
.frame-tilt-right:hover{transform: rotate(0deg) scale(1.02);}
.frame-tilt-left{transform: rotate(-2deg);}
.frame-tilt-left:hover{transform: rotate(0deg) scale(1.02);}

.frame-badge{
  position: absolute;
  top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.frame-badge i{color: var(--coral);}

.frame-deco-grid{
  position: absolute;
  top: -32px; right: -32px;
  width: 140px; height: 140px;
  background-image:
    linear-gradient(var(--coral) 1px, transparent 1px),
    linear-gradient(90deg, var(--coral) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.22;
  z-index: -1;
  border-radius: 6px;
}

/* check list */
.check-list{
  list-style: none;
  padding: 0; margin: 28px 0;
  display: flex; flex-direction: column; gap: 14px;
}
.check-list li{
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.check-list i{
  width: 26px; height: 26px;
  display:grid; place-items:center;
  background: rgba(255, 107, 107, 0.14);
  color: var(--coral-deep);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

/* big bullets */
.big-bullets{
  list-style: none;
  padding: 0; margin: 28px 0;
  display: flex; flex-direction: column; gap: 22px;
}
.big-bullets li{
  display: flex; gap: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.bullet-num{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--coral-deep);
  letter-spacing: 0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.big-bullets li strong{display:block; margin-bottom: 6px; font-size: 16px; color: var(--ink);}
.big-bullets li p{margin: 0; color: var(--ink-soft); font-size: 14px;}

.floating-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: -16px; right: 28px;
  background: var(--coral);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-2);
  z-index: 3;
  animation: bobUp 3.4s var(--ease) infinite;
}

.overlay-chart{
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  pointer-events: none;
  opacity: 0.85;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 107, 0.18));
}
.overlay-chart svg{
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
}
.overlay-chart polyline{
  fill: none;
  stroke: var(--coral);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 107, 0.5));
}

.alert-stack{
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 4;
}
.alert-card{
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-3);
  border-left: 4px solid var(--coral);
}
.alert-pop{
  animation: alertPopIn .7s var(--ease) both;
  transform-origin: top right;
}
.alert-pop-2{
  animation-delay: .35s;
  transform: scale(0.95) translateX(-14px);
  opacity: 0.92;
  border-left-color: var(--gold);
}
.alert-pop-3{
  animation-delay: .7s;
  transform: scale(0.9) translateX(-26px);
  opacity: 0.82;
  border-left-color: var(--navy-soft);
}
@keyframes alertPopIn{
  0%{opacity: 0; transform: translateX(40px) scale(0.9);}
  100%{opacity: 1; transform: translateX(0) scale(1);}
}
.alert-pop-2{animation-name: alertPopInOffset2;}
.alert-pop-3{animation-name: alertPopInOffset3;}
@keyframes alertPopInOffset2{
  0%{opacity: 0; transform: translateX(40px) scale(0.95);}
  100%{opacity: 0.92; transform: translateX(-14px) scale(0.95);}
}
@keyframes alertPopInOffset3{
  0%{opacity: 0; transform: translateX(40px) scale(0.9);}
  100%{opacity: 0.82; transform: translateX(-26px) scale(0.9);}
}
.alert-row{
  display:flex; align-items: center; gap: 10px;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.alert-row .dot{
  width: 8px; height: 8px; border-radius:50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.24);
  animation: blink 1.4s ease-in-out infinite;
}
.alert-row strong{color: var(--coral); font-weight: 800;}
.alert-row .alert-strong-2{color: var(--gold);}
.alert-row .alert-strong-3{color: var(--navy);}
.alert-row .time{margin-left: auto; font-size: 11px;}
.alert-card p{margin: 0; font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.5;}
.alert-card p em{
  font-style: normal;
  background: rgba(255, 107, 107, 0.14);
  color: var(--coral-deep);
  padding: 1px 6px;
  border-radius: 6px;
}
.alert-pop-2 p em{background: rgba(232, 184, 106, 0.2); color: #b67a1a;}
.alert-pop-3 p em{background: rgba(44, 62, 80, 0.1); color: var(--navy);}

/* Bell decoration */
.bell-deco{
  position: absolute;
  top: -18px; left: -10px;
  width: 58px; height: 58px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(255, 107, 107, 0.45);
  z-index: 5;
  animation: bellRing 2.4s ease-in-out infinite;
  transform-origin: top center;
  border: 3px solid #fff;
}
.bell-deco .bell-pulse{
  position: absolute;
  inset: -8px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  opacity: 0;
  animation: bellPulse 2.4s ease-out infinite;
}
@keyframes bellRing{
  0%, 60%, 100%{transform: rotate(0deg);}
  70%{transform: rotate(-14deg);}
  80%{transform: rotate(10deg);}
  90%{transform: rotate(-6deg);}
}
@keyframes bellPulse{
  0%{transform: scale(1); opacity: 0.6;}
  100%{transform: scale(1.5); opacity: 0;}
}

.pdf-stack{
  position: absolute;
  left: -20px; bottom: -24px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 3;
}
.pdf-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
}
.pdf-pill i{color: var(--coral);}
.pdf-pill:nth-child(2){transform: translateX(40px);}
.pdf-pill:nth-child(3){transform: translateX(15px);}

/* info grid (news section) */
.info-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
.info-cell{
  padding: 18px 22px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
}
.info-cell > i{
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: 18px;
  color: var(--coral);
  background: rgba(255, 107, 107, 0.12);
  width: 36px; height: 36px;
  border-radius: 10px;
  display:grid; place-items:center;
  align-self: start;
  margin-top: 2px;
}
.info-cell > h4{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.info-cell > p{
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* =========================================================
   FEATURES GRID
   ========================================================= */
.features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card{
  position: relative;
  background: #fff;
  padding: 36px 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.feature-card::before{
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--peach));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-3);
  border-color: transparent;
}
.feature-card:hover::before{opacity: 1;}
.feature-icon{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 182, 185, 0.3));
  color: var(--coral-deep);
  font-size: 24px;
  border-radius: 16px;
  margin-bottom: 22px;
}
.feature-card h3{
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feature-card p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 20px;
}
.feature-tag{
  display: inline-block;
  padding: 5px 12px;
  background: rgba(44, 62, 80, 0.06);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.feature-tag.hot{
  background: var(--coral);
  color: #fff;
  animation: pulseTag 2s ease infinite;
}
@keyframes pulseTag{
  0%,100%{transform: scale(1)}
  50%{transform: scale(1.06)}
}

/* =========================================================
   EXCLUSIVE SECTION (DARK)
   ========================================================= */
.section-exclusive{
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.section-exclusive::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(255, 107, 107, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(232, 184, 106, 0.18), transparent 60%);
  pointer-events: none;
}
.section-exclusive > .container{position: relative; z-index: 1;}

.exclusive-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.ex-card{
  position: relative;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .3s var(--ease), border-color .4s var(--ease);
}
.ex-card:hover{
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 107, 0.4);
}
.ex-card.featured{
  background: linear-gradient(140deg, rgba(255, 107, 107, 0.15), rgba(232, 184, 106, 0.08));
  border-color: rgba(255, 107, 107, 0.4);
}
.ex-ribbon{
  position: absolute;
  top: -10px; right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
  transform: rotate(-3deg);
  animation: stickerBob 4s ease-in-out infinite;
}
.ex-ribbon.ribbon-blue{
  background: #4A6580;
  box-shadow: 0 6px 16px rgba(74, 101, 128, 0.4);
}
.ex-ribbon.ribbon-yellow{
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(232, 184, 106, 0.45);
}

/* final card sparkles */
.final-sparkle{
  position: absolute;
  color: var(--gold);
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(232, 184, 106, 0.6));
  animation: sparkleSpin 3s ease-in-out infinite;
  z-index: 2;
}
.final-sparkle.fs1{top: 14%; left: 8%; font-size: 22px;}
.final-sparkle.fs2{bottom: 18%; right: 12%; font-size: 16px; color: var(--coral); animation-delay: -1s;}
.final-sparkle.fs3{top: 22%; right: 16%; font-size: 14px; color: var(--peach); animation-delay: -2s;}

.final-sticker{
  position: absolute;
  top: 26px; right: 26px;
  background: var(--coral);
  color: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: rotate(8deg);
  box-shadow: 0 10px 22px rgba(255, 107, 107, 0.45);
  animation: stickerBob 3.6s ease-in-out infinite;
  z-index: 2;
  border: 2.5px solid #fff;
}

@media (min-width: 1101px){
  .speech-bubble{display: inline-flex;}
}
.ex-icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(255, 107, 107, 0.18);
  color: var(--coral);
  font-size: 20px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.ex-card h3{
  font-size: 17px;
  margin: 0 0 8px;
  color: #fff;
}
.ex-card p{
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 0 16px;
}
.ex-badge{
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--peach);
  padding: 4px 10px;
  background: rgba(255, 182, 185, 0.12);
  border-radius: 999px;
}

.exclusive-cta{
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.exclusive-cta p{
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 22px;
}
.exclusive-cta strong{color: var(--coral);}

/* =========================================================
   REVIEWS (Phone mockup slider)
   ========================================================= */
.reviews-slider{
  overflow: hidden;
  padding: 30px 0 20px;
  margin: 0 -12px;
}
.reviews-track{
  display: flex;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.phone-card{
  flex: 0 0 25%;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.phone{
  width: 100%;
  max-width: 250px;
  background: var(--ink);
  border-radius: 30px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(44, 62, 80, 0.22),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform .4s var(--ease);
}
.phone:hover{
  transform: translateY(-10px) rotate(-1deg);
}
.phone-notch{
  width: 70px;
  height: 18px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen{
  background: var(--cream);
  border-radius: 22px;
  padding: 32px 20px 22px;
  min-height: 360px;
  position: relative;
}
.msg-header{
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  display:grid; place-items:center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.avatar-1{background: linear-gradient(135deg, #FF6B6B, #FFB6B9);}
.avatar-2{background: linear-gradient(135deg, #2C3E50, #4A6580);}
.avatar-3{background: linear-gradient(135deg, #E8B86A, #D69A40);}
.avatar-4{background: linear-gradient(135deg, #FF8B7E, #FF6B6B);}
.avatar-5{background: linear-gradient(135deg, #3E5266, #2C3E50);}
.avatar-6{background: linear-gradient(135deg, #FFB6B9, #FF6B6B);}
.avatar-7{background: linear-gradient(135deg, #2C3E50, #FF6B6B);}
.avatar-8{background: linear-gradient(135deg, #E8B86A, #FF6B6B);}

.who strong{
  display:block;
  font-size: 14px;
  color: var(--ink);
}
.who small{
  display:block;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.verified{
  color: var(--coral);
  font-size: 16px;
}
.stars{
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.msg{
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.msg strong{color: var(--coral-deep); font-weight: 800;}
.when{
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  text-align: right;
  font-style: italic;
}

.slider-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.slider-btn{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display:grid; place-items:center;
  transition: all .25s var(--ease);
}
.slider-btn:hover{background: var(--coral); color: #fff; border-color: var(--coral);}
.slider-btn:disabled{opacity: 0.35; cursor: default;}
.slider-dots{display: flex; gap: 8px;}
.slider-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  padding: 0;
}
.slider-dots button.active{
  width: 28px;
  border-radius: 999px;
  background: var(--coral);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.section-final-cta{
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.final-card{
  position: relative;
  text-align: center;
  background: linear-gradient(140deg, var(--ink) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 40px 80px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.final-deco{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 0%, rgba(255, 107, 107, 0.4), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(232, 184, 106, 0.3), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.final-card > *{position: relative; z-index: 1;}
.final-card h2{
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.2;
  margin: 12px 0 18px;
  letter-spacing: -0.03em;
}
.final-card h2 em{
  font-style: italic;
  font-family: 'Nanum Myeongjo', serif;
  color: var(--coral);
}
.final-card p{
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  line-height: 1.7;
}
.final-note{
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p{
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.7;
}
.footer-brand .logo{color: #fff;}
.footer-brand .logo-text strong{color: #fff;}
.footer-links h5{
  font-size: 12px;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.12em;
}
.footer-links ul{list-style: none; padding: 0; margin: 0; display:flex; flex-direction:column; gap: 12px;}
.footer-links a{
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .2s var(--ease);
}
.footer-links a:hover{color: var(--coral);}
.footer-links i{font-size: 11px; color: var(--coral);}

.footer-bottom{
  padding-top: 28px;
  text-align: center;
}
.footer-bottom small{font-size: 12px;}

/* =========================================================
   FLOATING CTA (always visible)
   ========================================================= */
.floating-cta{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: calc(100% - 32px);
  max-width: 580px;
}
.fcta-inner{
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 12px 12px 22px;
  border-radius: 999px;
  box-shadow:
    0 24px 60px rgba(44, 62, 80, 0.25),
    0 0 0 1px var(--line);
}
.fcta-text{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.4;
}
.fcta-text i{
  font-size: 18px;
  color: var(--coral);
  flex-shrink: 0;
}
.fcta-text strong{color: var(--coral-deep);}
.btn-bounce{
  animation: bounceCta 1.6s var(--ease) infinite;
}
@keyframes bounceCta{
  0%,100%{transform: translateY(0)}
  50%{transform: translateY(-5px)}
}

/* =========================================================
   MODALS
   ========================================================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open{display: flex;}
.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.55);
  backdrop-filter: blur(6px);
}
.modal-dialog{
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 38px 36px 32px;
  box-shadow: var(--shadow-3);
  animation: modalIn .35s var(--ease);
}
@keyframes modalIn{
  from{transform: translateY(20px) scale(.98); opacity:0}
  to{transform: translateY(0) scale(1); opacity:1}
}
.modal-close{
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream-2);
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
  display:grid; place-items:center;
  transition: all .2s var(--ease);
}
.modal-close:hover{background: var(--coral); color: #fff;}
.modal h3{
  display:flex; align-items: center; gap: 10px;
  margin: 0 0 22px;
  font-size: 22px;
  color: var(--ink);
}
.modal h3 i{color: var(--coral);}
.modal h4{
  font-size: 14px;
  color: var(--coral-deep);
  margin: 22px 0 6px;
  letter-spacing: 0.02em;
}
.modal-body p{
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0 0 12px;
}
.modal-body strong{color: var(--ink);}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px){
  .features-grid{grid-template-columns: repeat(2, 1fr);}
  .exclusive-grid{grid-template-columns: repeat(2, 1fr);}
  .hero-grid{gap: 40px;}
  .hero-visual{min-height: 480px;}
  .phone-card{flex: 0 0 33.3333%;}
}

@media (max-width: 900px){
  .two-col, .hero-grid{grid-template-columns: 1fr; gap: 50px;}
  .two-col.reverse .col-text{order: 1}
  .two-col.reverse .col-visual{order: 2}
  .hero-visual{min-height: 460px;}
  .phone-card{flex: 0 0 50%;}
  .ticker-card{right: 0;}
  .footer-grid{grid-template-columns: 1fr; gap: 32px;}
  .sticker-tape{right: -40px; top: 20px; font-size: 11px;}
  .speech-bubble{display: none !important;}
}

@media (max-width: 720px){
  body{font-size: 15px; padding-bottom: 96px;}
  .container{padding: 0 18px;}

  /* HERO mobile */
  .hero{padding: 26px 0 12px;}
  .hero-grid{padding: 10px 18px; gap: 28px;}
  .brand-row{margin-bottom: 14px;}
  .logo-mark{width: 38px; height: 38px; font-size: 15px;}
  .brand-name{font-size: 17px;}
  .brand-name em{font-size: 12px;}
  .kicker{margin-bottom: 18px; font-size: 11px; padding: 6px 12px;}
  .hero-title{font-size: clamp(34px, 9.6vw, 44px); margin-bottom: 18px;}
  .squiggle{width: 70%; height: 10px;}
  .hero-sub{font-size: 14.5px; margin-bottom: 22px; line-height: 1.7;}
  .hero-cta-row{
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
    gap: 10px;
  }
  .hero-cta-row .btn{
    width: 100%;
    justify-content: center;
  }
  .hero-stats{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 18px;
  }
  .hero-stats .num{font-size: 24px;}
  .hero-stats .lbl{font-size: 10.5px; letter-spacing: 0.04em;}

  .hero-visual{min-height: 350px;}
  .hero-img-main{transform: rotate(-1deg);}
  .hero-img-main img{aspect-ratio: 4/3.6;}
  .hero-tag{padding: 6px 10px; font-size: 10.5px;}
  .tag-top{top: 10px; left: 10px;}
  .tag-bottom{bottom: 12px; right: 10px;}
  .hero-img-accent{width: 110px; height: 110px; left: -10px; bottom: -16px; border-width: 4px;}
  .accent-flag{font-size: 9.5px; padding: 5px 10px;}
  .ticker-card{
    width: 210px;
    right: -6px;
    bottom: -24px;
    padding: 10px 12px;
  }
  .ticker-card-head{font-size: 11px;}
  .ticker-row{font-size: 11.5px; padding: 5px 0; gap: 8px;}
  .ticker-row .t-val{font-size: 13px;}
  .ticker-row .t-chg{font-size: 10.5px; padding: 2px 6px;}

  /* stickers/sparkles on mobile */
  .sticker-tape{
    top: 8px;
    right: -56px;
    font-size: 10px;
    padding: 6px 56px;
    letter-spacing: 0.12em;
  }
  .badge-sticker.bs-best{top: -16px; right: -4px; padding: 8px 10px;}
  .badge-sticker.bs-best span{font-size: 11px;}
  .badge-sticker.bs-best small{font-size: 8.5px;}
  .badge-sticker.bs-rate{left: -16px; top: 34%; padding: 8px 10px;}
  .badge-sticker.bs-rate i{font-size: 14px;}
  .badge-sticker.bs-rate strong{font-size: 17px;}
  .badge-sticker.bs-rate small{font-size: 9px;}
  .deco-circle{width: 50px; height: 50px; top: -16px; left: -16px;}
  .deco-dots{width: 80px; height: 80px;}
  .sparkle{transform: scale(0.65);}
  .sparkle.s1, .sparkle.s4, .sparkle.s6{display: none;}
  .confetti.c2, .confetti.c4, .confetti.c6, .confetti.c8{display: none;}

  .marquee{margin-top: 48px; padding: 10px 0; font-size: 11.5px;}
  .marquee-track{gap: 28px;}

  /* SECTIONS mobile */
  .section{padding: 56px 0;}
  .section-head{margin-bottom: 32px;}
  .section-eyebrow{font-size: 11px; padding: 6px 13px; margin-bottom: 14px;}
  .section-title{font-size: clamp(24px, 6.6vw, 30px); line-height: 1.25;}
  .section-lead{font-size: 14.5px; line-height: 1.75;}
  .two-col, .hero-grid{gap: 36px;}
  .col-text > .btn{width: 100%; justify-content: center;}

  /* features */
  .features-grid{grid-template-columns: 1fr; gap: 14px;}
  .feature-card{padding: 26px 22px;}
  .feature-icon{width: 48px; height: 48px; font-size: 20px; margin-bottom: 16px;}
  .feature-card h3{font-size: 17px;}

  /* exclusive */
  .exclusive-grid{grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px;}
  .ex-card{padding: 22px 20px 20px;}
  .ex-card h3{font-size: 16px;}
  .ex-icon{width: 42px; height: 42px; font-size: 17px; margin-bottom: 14px; border-radius: 12px;}
  .exclusive-cta p{font-size: 14.5px;}
  .exclusive-cta .btn{width: 100%; justify-content: center;}

  /* big bullets */
  .big-bullets li{padding: 18px; gap: 16px;}
  .bullet-num{font-size: 22px;}

  /* frames */
  .frame{border-radius: 22px;}
  .frame-tilt-right, .frame-tilt-left{transform: rotate(0deg);}
  .frame-deco-grid{display:none;}
  .pdf-stack{
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 14px;
    gap: 6px;
  }
  .pdf-pill{font-size: 11px; padding: 7px 12px;}
  .pdf-pill:nth-child(2), .pdf-pill:nth-child(3){transform: none;}
  .alert-stack{
    position: static;
    width: 100%;
    margin-top: 18px;
    gap: 8px;
  }
  .alert-pop, .alert-pop-2, .alert-pop-3{
    transform: none !important;
    opacity: 1 !important;
    animation: alertPopMobileIn .6s var(--ease) both;
  }
  .alert-pop-2{animation-delay: .15s;}
  .alert-pop-3{animation-delay: .3s;}
  @keyframes alertPopMobileIn{
    0%{opacity: 0; transform: translateY(10px);}
    100%{opacity: 1; transform: translateY(0);}
  }
  .alert-card{padding: 12px 14px;}
  .alert-card p{font-size: 13px;}
  .bell-deco{
    width: 46px; height: 46px;
    font-size: 17px;
    top: -14px; left: -6px;
  }
  .floating-pill{right: 14px; bottom: -10px; padding: 9px 18px; font-size: 12px;}

  /* check / info */
  .check-list li{font-size: 14px;}
  .info-cell{padding: 14px 16px; gap: 12px;}
  .info-cell h4{font-size: 14px;}
  .info-cell p{font-size: 12.5px;}

  /* reviews */
  .reviews-slider{margin: 0; padding: 16px 0 8px;}
  .phone-card{flex: 0 0 100%; padding: 8px 12px;}
  .phone{max-width: 280px;}
  .phone-screen{min-height: 320px; padding: 28px 18px 18px;}
  .msg{font-size: 13px;}

  /* final cta */
  .final-card{padding: 50px 20px 46px;}
  .final-card h2{font-size: 25px; line-height: 1.3;}
  .final-card p{font-size: 14px;}
  .final-card .btn{width: 100%; justify-content: center;}
  .final-sticker{top: -10px; right: 10px; font-size: 11px; padding: 7px 12px;}
  .final-sparkle{font-size: 14px !important;}
  .btn-xl{padding: 16px 24px; font-size: 14.5px;}
  .btn-lg{padding: 14px 22px; font-size: 14px;}

  /* floating cta */
  .floating-cta{bottom: 10px; width: calc(100% - 16px);}
  .fcta-inner{padding: 7px 7px 7px 14px; gap: 8px;}
  .fcta-text{font-size: 11.5px; line-height: 1.35;}
  .fcta-text span{display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
  .fcta-text i{font-size: 15px;}
  .floating-cta .btn{padding: 10px 14px; font-size: 12px; gap: 6px;}
  .floating-cta .btn .btn-icon-img{width: 16px; height: 16px;}

  /* modal */
  .modal{padding: 12px;}
  .modal-dialog{padding: 30px 22px 22px; max-height: 86vh;}
  .modal h3{font-size: 18px;}

  /* footer */
  .site-footer{padding: 48px 0 24px;}
  .footer-grid{padding-bottom: 28px; gap: 28px;}
}

@media (max-width: 420px){
  .container{padding: 0 16px;}
  .hero-title{font-size: 32px;}
  .hero-img-accent{width: 100px; height: 100px;}
  .ticker-card{width: 188px; padding: 8px 12px;}
  .ticker-card-head{font-size: 10.5px; padding-bottom: 8px;}
  .badge-sticker.bs-rate{left: -10px;}
  .badge-sticker.bs-best{right: -2px;}

  .fcta-inner{padding: 6px 6px 6px 12px;}
  .fcta-text{font-size: 11px;}
  .fcta-text strong{display: inline;}
  .floating-cta .btn{padding: 9px 12px; font-size: 11.5px;}
  .floating-cta .btn i.fa-arrow-right{display: none;}

  .sticker-tape{display: none;}
  .deco-dots{display: none;}
}
