:root {
  --navy: #063d7a;
  --blue: #0757a6;
  --blue-2: #0a69bd;
  --sky: #55c4e9;
  --sky-soft: #eaf8fd;
  --ink: #0d2742;
  --muted: #607187;
  --line: #d9e7f1;
  --paper: #ffffff;
  --off: #f6fbfe;
  --green: #1faa59;
  --shadow: 0 18px 55px rgba(11, 73, 126, .12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Tahoma", "Arial", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 105px 0; position: relative; }

.page-loader {
  position: fixed; inset: 0; z-index: 9999; background: #fff;
  display: grid; place-content: center; justify-items: center; gap: 12px;
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader img { width: 150px; animation: loaderPulse 1.2s ease-in-out infinite; }
.page-loader span { color: var(--blue); font-weight: 700; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
@keyframes loaderPulse { 50% { transform: scale(1.04); opacity: .72; } }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(255,255,255,.86); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,87,166,.08);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,44,86,.08); background: rgba(255,255,255,.96); }
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { width: 96px; flex: 0 0 auto; }
.brand img { max-height: 66px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 27px; margin-inline: auto; }
.main-nav a { font-size: 15px; font-weight: 700; color: #294761; position: relative; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; width: 0; height: 2px; border-radius: 3px; background: var(--sky); transition: width .25s; }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; width: 46px; height: 42px; border: 0; background: transparent; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--blue); margin: 6px 0; transition: .25s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 22px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 12px 28px rgba(7,87,166,.22); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(7,87,166,.3); }
.btn-ghost { background: rgba(255,255,255,.8); border-color: #cfe2f0; color: var(--blue); }
.btn-whatsapp { background: linear-gradient(135deg, #1faa59, #138b49); color: white; box-shadow: 0 14px 30px rgba(20,150,77,.22); border: 0; }
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.btn-lg { min-height: 56px; padding-inline: 28px; border-radius: 17px; }

.hero {
  min-height: 760px; padding-top: 155px; display: grid; align-items: center;
  background:
    radial-gradient(circle at 16% 25%, rgba(85,196,233,.16), transparent 28%),
    radial-gradient(circle at 83% 70%, rgba(7,87,166,.11), transparent 25%),
    linear-gradient(180deg, #fff, #f7fcff);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; font-size: 14px; letter-spacing: .1px; }
.eyebrow.light { color: #bfeaff; }
.spark { color: var(--sky); font-size: 21px; }
.hero h1 { margin: 12px 0 18px; font-size: clamp(58px, 7vw, 104px); line-height: .98; letter-spacing: -3px; color: var(--navy); }
.hero h1 span { color: var(--sky); position: relative; }
.hero h1 span::after { content: ""; position: absolute; right: 4px; left: 2px; bottom: 2px; height: 9px; background: rgba(85,196,233,.24); border-radius: 50%; transform: rotate(-2deg); z-index: -1; }
.hero-lead { margin: 0; max-width: 680px; font-size: 19px; color: #455e74; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 19px 28px; margin-top: 28px; color: #3f5b72; font-size: 14px; font-weight: 700; }
.trust-row span { color: var(--blue); background: var(--sky-soft); border-radius: 50%; padding: 2px 6px; margin-left: 5px; }
.hero-visual { min-height: 530px; display: grid; place-items: center; position: relative; }
.logo-stage {
  width: min(520px, 94%); aspect-ratio: 1; border-radius: 50%; position: relative; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(224,246,255,.84));
  box-shadow: 0 35px 90px rgba(7,87,166,.18), inset 0 0 0 1px rgba(255,255,255,.8);
}
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(85,196,233,.35); }
.logo-stage::before { inset: -25px; }
.logo-stage::after { inset: -52px; border-style: dashed; animation: rotateRing 24s linear infinite; }
@keyframes rotateRing { to { transform: rotate(360deg); } }
.hero-logo { width: 74%; filter: drop-shadow(0 15px 18px rgba(7,87,166,.12)); animation: floatLogo 5s ease-in-out infinite; }
@keyframes floatLogo { 50% { transform: translateY(-10px); } }
.shine { position: absolute; color: var(--sky); font-size: 26px; animation: twinkle 2.2s ease-in-out infinite; }
.shine-a { top: 11%; right: 18%; }
.shine-b { bottom: 17%; left: 15%; animation-delay: .7s; }
.shine-c { top: 27%; left: 7%; animation-delay: 1.3s; }
@keyframes twinkle { 50% { transform: scale(1.35) rotate(25deg); opacity: .45; } }
.service-chip { position: absolute; background: rgba(255,255,255,.95); box-shadow: var(--shadow); padding: 10px 16px; border-radius: 999px; color: var(--blue); font-size: 13px; font-weight: 800; border: 1px solid #e2f1f8; }
.chip-one { top: 5%; left: -3%; }
.chip-two { bottom: 13%; right: -7%; }
.chip-three { bottom: 0; left: 9%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 120px; height: 120px; right: 5%; top: 18%; background: rgba(85,196,233,.12); }
.hero-orb-two { width: 220px; height: 220px; left: -80px; bottom: 4%; border: 34px solid rgba(7,87,166,.04); }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; width: 28px; height: 46px; border: 2px solid rgba(7,87,166,.24); border-radius: 18px; }
.scroll-cue span { width: 5px; height: 8px; border-radius: 6px; background: var(--blue); position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 70% { transform: translate(-50%, 18px); opacity: 0; } }

.priority-strip { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; }
.priority-grid { min-height: 120px; display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); align-items: stretch; }
.priority-title { display: flex; align-items: center; font-size: 18px; font-weight: 800; padding-left: 28px; }
.priority-title span { color: #8ce2ff; margin-left: 6px; }
.priority-item { padding: 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.15); }
.priority-item b { color: #8ce2ff; font-size: 16px; }
.priority-item small { color: rgba(255,255,255,.78); font-size: 12px; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2, .faq-copy h2, .booking-copy h2, .final-cta h2 { margin: 8px 0 12px; font-size: clamp(34px, 4vw, 54px); line-height: 1.25; color: var(--navy); letter-spacing: -1px; }
.section-head p, .faq-copy > p { color: var(--muted); margin: 0; font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 245px; border: 1px solid var(--line); background: #fff; border-radius: 22px; padding: 27px 24px; box-shadow: 0 12px 35px rgba(10,86,145,.06); transition: transform .25s, border-color .25s, box-shadow .25s; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 90px; height: 90px; left: -35px; bottom: -35px; border-radius: 50%; background: var(--sky-soft); transition: transform .25s; }
.service-card:hover { transform: translateY(-7px); border-color: #a8dff1; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.3); }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(145deg, var(--sky-soft), #d7f2fb); font-size: 25px; margin-bottom: 18px; }
.service-card h3 { margin: 0 0 8px; font-size: 19px; color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 17px; color: var(--blue); font-weight: 800; font-size: 13px; position: relative; z-index: 2; }

.packages-section { background: var(--off); }
.package-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 33px; }
.filter-btn { border: 1px solid #cfe0ec; color: #436077; background: #fff; border-radius: 999px; padding: 10px 20px; font-weight: 800; transition: .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.package-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; position: relative; overflow: hidden; box-shadow: 0 13px 36px rgba(7,87,166,.06); transition: transform .25s, box-shadow .25s; }
.package-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.package-card.featured { border: 2px solid var(--sky); }
.package-badge { display: inline-block; padding: 5px 11px; border-radius: 999px; background: var(--sky-soft); color: var(--blue); font-size: 11px; font-weight: 800; }
.package-card.featured .package-badge { background: var(--blue); color: white; }
.package-card h3 { margin: 14px 0 4px; color: var(--navy); font-size: 22px; }
.package-price { display: flex; align-items: baseline; gap: 7px; margin: 12px 0; color: var(--blue); }
.package-price strong { font-size: 36px; line-height: 1; }
.package-price span { font-size: 13px; color: var(--muted); }
.package-card p { color: var(--muted); font-size: 14px; min-height: 56px; }
.package-card .btn { width: 100%; margin-top: 11px; }
.package-card.hidden { display: none; }

.booking-section { background: linear-gradient(135deg, #073c75, #0a69b9 68%, #38a8d1); color: #fff; overflow: hidden; }
.booking-section::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 80px solid rgba(255,255,255,.035); top: -180px; right: -120px; }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; position: relative; z-index: 2; }
.booking-copy h2 { color: white; }
.booking-copy > p { color: rgba(255,255,255,.77); font-size: 17px; }
.booking-points { display: grid; gap: 14px; margin: 26px 0; }
.booking-points > div { display: flex; gap: 13px; align-items: start; }
.booking-points > div > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.17); border-radius: 13px; color: #9fe9ff; font-weight: 900; }
.booking-points p { margin: 0; display: grid; }
.booking-points b { font-size: 15px; }
.booking-points small { color: rgba(255,255,255,.68); }
.embroidery-card { margin-top: 27px; border-radius: 21px; overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); }
.embroidery-card img { width: 100%; aspect-ratio: 16/8; object-fit: cover; object-position: center 52%; }
.embroidery-card p { margin: 0; padding: 12px 15px; color: rgba(255,255,255,.83); font-size: 13px; }
.booking-form { background: #fff; color: var(--ink); padding: 32px; border-radius: 27px; box-shadow: 0 30px 70px rgba(0,34,66,.28); }
.form-title { display: flex; justify-content: space-between; gap: 15px; align-items: end; margin-bottom: 23px; }
.form-title span { font-size: 22px; font-weight: 900; color: var(--navy); }
.form-title small { color: var(--muted); font-size: 11px; text-align: left; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-form label { display: grid; gap: 7px; color: #335069; font-weight: 800; font-size: 13px; margin-bottom: 14px; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid #cfdee8; border-radius: 13px; background: #fbfdff; padding: 12px 13px; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(85,196,233,.15); }
.booking-form textarea { resize: vertical; min-height: 110px; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin-top: 4px; accent-color: var(--blue); }
.form-submit { width: 100%; }
.form-note { text-align: center; color: var(--muted); font-size: 11px; margin: 11px 0 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step-card { border-radius: 22px; padding: 27px; background: #fff; border: 1px solid var(--line); position: relative; min-height: 210px; box-shadow: 0 12px 34px rgba(9,80,139,.06); }
.step-card span { display: inline-grid; place-items: center; width: 47px; height: 47px; border-radius: 15px; color: var(--blue); background: var(--sky-soft); font-weight: 900; }
.step-card h3 { margin: 20px 0 8px; color: var(--navy); }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }
.step-card:not(:last-child)::after { content: "←"; position: absolute; left: -17px; top: 49%; color: #84cfe8; font-size: 24px; font-weight: 900; z-index: 3; }

.faq-section { background: var(--off); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.faq-copy { position: sticky; top: 120px; }
.faq-copy h2 { font-size: clamp(36px,4vw,50px); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 900; margin-top: 20px; }
.accordion { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; padding: 20px 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--navy); font-weight: 900; text-align: right; }
.faq-question span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--sky-soft); color: var(--blue); flex: 0 0 auto; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 14px; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

.final-cta { padding: 70px 0; background: linear-gradient(125deg, #50c1e7, #0c75be 55%, #073d78); color: white; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; }
.final-cta h2 { color: #fff; font-size: clamp(35px,4vw,52px); }
.final-cta p { color: rgba(255,255,255,.82); margin: 0; }
.site-footer { background: #061f39; color: white; padding: 65px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 60px; }
.footer-brand img { width: 150px; background: white; border-radius: 18px; padding: 8px; }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 390px; }
.site-footer h3 { color: #82ddfb; font-size: 16px; margin: 0 0 14px; }
.site-footer .footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 7px; }
.site-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; color: rgba(255,255,255,.55); font-size: 12px; }

.floating-whatsapp { position: fixed; left: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 8px; background: var(--green); color: white; padding: 11px 15px; border-radius: 999px; font-weight: 900; box-shadow: 0 14px 35px rgba(16,135,69,.34); }
.wa-icon { width: 32px; height: 32px; display: grid; place-items: center; background: rgba(255,255,255,.18); border-radius: 50%; transform: rotate(-18deg); }
.toast { position: fixed; right: 50%; bottom: 25px; transform: translate(50%, 30px); background: #0d2742; color: white; padding: 12px 18px; border-radius: 12px; opacity: 0; visibility: hidden; z-index: 2000; transition: .25s; box-shadow: var(--shadow); }
.toast.show { opacity: 1; visibility: visible; transform: translate(50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .main-nav { gap: 18px; }
  .nav-cta { display: none; }
  .hero-grid { gap: 30px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .priority-grid { grid-template-columns: repeat(4,1fr); }
  .priority-title { grid-column: 1/-1; justify-content: center; padding: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-card::after { display: none; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 78px 0; }
  .nav-wrap { height: 72px; }
  .brand { width: 82px; }
  .nav-toggle { display: block; margin-right: auto; }
  .main-nav { position: fixed; top: 72px; right: 14px; left: 14px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; display: grid; gap: 0; box-shadow: var(--shadow); transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px; border-bottom: 1px solid #edf4f8; }
  .main-nav a:last-child { border-bottom: 0; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 118px; padding-bottom: 90px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 430px; order: -1; }
  .logo-stage { width: min(390px, 80vw); }
  .service-chip { font-size: 11px; padding: 8px 12px; }
  .booking-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-copy { position: static; text-align: center; }
  .booking-copy { text-align: center; }
  .booking-points { text-align: right; }
  .embroidery-card { max-width: 540px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 58px; letter-spacing: -2px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 350px; }
  .logo-stage { width: min(315px, 80vw); }
  .logo-stage::before { inset: -13px; }
  .logo-stage::after { inset: -28px; }
  .chip-one { left: -8%; }
  .chip-two { right: -8%; }
  .chip-three { left: 2%; bottom: -3%; }
  .scroll-cue { display: none; }
  .priority-grid { grid-template-columns: repeat(2,1fr); }
  .priority-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .services-grid, .packages-grid, .steps-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 35px; }
  .section-head h2, .booking-copy h2, .faq-copy h2 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 22px 17px; border-radius: 21px; }
  .form-title { align-items: start; flex-direction: column; }
  .form-title small { text-align: right; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: center; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .wa-label { display: none; }
  .wa-icon { background: transparent; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
