@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf8f3;
  --fg: #121722;
  --card: #ffffff;
  --muted: #f2f3f5;
  --muted-text: #667085;
  --border: #e4e7ec;
  --gold: #e6a222;
  --gold-soft: #ffd870;
  --success: #248a4f;
  --danger: #d92d20;
  --warning: #e6a222;
  --info: #2563eb;
  --radius: 24px;
  --gradient-hero: linear-gradient(135deg, #0f131b 0%, #1d2431 62%, #755017 100%);
  --gradient-gold: linear-gradient(135deg, #e6a222, #ffd870);
  --gradient-radial-gold: radial-gradient(circle at 30% 20%, rgba(230, 162, 34, .26), transparent 58%);
  --shadow-card: 0 4px 24px -8px rgba(18, 23, 34, .10);
  --shadow-elegant: 0 20px 60px -20px rgba(18, 23, 34, .35);
  --shadow-gold: 0 15px 50px -12px rgba(230, 162, 34, .55);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.font-display, h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -.02em; }
.text-gold { color: var(--gold); }
.text-gradient-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; margin: 0 0 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; padding: 0 20px; border: 0; border-radius: 999px;
  font-weight: 700; cursor: pointer; transition: all .28s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-gold { background: var(--gradient-gold); color: #121722; box-shadow: var(--shadow-gold); }
.btn-dark { background: var(--fg); color: #fff; }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-wa { background: #23ad5c; color: white; }
.btn-wa:hover { background: #168f49; }
.btn-lg { min-height: 56px; padding: 0 28px; }
.btn-block { width: 100%; }

.glass { background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); }
.glass-dark { background: rgba(18, 23, 34, .72); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.10); }

.navbar-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: padding .4s var(--ease); }
.navbar-wrap.scrolled { padding: 8px 0; }
.navbar { height: 64px; border-radius: 999px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; background: rgba(18,23,34,.32); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); color: #fff; transition: all .35s var(--ease); }
.navbar-wrap.scrolled .navbar { background: rgba(18,23,34,.78); box-shadow: var(--shadow-elegant); }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 21px; }
.brand-mark { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; background: var(--gradient-gold); color: #121722; box-shadow: var(--shadow-gold); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 10px 14px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; transition: color .25s; }
.nav-links a:hover { color: var(--gold-soft); }
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 999px; background: transparent; color: #fff; border: 0; font-size: 24px; cursor: pointer; }
.mobile-menu { display: none; margin-top: 10px; padding: 16px; border-radius: 26px; color: #fff; animation: fadeUp .35s var(--ease) both; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 14px; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.9); }

.hero { min-height: 100vh; position: relative; overflow: hidden; background: #121722; color: #fff; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .9s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,23,34,.96), rgba(18,23,34,.70), rgba(18,23,34,.28)); }
.hero-slide:before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--gradient-radial-gold); opacity: .7; }
.hero-content { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 0 96px; max-width: 780px; }
.hero-rating { display: inline-flex; width: max-content; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; margin-bottom: 24px; color: rgba(255,255,255,.9); font-size: 13px; }
.hero h1 { font-size: clamp(42px, 7vw, 82px); line-height: 1.04; margin: 0 0 24px; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); color: rgba(255,255,255,.76); line-height: 1.65; max-width: 680px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 42px; color: rgba(255,255,255,.70); font-size: 14px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-dots { position: absolute; z-index: 3; left: max(16px, calc((100% - 1180px)/2)); bottom: 38px; display: flex; gap: 10px; }
.hero-dot { width: 26px; height: 5px; border-radius: 999px; background: rgba(255,255,255,.34); border: 0; cursor: pointer; transition: all .25s; }
.hero-dot.active { width: 50px; background: var(--gold); }

.section { padding: 108px 0; }
.section-soft { background: rgba(242, 243, 245, .65); }
.section-dark { background: var(--fg); color: #fff; position: relative; overflow: hidden; }
.section-dark:before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-gold); opacity: .55; }
.section-dark > .container { position: relative; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 56px; }
.section-head.center { text-align: center; display: block; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-title { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
.section-desc { margin: 16px 0 0; color: var(--muted-text); line-height: 1.7; }
.section-dark .section-desc { color: rgba(255,255,255,.72); }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 28px; transition: all .35s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elegant); border-color: rgba(230,162,34,.38); }
.icon-box { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--fg); color: var(--gold); font-size: 24px; margin-bottom: 20px; transition: all .35s; }
.card:hover .icon-box { background: var(--gradient-gold); color: #121722; }
.card h3 { font-size: 23px; margin: 0 0 8px; }
.card p { color: var(--muted-text); line-height: 1.65; margin: 0; font-size: 14px; }

.service-card { position: relative; cursor: pointer; }
.service-card.featured { background: var(--gradient-hero); color: #fff; border-color: transparent; }
.service-card.featured .icon-box { background: var(--gold); color: #121722; }
.service-card.featured p, .service-card.featured .service-tag, .service-card.featured .from { color: rgba(255,255,255,.70); }
.service-tag { color: var(--muted-text); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 800; margin-bottom: 10px; }
.service-bottom { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(102,112,133,.18); }
.from { color: var(--muted-text); font-size: 12px; }
.price-mini { font-family: 'Playfair Display', Georgia, serif; font-size: 21px; font-weight: 800; }

.steps { counter-reset: step; }
.step-card { height: 100%; color: #fff; }
.step-card .icon-box { background: var(--gradient-gold); color: #121722; box-shadow: var(--shadow-gold); }
.step-num { float: right; font-family: 'Playfair Display', Georgia, serif; font-size: 56px; line-height: .8; color: rgba(255,255,255,.11); font-weight: 800; }
.step-card h3 { color: #fff; }
.step-card p { color: rgba(255,255,255,.70); }

.pricing-wrap { display: grid; gap: 40px; }
.pricing-group h3 { font-size: 28px; margin: 0 0 22px; display: flex; gap: 10px; align-items: center; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.price-card { position: relative; }
.price-card.featured { background: var(--gradient-hero); color: #fff; border-color: rgba(230,162,34,.30); }
.ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-gold); color: #121722; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; box-shadow: var(--shadow-gold); }
.price-title { font-size: 27px; margin: 0 0 2px; }
.price-start { color: var(--muted-text); margin: 0 0 18px; font-size: 14px; }
.price-card.featured .price-start { color: rgba(255,255,255,.62); }
.price-number { display: flex; align-items: flex-start; gap: 5px; margin-bottom: 22px; }
.price-number strong { font-family: 'Playfair Display', Georgia, serif; font-size: 52px; line-height: .9; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--fg); }
.price-card.featured li { color: rgba(255,255,255,.86); }

.testimonial-shell { overflow: hidden; }
.testimonial-track { display: flex; gap: 20px; transition: transform .45s var(--ease); }
.testimonial { flex: 0 0 calc(38% - 13px); }
.testimonial .card { height: 100%; }
.quote { font-size: 20px; line-height: 1.65; margin: 18px 0 26px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.person { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.avatar { width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; background: var(--gradient-gold); color: #121722; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; }
.person strong { display: block; }
.person span { color: var(--muted-text); font-size: 14px; }
.slider-controls { display: flex; gap: 10px; }
.slider-btn { width: 48px; height: 48px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 22px; transition: all .25s; }
.slider-btn:hover { background: var(--fg); color: #fff; }

.faq-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 52px; }
.accordion { display: grid; gap: 12px; }
.accordion-item { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-card); border-radius: 18px; overflow: hidden; }
.accordion-trigger { width: 100%; border: 0; background: transparent; text-align: left; padding: 20px 24px; display: flex; justify-content: space-between; gap: 18px; cursor: pointer; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 19px; color: var(--fg); }
.accordion-content { display: none; padding: 0 24px 22px; color: var(--muted-text); line-height: 1.65; }
.accordion-item.open .accordion-content { display: block; }

.footer { background: var(--fg); color: #fff; padding: 78px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 56px; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: var(--gold-soft); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer h4 { margin: 0 0 18px; font-size: 19px; color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.50); }
.footer-bottom .links { display: flex; gap: 22px; }

.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 10px; }
.float-wa span { opacity: 0; transform: translateX(8px); transition: all .25s; background: var(--fg); color: #fff; padding: 9px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: var(--shadow-elegant); white-space: nowrap; }
.float-wa:hover span { opacity: 1; transform: translateX(0); }
.float-wa .bubble { width: 58px; height: 58px; border-radius: 999px; display: grid; place-items: center; background: #23ad5c; color: #fff; font-size: 26px; box-shadow: var(--shadow-elegant); }

.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 18px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10,13,18,.66); backdrop-filter: blur(6px); }
.modal-card { position: relative; z-index: 1; width: min(760px, 100%); max-height: 92vh; overflow: hidden; background: #fff; border-radius: 28px; box-shadow: var(--shadow-elegant); display: flex; flex-direction: column; animation: fadeUp .34s var(--ease) both; }
.modal-success .modal-card { width: min(540px, 100%); }
.modal-head { padding: 24px 26px 18px; border-bottom: 1px solid var(--border); }
.modal-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.modal-head h3 { font-size: 29px; margin: 0; }
.modal-close { width: 38px; height: 38px; border-radius: 999px; border: 0; background: var(--muted); cursor: pointer; font-size: 22px; }
.progress { display: flex; gap: 6px; margin: 18px 0 9px; }
.progress span { height: 5px; flex: 1; border-radius: 999px; background: var(--border); transition: all .25s; }
.progress span.active { background: var(--gold); }
.step-caption { margin: 0; color: var(--muted-text); font-size: 13px; }
.modal-body { padding: 26px; overflow-y: auto; }
.modal-foot { border-top: 1px solid var(--border); padding: 18px 26px; display: flex; justify-content: space-between; gap: 14px; background: #fff; }
.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp .28s var(--ease) both; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--muted-text); text-transform: uppercase; letter-spacing: .10em; font-size: 12px; font-weight: 800; }
.input, .textarea, .select { width: 100%; border: 1px solid var(--border); border-radius: 14px; background: #fff; padding: 13px 14px; outline: none; transition: all .2s; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(230,162,34,.14); }
.textarea { min-height: 118px; resize: vertical; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.choice { border: 2px solid var(--border); border-radius: 20px; padding: 26px 16px; background: #fff; cursor: pointer; text-align: center; transition: all .25s var(--ease); }
.choice:hover { transform: translateY(-3px); border-color: rgba(18,23,34,.25); }
.choice.active { border-color: var(--gold); background: rgba(230,162,34,.06); box-shadow: var(--shadow-gold); }
.choice .choice-icon { width: 66px; height: 66px; margin: 0 auto 12px; border-radius: 19px; display: grid; place-items: center; background: var(--muted); font-size: 30px; }
.choice.active .choice-icon { background: var(--gradient-gold); }
.choice strong { font-family: 'Playfair Display', Georgia, serif; font-size: 21px; }
.service-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.service-option { text-align: left; border: 2px solid var(--border); background: #fff; border-radius: 17px; padding: 15px 16px; cursor: pointer; font-weight: 700; transition: all .2s; }
.service-option.active { border-color: var(--gold); background: rgba(230,162,34,.06); }
.summary-box { background: rgba(242,243,245,.70); border-radius: 20px; padding: 20px; display: grid; gap: 12px; }
.summary-row { display: flex; justify-content: space-between; gap: 22px; font-size: 14px; }
.summary-row span:first-child { color: var(--muted-text); flex: 0 0 auto; }
.summary-row span:last-child { text-align: right; font-weight: 700; }
.success-hero { background: var(--gradient-hero); color: #fff; padding: 34px 26px; text-align: center; }
.success-hero .check { width: 82px; height: 82px; border-radius: 999px; display: grid; place-items: center; background: var(--gradient-gold); color: #121722; margin: 0 auto 18px; font-size: 42px; box-shadow: var(--shadow-gold); animation: float 5s ease-in-out infinite; }
.success-hero h3 { margin: 0 0 8px; font-size: 34px; }
.success-body { padding: 24px; display: grid; gap: 15px; }
.code-box { background: var(--muted); border-radius: 18px; padding: 18px; text-align: center; }
.code-box small { color: var(--muted-text); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.code-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Playfair Display', Georgia, serif; font-size: 29px; font-weight: 800; }
.copy-btn { width: 32px; height: 32px; border: 0; border-radius: 999px; cursor: pointer; background: #fff; }
.alert { padding: 13px 15px; border-radius: 14px; margin-bottom: 16px; font-size: 14px; }
.alert-danger { color: #912018; background: #fef3f2; border: 1px solid #fecdca; }
.alert-success { color: #05603a; background: #ecfdf3; border: 1px solid #abefc6; }
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 12px); z-index: 3000; background: var(--fg); color: #fff; border-radius: 999px; padding: 12px 18px; opacity: 0; transition: all .25s; box-shadow: var(--shadow-elegant); font-size: 14px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: translateY(0);} }
.reveal { opacity: 0; transform: translateY(24px); transition: all .65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links, .desktop-book { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 20px; }
  .grid-3, .grid-4, .pricing-cards, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .faq-layout { grid-template-columns: 1fr; }
  .testimonial { flex-basis: calc(62% - 10px); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .navbar { padding: 0 14px; }
  .brand .brand-name { display: none; }
  .hero-content { padding-top: 118px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 72px 0; }
  .grid-3, .grid-4, .pricing-cards, .footer-grid, .form-grid, .choice-grid, .service-options { grid-template-columns: 1fr; }
  .testimonial { flex-basis: 86%; }
  .modal-foot { flex-direction: column-reverse; }
  .modal-foot .btn { width: 100%; }
  .footer-bottom { display: block; }
  .footer-bottom .links { margin-top: 16px; flex-wrap: wrap; }
  .float-wa span { display: none; }
}

/* UI parity layer: mirrors original React/Tailwind visual system more closely */
:root {
  --bg: hsl(40 20% 98%);
  --fg: hsl(220 25% 10%);
  --card: hsl(0 0% 100%);
  --muted: hsl(220 14% 94%);
  --muted-text: hsl(220 10% 40%);
  --border: hsl(220 13% 88%);
  --gold: hsl(38 85% 55%);
  --gold-soft: hsl(42 95% 65%);
  --gradient-hero: linear-gradient(135deg, hsl(220 30% 8%) 0%, hsl(220 25% 14%) 60%, hsl(38 85% 25%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38 85% 55%), hsl(42 95% 65%));
  --gradient-glass: linear-gradient(135deg, hsl(0 0% 100% / .08), hsl(0 0% 100% / .02));
  --gradient-radial-gold: radial-gradient(circle at 30% 20%, hsl(38 85% 55% / .25), transparent 60%);
  --shadow-elegant: 0 20px 60px -20px hsl(220 25% 10% / .25);
  --shadow-gold: 0 15px 50px -10px hsl(38 85% 55% / .45);
  --shadow-card: 0 4px 24px -8px hsl(220 25% 10% / .08);
  --shadow-glow: 0 0 40px hsl(42 95% 65% / .30);
}
.container { width: min(100% - 32px, 1280px); }
.svg-icon { width: 1.5rem; height: 1.5rem; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.svg-icon.small { width: 1rem; height: 1rem; }
.svg-icon.tiny { width: .75rem; height: .75rem; }
.svg-icon.star-fill { color: var(--gold); fill: currentColor; }
.gold-icon { color: var(--gold); }
.success-icon { color: hsl(145 60% 40%); }
.success-big { width: 42px; height: 42px; }
.navbar-wrap { padding: 16px 0; }
.navbar { height: 64px; padding: 0 24px; background: hsl(220 25% 10% / .30); border: 1px solid hsl(0 0% 100% / .10); }
.navbar-wrap.scrolled .navbar { background: hsl(220 25% 10% / .72); }
.brand-mark { width: 36px; height: 36px; font-size: 0; }
.brand-mark .svg-icon { width: 16px; height: 16px; stroke-width: 2.5px; }
.btn { height: 44px; min-height: 44px; padding: 0 24px; font-size: 14px; font-weight: 600; box-shadow: none; }
.btn-gold { background: var(--gradient-gold); box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn-outline { background: var(--bg); border-color: var(--border); }
.btn-outline:hover { background: var(--muted); color: var(--fg); border-color: var(--border); }
.btn-wa { background: hsl(142 70% 45%); box-shadow: var(--shadow-card); }
.btn-wa:hover { background: hsl(142 70% 40%); box-shadow: var(--shadow-elegant); }
.btn-lg { height: 52px; min-height: 52px; padding: 0 32px; font-size: 16px; }
.hero { padding-top: 80px; }
.hero-slide:after { background: linear-gradient(90deg, hsl(220 25% 10% / .95), hsl(220 25% 10% / .70), hsl(220 25% 10% / .30)); }
.hero-slide:before { opacity: .60; }
.hero-content { padding-top: 80px; padding-bottom: 96px; max-width: none; }
.hero-content > * { max-width: 768px; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin-bottom: 24px; }
.hero-sub { font-size: clamp(18px, 2vw, 20px); line-height: 1.625; max-width: 672px; }
.hero-proof { gap: 24px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-rating { padding: 8px 16px; }
.hero-dots { left: max(16px, calc((100% - 1280px) / 2 + 16px)); gap: 12px; bottom: 40px; }
.hero-dot { height: 4px; width: 24px; }
.hero-dot.active { width: 48px; }
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } .container { width: min(100% - 64px, 1280px); } }
main > .section:first-of-type { position: relative; overflow: hidden; background: var(--bg); }
main > .section:first-of-type:before { content: ''; position: absolute; top: -160px; right: -160px; width: 384px; height: 384px; border-radius: 999px; background: hsl(38 85% 55% / .10); filter: blur(48px); }
main > .section:first-of-type > .container { position: relative; }
.section-soft { background: hsl(220 14% 94% / .40); }
.section-dark { background: var(--fg); }
.section-head { margin-bottom: 56px; }
.section-head > div { max-width: 672px; }
.section-title { font-size: clamp(36px, 4vw, 48px); line-height: 1.12; }
.grid { gap: 20px; }
.card { border-radius: 24px; padding: 28px; box-shadow: var(--shadow-card); }
.card:hover { transform: translateY(-4px); border-color: hsl(38 85% 55% / .40); box-shadow: var(--shadow-elegant); }
.icon-box { width: 48px; height: 48px; border-radius: 16px; font-size: 0; background: var(--fg); color: var(--gold); margin-bottom: 20px; }
.icon-box .svg-icon { width: 20px; height: 20px; }
.service-card { padding: 24px; border-radius: 24px; }
.service-card .icon-box { width: 56px; height: 56px; border-radius: 16px; }
.service-card .icon-box .svg-icon { width: 24px; height: 24px; }
.service-tag { margin-bottom: 8px; }
.service-bottom { margin-top: 20px; padding-top: 16px; align-items: center; border-color: currentColor; opacity: 1; }
.service-bottom > .svg-icon { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.service-card:hover .service-bottom > .svg-icon { transform: translateX(4px); }
.step-card { padding: 28px; border-radius: 24px; }
.step-card .icon-box { width: 56px; height: 56px; }
.step-num { font-size: 56px; }
.pricing-wrap { gap: 64px; }
.pricing-group h3 { font-size: 24px; margin-bottom: 24px; gap: 12px; }
.heading-line { height: 1px; width: 80px; background: var(--border); display: inline-block; }
.price-card { padding: 32px; border-radius: 24px; }
.ribbon { display: inline-flex; align-items: center; gap: 4px; top: -12px; }
.price-number strong { font-size: 48px; }
.price-card li { align-items: flex-start; gap: 8px; }
.testimonial-card { position: relative; padding: 32px; }
.quote-mark { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; color: hsl(38 85% 55% / .15); }
.testimonial { flex-basis: calc(38% - 14px); }
.quote { font-size: 18px; line-height: 1.625; }
.slider-btn { display: grid; place-items: center; background: var(--card); }
.slider-btn .svg-icon { width: 20px; height: 20px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonial-dot { width: 6px; height: 6px; border-radius: 999px; border: 0; background: var(--border); cursor: pointer; transition: all .25s; }
.testimonial-dot.active { width: 32px; background: var(--fg); }
.faq-layout { grid-template-columns: 4fr 8fr; }
.accordion-trigger { font-size: 18px; }
.footer { padding-top: 80px; }
.footer .brand { color: #fff; margin-bottom: 20px; display: inline-flex; }
.socials a { font-size: 0; color: #fff; }
.socials a:hover { background: var(--gold); color: var(--fg); }
.contact-row { display: flex; align-items: flex-start; gap: 8px; }
.float-wa .bubble { font-size: 0; transition: transform .3s var(--ease); }
.float-wa:hover .bubble { transform: scale(1.10); }
.float-wa:before { content: ''; position: absolute; right: 0; width: 58px; height: 58px; border-radius: 999px; background: hsl(142 70% 45%); opacity: .30; animation: ping 1.4s cubic-bezier(0,0,.2,1) infinite; }
.float-wa .svg-icon { width: 24px; height: 24px; }
.modal-card { border-radius: 24px; }
.choice-icon { font-size: 0; color: var(--fg); }
.choice-icon .svg-icon { width: 28px; height: 28px; }
.choice.active .choice-icon { color: var(--fg); }
.success-hero .check { font-size: 0; }
.copy-btn { display: inline-grid; place-items: center; }
@keyframes ping { 75%, 100% { transform: scale(1.35); opacity: 0; } }
@media (max-width: 980px) { .testimonial { flex-basis: calc(60% - 12px); } }
@media (max-width: 640px) { .navbar { height: 56px; padding: 0 16px; } .hero h1 { font-size: 40px; } .testimonial { flex-basis: 85%; } }

/* Refinement request: font besar dibuat sedikit lebih kecil dan lebih ideal. */
.site-logo { display:block; max-width:100%; height:auto; object-fit:contain; }
.frontend-logo { width:150px; height:42px; }
.navbar .brand { gap:12px; }
.brand-name { display:inline-block; font-family:'Playfair Display', Georgia, serif; font-weight:800; line-height:1.05; white-space:nowrap; letter-spacing:-.02em; }
.frontend-brand-name { color:#fff; font-size:18px; max-width:190px; overflow:hidden; text-overflow:ellipsis; }
.footer-brand-name { color:#fff; font-size:20px; }
.footer .brand { display:inline-flex; align-items:center; gap:12px; margin-bottom:18px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 64px) !important; line-height: 1.06; }
.hero-sub { font-size: clamp(16px, 1.7vw, 19px) !important; line-height: 1.62; }
.section-title { font-size: clamp(28px, 3.6vw, 42px) !important; line-height: 1.14; }
.card h3 { font-size: 20px; }
.pricing-group h3 { font-size: 22px !important; }
.price-title { font-size: 23px; }
.price-number strong { font-size: 42px !important; }
.step-num { font-size: 44px !important; }
.quote { font-size: 17px !important; }
.accordion-trigger { font-size: 17px !important; }
.modal-head h3 { font-size: 25px; }
.success-hero h3 { font-size: 29px; }
.code-line { font-size: 24px; }
@media (max-width: 640px) {
  .frontend-logo { width:132px; height:38px; }
  .frontend-brand-name { font-size:16px; max-width:145px; }
  .hero h1 { font-size: 34px !important; }
  .section-title { font-size: 28px !important; }
}

/* Fix visibility: section Cara Kerja harus terbaca jelas di atas background gelap. */
.section-dark .section-head .eyebrow,
.section-dark .section-title {
  position: relative;
  z-index: 1;
}
.section-dark .steps {
  position: relative;
  z-index: 1;
}
.section-dark .step-card,
.step-card.glass,
.card.glass.step-card {
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055)) !important;
  border-color: rgba(255,255,255,.16) !important;
  box-shadow: 0 24px 70px -34px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.08) !important;
  color: #ffffff !important;
  backdrop-filter: blur(16px);
}
.section-dark .step-card:hover,
.step-card.glass:hover,
.card.glass.step-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.17), rgba(255,255,255,.075)) !important;
  border-color: rgba(230,162,34,.55) !important;
}
.section-dark .step-card h3,
.step-card.glass h3,
.card.glass.step-card h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 14px rgba(0,0,0,.28);
}
.section-dark .step-card p,
.step-card.glass p,
.card.glass.step-card p {
  color: rgba(255,255,255,.82) !important;
}
.section-dark .step-num,
.step-card.glass .step-num,
.card.glass.step-card .step-num {
  color: rgba(255,216,112,.26) !important;
}
.section-dark .step-card .icon-box,
.step-card.glass .icon-box,
.card.glass.step-card .icon-box {
  background: var(--gradient-gold) !important;
  color: #121722 !important;
}

/* Patch: nama website menempel ke logo di frontend */
.navbar .brand,
.footer .brand {
  gap: 0 !important;
  column-gap: 0 !important;
}
.navbar .brand .frontend-brand-name,
.footer .brand .footer-brand-name {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Patch: logo frontend dibuat icon-size agar judul website benar-benar rapat di kanan logo. */
.navbar .brand {
  gap: 2px !important;
  column-gap: 2px !important;
}
.navbar .brand .frontend-logo {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  object-fit: cover !important;
  object-position: left center !important;
  border-radius: 999px;
}
.navbar .brand .frontend-brand-name {
  margin-left: -1px !important;
  padding-left: 0 !important;
}
@media (max-width: 640px) {
  .navbar .brand .frontend-logo {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }
}

/* Frontend footer brand juga dibuat rapat seperti header. */
.footer .brand {
  gap: 3px !important;
  column-gap: 3px !important;
}
.footer .brand .frontend-logo {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  object-fit: cover !important;
  object-position: left center !important;
  border-radius: 999px;
}
.footer .brand .footer-brand-name {
  margin-left: 0 !important;
  padding-left: 0 !important;
}


/* DEMO VERSION BY Nadiwebs.com */
.demo-version-badge{
  position:fixed;left:50%;bottom:14px;transform:translateX(-50%);z-index:9999;
  display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;
  padding:10px 18px;border-radius:999px;background:linear-gradient(135deg,#ff8a00,#ffbd45);
  color:#111827;font-weight:900;font-size:12px;letter-spacing:.08em;text-transform:uppercase;
  box-shadow:0 16px 40px rgba(0,0,0,.22);border:1px solid rgba(255,255,255,.45)
}
@media(max-width:640px){.demo-version-badge{font-size:10px;padding:9px 12px;bottom:10px;max-width:calc(100% - 24px)}}
