:root {
  --navy: #0d2f6e;
  --blue: #1d4fa3;
  --blue-2: #2f6fd1;
  --sky: #dcefff;
  --green: #2f8a2f;
  --green-2: #4caf50;
  --gold: #f2b84b;
  --gold-2: #ffd978;
  --ink: #1b2a44;
  --script: 'Lobster Two', cursive;
  --sans: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, #eaf5ff 0%, #f6fbff 40%, #e4f1ff 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 100% - 40px); margin-inline: auto; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #2f6fd1, #0d2f6e 70%);
  transition: opacity .8s var(--ease), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-logo {
  font-family: var(--script); font-size: 3rem; font-style: italic;
  background: linear-gradient(180deg, #fff6c9, var(--gold) 60%, #c7851c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 0 #0a2150);
  animation: prePulse 1.4s ease-in-out infinite;
}
.pre-bubble { position: relative; height: 60px; }
.pre-bubble span {
  position: absolute; left: 50%; bottom: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8); background: radial-gradient(circle at 30% 30%, #fff, transparent 60%);
  animation: preRise 1.6s ease-in infinite;
}
.pre-bubble span:nth-child(2) { margin-left: -26px; width: 12px; height: 12px; animation-delay: .4s; }
.pre-bubble span:nth-child(3) { margin-left: 18px; width: 14px; height: 14px; animation-delay: .8s; }
.pre-bar { width: 200px; height: 4px; margin: 18px auto 0; border-radius: 4px; background: rgba(255,255,255,.2); overflow: hidden; }
.pre-bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--gold), #fff); animation: preBar 1.1s ease-in-out infinite; }
@keyframes prePulse { 50% { transform: scale(1.06); } }
@keyframes preRise { 0% { transform: translateY(0) scale(.6); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(-60px) scale(1); opacity: 0; } }
@keyframes preBar { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* ---------- Bubbles canvas + cursor ---------- */
#bubbles { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.cursor-glow {
  position: fixed; width: 380px; height: 380px; left: 0; top: 0; z-index: 0; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,217,120,.25), transparent 65%);
  transition: opacity .3s;
}
.spark-trail {
  position: fixed; pointer-events: none; z-index: 9998; color: var(--gold);
  font-size: 14px; text-shadow: 0 0 8px #fff3b0;
  animation: trail .9s ease-out forwards;
}
@keyframes trail { to { transform: translate(var(--dx), var(--dy)) scale(0) rotate(180deg); opacity: 0; } }

section, footer, .marquee { position: relative; z-index: 2; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; transition: all .4s var(--ease);
}
.header.scrolled {
  padding: 8px 0;
  background: rgba(13, 47, 110, .82);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 10px 30px rgba(13,47,110,.25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-top {
  font-family: var(--script); font-style: italic; font-size: 2.2rem;
  background: linear-gradient(180deg, #fff8d6 0%, var(--gold-2) 35%, var(--gold) 65%, #b8761a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 0 #0a2150) drop-shadow(0 4px 6px rgba(0,0,0,.25));
  background-size: 100% 200%; animation: goldShift 4s ease-in-out infinite;
}
.logo-ribbon {
  margin-top: 2px; padding: 3px 18px; font-family: var(--script); font-style: italic; font-size: 1rem; color: #fff;
  background: linear-gradient(180deg, #2e9a4a, #1b6b31);
  clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%);
  text-shadow: 0 1px 0 #0a3b18;
}
@keyframes goldShift { 50% { background-position: 0 100%; } }

.nav { display: flex; gap: 28px; }
.nav a {
  position: relative; font-weight: 500; font-size: .95rem; color: var(--navy); padding: 6px 0;
  transition: color .3s;
}
.header.scrolled .nav a { color: #fff; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.nav-phone { font-weight: 700; font-size: .9rem; color: var(--navy); }
.header.scrolled .nav-phone { color: #fff; }
.burger { display: none; background: none; border: 0; cursor: pointer; width: 34px; }
.burger span { display: block; height: 3px; margin: 6px 0; background: var(--navy); border-radius: 3px; transition: .4s var(--ease); }
.header.scrolled .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 50px; font-weight: 600; color: #fff; font-size: 1rem;
  border: 0; cursor: pointer; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn span { position: relative; z-index: 2; display: inline-block; transition: transform .35s var(--ease); }
.btn::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; z-index: 1;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: shine 3.5s ease-in-out infinite;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.35), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { box-shadow: 0 16px 30px -8px rgba(13,47,110,.55); }
@keyframes shine { 0%, 60% { left: -120%; } 100% { left: 160%; } }
.btn-blue { background: linear-gradient(180deg, #2f6fd1, #133f8d); box-shadow: 0 8px 20px -6px rgba(19,63,141,.6), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-green { background: linear-gradient(180deg, #4caf50, #22702a); box-shadow: 0 8px 20px -6px rgba(34,112,42,.6), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-green::before { animation-delay: 1.2s; }
.btn-sm { padding: 10px 24px; font-size: .95rem; }
.btn-full { width: 100%; }
.ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,.55); z-index: 1;
  transform: scale(0); animation: ripple .7s ease-out; pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; padding: 130px 0 90px; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255,226,140,.45), transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.9), transparent 50%),
    linear-gradient(180deg, #a9d3fb 0%, #d6ecff 55%, #f2f9ff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px; position: relative; z-index: 3; }

.clouds { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cloud {
  position: absolute; background: #fff; border-radius: 100px; filter: blur(2px); opacity: .9;
  box-shadow: 0 10px 30px rgba(120,170,230,.25);
}
.cloud::before, .cloud::after { content: ''; position: absolute; background: #fff; border-radius: 50%; }
.c1 { width: 260px; height: 70px; top: 18%; left: -300px; animation: drift 55s linear infinite; }
.c1::before { width: 120px; height: 120px; top: -60px; left: 40px; } .c1::after { width: 90px; height: 90px; top: -40px; left: 130px; }
.c2 { width: 340px; height: 80px; bottom: 12%; left: -360px; animation: drift 70s linear infinite 12s; }
.c2::before { width: 150px; height: 150px; top: -80px; left: 60px; } .c2::after { width: 110px; height: 110px; top: -50px; left: 180px; }
.c3 { width: 200px; height: 55px; top: 42%; left: -220px; opacity: .7; animation: drift 45s linear infinite 20s; }
.c3::before { width: 90px; height: 90px; top: -45px; left: 30px; } .c3::after { width: 70px; height: 70px; top: -30px; left: 100px; }
.c4 { width: 420px; height: 100px; bottom: -30px; right: -60px; animation: bob 8s ease-in-out infinite; }
.c4::before { width: 190px; height: 190px; top: -100px; left: 70px; } .c4::after { width: 150px; height: 150px; top: -70px; left: 220px; }
@keyframes drift { to { transform: translateX(calc(100vw + 700px)); } }
@keyframes bob { 50% { transform: translateY(-14px); } }

.hero-art { position: relative; transform-style: preserve-3d; }
.halo {
  position: absolute; inset: -6% -4%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,222,120,.85) 0%, rgba(255,222,120,.3) 40%, transparent 70%);
  animation: halo 5s ease-in-out infinite; z-index: -1;
}
.rays {
  position: absolute; inset: -20%; z-index: -2; opacity: .5;
  background: repeating-conic-gradient(from 0deg, rgba(255,230,150,.55) 0 6deg, transparent 6deg 18deg);
  -webkit-mask: radial-gradient(circle, #000 20%, transparent 65%); mask: radial-gradient(circle, #000 20%, transparent 65%);
  animation: spin 40s linear infinite;
}
@keyframes halo { 50% { transform: scale(1.08); opacity: .8; } }
@keyframes spin { to { transform: rotate(360deg); } }
.art-frame {
  border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden; border: 6px solid rgba(255,255,255,.9);
  box-shadow: 0 30px 60px -20px rgba(13,47,110,.55), 0 0 0 10px rgba(255,217,120,.35);
  animation: morph 12s ease-in-out infinite, floaty 6s ease-in-out infinite;
  transform: translateZ(40px);
}
.art-frame img { width: 100%; transform: scale(1.04); transition: transform 1.2s var(--ease); }
.hero-art:hover .art-frame img { transform: scale(1.1); }
.art-frame.round { border-radius: 30px; animation: floaty 6s ease-in-out infinite; }
@keyframes morph {
  0%, 100% { border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%; }
  33% { border-radius: 55% 45% 40% 60% / 55% 60% 40% 45%; }
  66% { border-radius: 45% 55% 60% 40% / 40% 55% 45% 60%; }
}
@keyframes floaty { 50% { translate: 0 -14px; } }

.sparkle { position: absolute; color: #fff; font-size: 28px; text-shadow: 0 0 12px #ffe27a, 0 0 24px #ffd24d; animation: twinkle 2.4s ease-in-out infinite; z-index: 4; }
.s1 { top: 4%; left: 8%; } .s2 { top: 14%; right: 4%; font-size: 22px; animation-delay: .5s; }
.s3 { bottom: 20%; left: -2%; font-size: 20px; animation-delay: 1s; } .s4 { bottom: 8%; right: 10%; animation-delay: 1.5s; }
.s5 { top: 48%; right: -3%; font-size: 18px; animation-delay: .8s; }
@keyframes twinkle { 0%, 100% { transform: scale(.4) rotate(0); opacity: .3; } 50% { transform: scale(1.2) rotate(90deg); opacity: 1; } }

.float-badge {
  position: absolute; z-index: 5; padding: 12px 18px; border-radius: 18px; text-align: center;
  background: rgba(255,255,255,.75); backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px -10px rgba(13,47,110,.4); border: 1px solid rgba(255,255,255,.9);
  color: var(--gold); font-size: .85rem; transform: translateZ(80px);
}
.float-badge b { display: block; font-size: 1.4rem; color: var(--navy); }
.float-badge small { display: block; color: #52617a; font-size: .72rem; }
.fb1 { bottom: 8%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.fb2 { top: 10%; right: -2%; animation: floaty 5s ease-in-out infinite 1.5s; }

.eyebrow {
  display: inline-block; padding: 8px 18px; border-radius: 40px; font-weight: 600; font-size: .85rem;
  color: var(--navy); background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 20px -8px rgba(13,47,110,.3); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--script); font-style: italic; font-weight: 700; line-height: 1.05;
  font-size: clamp(2.8rem, 6vw, 5.2rem); color: var(--navy);
  text-shadow: 0 3px 0 #fff, 0 10px 30px rgba(13,47,110,.2);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), #58a6ff, var(--blue));
  background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: flow 6s linear infinite; text-shadow: none;
}
.hero-title em .char { background: linear-gradient(90deg, var(--blue), var(--blue-2), #58a6ff, var(--blue)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation-name: charIn, flow; animation-duration: .8s, 6s; animation-timing-function: var(--ease), linear; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.split:not(.in) em .char { animation: none; }
@keyframes flow { to { background-position: 300% 0; } }
.hero-grid > * { min-width: 0; }
.split .word { display: inline-block; white-space: nowrap; }
.split .char { display: inline-block; opacity: 0; transform: translateY(60px) rotateX(-90deg); transform-origin: bottom; }
.split.in .char { animation: charIn .8s var(--ease) forwards; }
@keyframes charIn { to { opacity: 1; transform: none; } }

.hero-sub { font-size: 1.1rem; color: #3b4d6b; max-width: 480px; margin: 20px 0 30px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats { display: flex; gap: 36px; margin-top: 40px; }
.hero-stats strong { font-size: 2.2rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; }
.hero-stats span { font-size: .85rem; color: #52617a; }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4; width: 26px; height: 42px; border: 2px solid var(--navy); border-radius: 20px; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--navy); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }

/* ---------- Marquee ---------- */
.marquee { background: linear-gradient(90deg, var(--navy), var(--blue), var(--navy)); padding: 16px 0; overflow: hidden; transform: rotate(-1.2deg) scale(1.02); box-shadow: 0 10px 30px rgba(13,47,110,.3); }
.marquee-track { display: flex; gap: 50px; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { color: #fff; font-weight: 600; white-space: nowrap; font-size: 1.05rem; }
.marquee span:nth-child(odd) { color: var(--gold-2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-title {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--script); font-style: italic; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--navy);
}
.section-title i { display: block; width: 70px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, var(--blue)); position: relative; }
.section-title i:last-child { background: linear-gradient(-90deg, transparent, var(--blue)); }
.section-title i::after { content: '◆'; position: absolute; right: -4px; top: -9px; font-size: 12px; color: var(--blue); font-style: normal; }
.section-title i:last-child::after { right: auto; left: -4px; }
.section-title.left { justify-content: flex-start; }
.section-title.left i:first-child { display: none; }
.section-sub { text-align: center; color: #52617a; margin-top: 8px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; perspective: 1200px; }
.service-card {
  position: relative; padding: 40px 30px 34px; border-radius: 28px; text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(235,245,255,.85));
  border: 1px solid rgba(255,255,255,1);
  box-shadow: 0 25px 50px -25px rgba(13,47,110,.4);
  transform-style: preserve-3d; transition: box-shadow .4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--ang, 0deg), transparent 0 70%, var(--gold) 80%, var(--blue-2) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s; animation: borderSpin 4s linear infinite;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { box-shadow: 0 40px 70px -25px rgba(13,47,110,.55); }
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderSpin { to { --ang: 360deg; } }
.service-card.featured { background: linear-gradient(160deg, #fffdf3, #eaf4ff); }
.ribbon-tag {
  position: absolute; top: 18px; right: -38px; transform: rotate(45deg); padding: 5px 44px; font-size: .72rem; font-weight: 700;
  color: #5a3b00; background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.svc-icon { width: 150px; margin: 0 auto 18px; transform: translateZ(50px); transition: transform .5s var(--ease); }
.service-card:hover .svc-icon { transform: translateZ(70px) translateY(-8px) scale(1.08); }
.svc-icon svg { filter: drop-shadow(0 12px 12px rgba(13,47,110,.2)); }
.service-card h3 { font-size: 1.3rem; color: var(--navy); transform: translateZ(30px); }
.service-card > p { color: #52617a; margin-top: 4px; transform: translateZ(20px); }
.service-card ul { list-style: none; margin: 20px 0; text-align: left; display: inline-block; }
.service-card li { padding: 5px 0 5px 26px; position: relative; color: #3b4d6b; font-size: .92rem; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: #fff; background: var(--green-2); width: 18px; height: 18px; border-radius: 50%; font-size: .7rem; display: grid; place-items: center; top: 7px; }
.card-link { display: block; font-weight: 700; color: var(--blue); transition: letter-spacing .3s; }
.card-link:hover { letter-spacing: 1px; }

/* Process */
.process { padding-top: 20px; }
.steps { display: flex; align-items: flex-start; justify-content: center; margin-top: 50px; gap: 10px; }
.step { flex: 1; max-width: 280px; text-align: center; }
.step-num {
  display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 16px; border-radius: 50%;
  font-family: var(--script); font-size: 2rem; color: #fff; font-style: italic;
  background: linear-gradient(145deg, var(--blue-2), var(--navy));
  box-shadow: 0 0 0 8px rgba(47,111,209,.15), 0 15px 30px -10px rgba(13,47,110,.6);
  animation: pulseRing 2.6s ease-out infinite;
}
.step:nth-of-type(3) .step-num { animation-delay: .8s; }
.step:nth-of-type(5) .step-num { animation-delay: 1.6s; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(47,111,209,.4), 0 15px 30px -10px rgba(13,47,110,.6); } 70%, 100% { box-shadow: 0 0 0 22px rgba(47,111,209,0), 0 15px 30px -10px rgba(13,47,110,.6); } }
.step h4 { color: var(--navy); font-size: 1.15rem; }
.step p { color: #52617a; font-size: .92rem; margin-top: 6px; }
.step-line { flex: .5; height: 3px; margin-top: 36px; background: repeating-linear-gradient(90deg, var(--blue-2) 0 10px, transparent 10px 18px); background-size: 36px 3px; animation: dash 1s linear infinite; }
@keyframes dash { to { background-position: 36px 0; } }

/* About */
.about { background: linear-gradient(180deg, transparent, rgba(169,211,251,.35)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pill {
  display: inline-block; margin: 14px 0 22px; padding: 6px 18px; border-radius: 8px; font-weight: 700; font-size: .9rem;
  color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--navy));
}
.about-text > p { font-size: 1.05rem; line-height: 1.7; color: #3b4d6b; margin-bottom: 12px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.feat {
  display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 16px;
  background: rgba(255,255,255,.75); border: 1px solid #fff; box-shadow: 0 10px 25px -15px rgba(13,47,110,.4);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.feat:hover { transform: translateY(-5px); box-shadow: 0 20px 35px -15px rgba(13,47,110,.5); }
.feat > span { font-size: 1.7rem; }
.feat b { display: block; color: var(--navy); font-size: .95rem; }
.feat small { color: #52617a; }
.cta-box { padding: 28px; border-radius: 24px; background: rgba(255,255,255,.6); border: 1px solid #fff; backdrop-filter: blur(8px); text-align: center; }
.cta-box h3 { font-family: var(--script); font-style: italic; font-size: 1.8rem; color: var(--navy); }
.dash-line { margin: 6px 0 18px; font-weight: 500; color: #3b4d6b; }
.cta-box .hero-btns { justify-content: center; }
.about-art { position: relative; transform-style: preserve-3d; }
.about-art .art-frame { box-shadow: 0 30px 60px -20px rgba(13,47,110,.55), 0 0 0 10px rgba(255,217,120,.35); border-width: 6px; }
.sign {
  position: absolute; bottom: -24px; right: 20px; font-family: var(--script); font-style: italic; font-size: 1.7rem; color: var(--navy);
  background: #fff; padding: 6px 22px; border-radius: 40px; box-shadow: 0 12px 30px -10px rgba(13,47,110,.4); transform: rotate(-4deg) translateZ(60px);
}

/* Testimonials */
.slider { max-width: 760px; margin: 50px auto 0; overflow: hidden; }
.slides { display: flex; transition: transform .8s var(--ease); }
.slide {
  min-width: 100%; padding: 44px 40px; text-align: center; border-radius: 28px;
  background: linear-gradient(160deg, #fff, #eef6ff); border: 1px solid #fff; box-shadow: 0 25px 50px -30px rgba(13,47,110,.5);
}
.stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 4px; }
.slide p { font-size: 1.2rem; line-height: 1.7; color: #33466a; margin: 16px 0; font-style: italic; }
.slide b { color: var(--navy); }
.dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.dots button { width: 12px; height: 12px; border-radius: 12px; border: 0; background: #b7cdea; cursor: pointer; transition: all .4s var(--ease); }
.dots button.active { width: 36px; background: var(--blue); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.contact-info > p { color: #3b4d6b; line-height: 1.7; margin: 18px 0 24px; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; align-items: center; padding: 12px 0; font-weight: 600; color: var(--navy); border-bottom: 1px dashed #b7cdea; }
.info-list span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px -10px rgba(13,47,110,.4); }
.quote-form {
  padding: 38px; border-radius: 30px; display: grid; gap: 18px;
  background: rgba(255,255,255,.8); border: 1px solid #fff; backdrop-filter: blur(12px);
  box-shadow: 0 40px 80px -40px rgba(13,47,110,.6);
}
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { position: relative; display: block; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 18px 16px 8px; border-radius: 14px; border: 2px solid #d6e5f7; background: #f7fbff;
  font: inherit; color: var(--ink); outline: none; transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.quote-form select { padding: 14px 16px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 5px rgba(47,111,209,.15); }
.quote-form label > span { position: absolute; left: 18px; top: 15px; color: #7b8aa3; pointer-events: none; transition: all .25s var(--ease); }
.quote-form input:focus + span, .quote-form input:not(:placeholder-shown) + span,
.quote-form textarea:focus + span, .quote-form textarea:not(:placeholder-shown) + span { top: 4px; font-size: .72rem; color: var(--blue-2); font-weight: 600; }
.form-success { display: none; text-align: center; font-weight: 600; color: var(--green); padding: 12px; border-radius: 12px; background: #e8f7e9; }
.form-success.show { display: block; animation: pop .5s var(--ease); }
@keyframes pop { from { transform: scale(.8); opacity: 0; } }

/* Footer */
.footer { background: linear-gradient(180deg, var(--blue), var(--navy)); color: #d8e6ff; padding: 26px 0; }
.foot-wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-wrap p { font-size: .9rem; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.12); transition: all .35s var(--ease); }
.socials a:hover { background: var(--gold); transform: translateY(-4px) rotate(-8deg); }
.socials svg { width: 20px; fill: #fff; }

.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 50%; color: #fff; font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(145deg, var(--blue-2), var(--navy)); box-shadow: 0 12px 25px -8px rgba(13,47,110,.6);
  opacity: 0; transform: translateY(30px); transition: all .4s var(--ease);
}
.to-top.show { opacity: 1; transform: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(50px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.service-card.reveal.in { transition: opacity 1s var(--ease), filter 1s var(--ease), box-shadow .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(300px, 80vw); flex-direction: column; padding: 110px 36px; gap: 22px;
    background: linear-gradient(180deg, var(--blue), var(--navy)); transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav.open { transform: none; box-shadow: -20px 0 50px rgba(0,0,0,.3); }
  .nav a { color: #fff; font-size: 1.15rem; }
  .burger { display: block; z-index: 101; }
  .burger.open span { background: #fff; }
  .nav-cta { display: none; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-text { text-align: center; order: -1; }
  .hero-sub { margin-inline: auto; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-art { max-width: 480px; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .steps { flex-direction: column; align-items: center; }
  .step-line { width: 3px; height: 40px; flex: none; margin: 0; background: repeating-linear-gradient(180deg, var(--blue-2) 0 8px, transparent 8px 14px); }
  .section-title.left { justify-content: center; }
  .about-text { text-align: center; }
  .feat { text-align: left; }
}
@media (max-width: 560px) {
  .logo-top { font-size: 1.7rem; }
  .hero-stats { gap: 18px; }
  .hero-stats strong { font-size: 1.6rem; }
  .features, .quote-form .row { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .section-title i { width: 34px; }
  .float-badge { transform: scale(.8); }
  .fb1 { left: 0; } .fb2 { right: 0; }
  .cursor-glow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .split .char { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Hero: left text / right visual ---------- */
.hero-grid { grid-template-columns: 1.05fr 1fr; gap: 60px; }
.hero-title { font-size: clamp(2.8rem, 5.6vw, 5.4rem); }
.hero-visual { position: relative; height: 560px; transform-style: preserve-3d; }
.orb {
  position: absolute; left: 50%; top: 50%; width: 420px; height: 420px; translate: -50% -50%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, #bfe0ff 30%, #5b95ea 70%, #1d4fa3 100%);
  box-shadow: 0 40px 90px -20px rgba(13,47,110,.55), inset 0 -30px 60px rgba(13,47,110,.35), 0 0 0 14px rgba(255,255,255,.35);
  animation: orbPulse 6s ease-in-out infinite;
}
.orb::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(255,217,120,.55), transparent 30%);
  animation: spin 7s linear infinite; mix-blend-mode: screen;
}
@keyframes orbPulse { 50% { scale: 1.04; } }
.ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; translate: -50% -50%; pointer-events: none; }
.r1 { width: 500px; height: 500px; border: 2px dashed rgba(29,79,163,.35); animation: spin 40s linear infinite; }
.r2 { width: 560px; height: 560px; border: 1px solid rgba(242,184,75,.5); animation: spin 60s linear infinite reverse; }
.r2::before { content: ''; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.r1::before { content: ''; position: absolute; bottom: 40px; left: 20px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 12px var(--blue-2); }

.bottle-wrap { position: absolute; left: 50%; top: 50%; width: 220px; translate: -50% -52%; transform: translateZ(60px); animation: bottleFloat 5s ease-in-out infinite; }
.bottle { width: 100%; filter: drop-shadow(0 30px 30px rgba(13,47,110,.45)); }
.liquid { animation: wave 3s ease-in-out infinite; transform-origin: center; }
@keyframes wave { 50% { transform: translateY(5px) skewY(-2deg); } }
@keyframes bottleFloat { 0%, 100% { transform: translateZ(60px) rotate(-6deg); } 50% { transform: translateZ(60px) translateY(-18px) rotate(-2deg); } }
.mist { position: absolute; top: 11%; right: 4%; width: 10px; height: 10px; }
.mist i {
  position: absolute; left: 0; top: 0; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(143,208,255,.6));
  box-shadow: 0 0 10px rgba(255,255,255,.9); opacity: 0;
  animation: spray 2.4s ease-out infinite;
}
.mist i:nth-child(2) { animation-delay: .15s; --ty: -40px; }
.mist i:nth-child(3) { animation-delay: .3s; --ty: 30px; }
.mist i:nth-child(4) { animation-delay: .45s; --ty: -15px; width: 8px; height: 8px; }
.mist i:nth-child(5) { animation-delay: .6s; --ty: 45px; }
.mist i:nth-child(6) { animation-delay: .75s; --ty: -55px; width: 7px; height: 7px; }
.mist i:nth-child(7) { animation-delay: .9s; --ty: 10px; width: 16px; height: 16px; }
.mist i:nth-child(8) { animation-delay: 1.05s; --ty: -28px; }
@keyframes spray { 0% { transform: translate(0, 0) scale(.3); opacity: 0; } 15% { opacity: 1; } 100% { transform: translate(150px, var(--ty, 0)) scale(1.6); opacity: 0; } }

.glass-card {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 20px;
  background: rgba(255,255,255,.62); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.95); box-shadow: 0 20px 45px -15px rgba(13,47,110,.45);
  color: var(--navy); animation: floaty 6s ease-in-out infinite;
}
.glass-card b { display: block; font-size: 1rem; }
.glass-card small { display: block; color: #52617a; font-size: .75rem; }
.gc-rating { top: 6%; left: -2%; transform: translateZ(90px); }
.gc-rating b { color: var(--navy); }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; margin-left: -10px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: .8rem; color: #fff;
  border: 2px solid #fff; background: linear-gradient(145deg, var(--blue-2), var(--navy));
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(145deg, var(--green-2), #22702a); }
.avatars span:nth-child(3) { background: linear-gradient(145deg, var(--gold-2), #c7851c); }
.avatars span:nth-child(4) { background: #fff; color: var(--navy); }
.gc-slot { bottom: 12%; left: -4%; transform: translateZ(70px); animation-delay: 1.2s; }
.live-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 0 rgba(76,175,80,.6); animation: livePulse 1.6s infinite; flex: none; }
@keyframes livePulse { 70% { box-shadow: 0 0 0 12px rgba(76,175,80,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); } }
.gc-check { top: 30%; right: -4%; flex-direction: column; align-items: flex-start; gap: 8px; transform: translateZ(100px); animation-delay: .6s; }
.check-row { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .85rem; }
.check-row span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: .7rem; color: #fff; background: var(--green-2); }
.gc-price { bottom: 4%; right: 6%; flex-direction: column; gap: 0; text-align: center; padding: 14px 24px; transform: translateZ(80px); animation-delay: 1.8s; }
.gc-price b {
  font-size: 2.2rem; line-height: 1.1; font-weight: 800;
  background: linear-gradient(180deg, var(--gold-2), #c7851c); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-visual .s1 { top: 2%; left: 40%; } .hero-visual .s2 { top: 18%; right: 20%; }
.hero-visual .s3 { bottom: 30%; left: 6%; } .hero-visual .s4 { bottom: 2%; left: 45%; } .hero-visual .s5 { top: 55%; right: 2%; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { height: 460px; max-width: 460px; width: 100%; margin: 20px auto 0; }
  .orb { width: 300px; height: 300px; }
  .r1 { width: 360px; height: 360px; } .r2 { width: 410px; height: 410px; }
  .bottle-wrap { width: 160px; }
}
@media (max-width: 560px) {
  .hero-visual { height: 400px; }
  .orb { width: 240px; height: 240px; }
  .r1 { width: 290px; height: 290px; } .r2 { width: 330px; height: 330px; }
  .bottle-wrap { width: 130px; }
  .glass-card { padding: 10px 12px; scale: .82; }
  .gc-rating { left: -6%; } .gc-slot { left: -6%; } .gc-check { right: -8%; top: 36%; } .gc-price { right: -2%; }
}
