:root {
  --radius: 0.75rem;
  --brand: oklch(0.62 0.19 254);
  --brand-deep: oklch(0.32 0.15 258);
  --whatsapp: oklch(0.72 0.17 148);
  --background: oklch(0.99 0.005 240);
  --foreground: oklch(0.18 0.03 255);
  --card: oklch(1 0 0);
  --secondary: oklch(0.96 0.01 240);
  --muted: oklch(0.96 0.008 240);
  --muted-foreground: oklch(0.45 0.02 255);
  --border: oklch(0.92 0.01 245);
  --gradient-brand: linear-gradient(135deg, oklch(0.62 0.19 254), oklch(0.5 0.2 260));
  --gradient-hero: linear-gradient(180deg, rgba(8,18,45,0.75) 0%, rgba(8,18,45,0.85) 60%, rgba(8,18,45,0.95) 100%);
  --shadow-brand: 0 20px 40px -20px oklch(0.62 0.19 254 / 0.5);
  --shadow-soft: 0 10px 30px -12px oklch(0.2 0.05 255 / 0.15);
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.popup-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3, .brand, .footer-brand { font-family: "Sora", "Inter", sans-serif; letter-spacing: -0.02em; }
.container { width: min(100% - 32px, 1280px); margin-inline: auto; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / .85);
  backdrop-filter: blur(14px);
}
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; color: white; background: var(--gradient-brand);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand span:not(.brand-mark) { display: grid; line-height: 1.05; color: var(--brand-deep); font-size: 18px; font-weight: 800; }
.brand small, .footer-brand small { color: var(--muted-foreground); font: 700 10px/1.2 "Inter"; letter-spacing: .15em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; color: rgb(30 41 59 / .8); font-size: 14px; font-weight: 600; }
.main-nav a:hover { color: var(--brand); }

.wa-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; background: #25d366; color: white;
  padding: 12px 20px; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-brand); transition: transform .2s ease, background .2s ease;
}
.wa-button:hover { transform: translateY(-2px); background: #1ebe57; }
.wa-button.big { padding: 16px 28px; font-size: 16px; }
.wa-button.small { padding: 8px 16px; }
.wa-button img { width: 24px; height: 24px; object-fit: contain; flex: 0 0 auto; }
.wa-button.big img { width: 28px; height: 28px; }

.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg { z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { z-index: -1; background: var(--gradient-hero); }
.hero-content { padding-block: 96px 128px; color: white; }
.hero-copy { max-width: 768px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgb(255 255 255 / .2); border-radius: 999px;
  background: rgb(255 255 255 / .1); padding: 6px 16px;
  font-size: 12px; font-weight: 600; backdrop-filter: blur(10px);
}
.hero-pill svg { width: 14px; height: 14px; }
.hero h1 { margin-top: 20px; font-size: clamp(40px, 6vw, 60px); font-weight: 800; line-height: 1.05; }
.hero h1 span { color: #7cc1ff; }
.hero p { max-width: 672px; margin-top: 20px; color: rgb(255 255 255 / .85); font-size: clamp(18px, 2vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.outline-button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgb(255 255 255 / .3); border-radius: 999px;
  background: rgb(255 255 255 / .05); color: white; padding: 16px 24px; font-size: 14px; font-weight: 700;
}
.outline-button:hover { background: rgb(255 255 255 / .1); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 40px; color: rgb(255 255 255 / .85); font-size: 14px; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { color: #7cc1ff; width: 16px; height: 16px; }

.stats-section { background: white; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 40px; }
.stats-grid article { display: flex; align-items: center; gap: 12px; }
.stats-grid i {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: color-mix(in oklab, var(--brand) 10%, transparent); color: var(--brand);
}
.stats-grid svg { width: 20px; height: 20px; }
.stats-grid strong { display: block; color: var(--brand-deep); font: 800 28px/1 "Sora"; }
.stats-grid span { color: var(--muted-foreground); font-size: 12px; }

.partners-section, .stats-section { overflow: hidden; }
.partners-section { padding-block: 56px; background: white; border-block: 1px solid var(--border); }
.section-title { max-width: 672px; }
.section-title.center { margin-inline: auto; }
.section-title p, .kicker { color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-title h2, .about-copy h2, .final-cta h2 { margin-top: 8px; color: var(--brand-deep); font-size: clamp(32px, 5vw, 48px); font-weight: 800; line-height: 1.12; }
.section-title small { display: block; margin-top: 16px; color: var(--muted-foreground); line-height: 1.65; }
.partners-marquee { position: relative; overflow: hidden; margin-top: 40px; }
.partners-track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 30s linear infinite; }
.partner-card {
  flex: 0 0 220px; height: 130px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 18px; background: white; padding: 24px 32px; box-shadow: var(--shadow-soft);
}
.partner-card img { max-width: 160px; max-height: 80px; object-fit: contain; }
.partner-card.seiko img {
  width: 96px;
  max-width: 96px;
  max-height: 92px;
  object-fit: contain;
  object-position: center;
}
.fade-left, .fade-right { position: absolute; inset-block: 0; z-index: 2; width: 96px; pointer-events: none; }
.fade-left { left: 0; background: linear-gradient(90deg, white, transparent); }
.fade-right { right: 0; background: linear-gradient(270deg, white, transparent); }

.reviews-section { padding-block: 80px; background: #fbf7f1; }
.rating-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; }
.rating-line span, .google-panel div, .review-card .stars { color: #f4a100; letter-spacing: 1px; }
.rating-line small { color: var(--muted-foreground); }
.reviews-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; align-items: center; margin-top: 48px; }
.google-panel { text-align: left; }
.google-panel strong { display: block; color: var(--brand-deep); font: 800 30px/1 "Sora"; }
.google-panel div { margin-top: 12px; font-size: 28px; }
.google-panel p { color: var(--muted-foreground); font-size: 14px; }
.google-panel svg { width: 80px; height: auto; }
.reviews-carousel { position: relative; min-width: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { min-height: 250px; border: 1px solid var(--border); border-radius: 18px; background: white; padding: 24px; box-shadow: var(--shadow-soft); }
.review-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.review-person { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; color: white; font-weight: 800; }
.review-person b { display: block; color: var(--brand-deep); font-weight: 700; }
.review-person small { display: block; color: var(--muted-foreground); font-size: 12px; }
.google-g { width: 20px; height: 20px; flex: 0 0 auto; }
.review-card .stars { margin-top: 16px; font-size: 18px; }
.review-card p { margin-top: 12px; color: rgb(30 41 59 / .85); font-size: 14px; line-height: 1.65; }
.review-arrow {
  position: absolute; top: calc(50% - 16px); z-index: 3; display: grid; place-items: center;
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 999px;
  background: white; box-shadow: var(--shadow-soft); cursor: pointer;
}
.review-arrow.prev { left: -20px; }
.review-arrow.next { right: -20px; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.review-dots button { width: 8px; height: 8px; border: 0; border-radius: 999px; background: var(--border); cursor: pointer; transition: width .2s ease, background .2s ease; }
.review-dots button.active { width: 24px; background: var(--brand); }

.services-section, .about-section { padding-block: 80px; background: color-mix(in oklab, var(--secondary) 40%, transparent); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand); }
.service-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--muted); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-media img { transform: scale(1.05); }
.service-icon { position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: white; background: linear-gradient(135deg, #ff7a45, #f04e23); box-shadow: var(--shadow-brand); }
.service-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.service-body h3 { color: var(--brand-deep); font-size: 20px; font-weight: 800; }
.service-body p { flex: 1; margin-top: 12px; color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }
.service-body .wa-button { width: 100%; margin-top: 20px; }

.steps-section, .gallery-section { padding-block: 80px; background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 56px 0 48px; }
.steps-grid article { position: relative; padding: 32px; border: 1px solid var(--border); border-radius: 18px; background: color-mix(in oklab, var(--secondary) 40%, transparent); text-align: left; }
.steps-grid strong { position: absolute; top: -20px; left: 24px; display: inline-grid; place-items: center; height: 48px; padding-inline: 16px; border-radius: 999px; background: var(--gradient-brand); color: white; font: 800 18px/1 "Sora"; box-shadow: var(--shadow-brand); }
.steps-grid h3 { margin-top: 16px; color: var(--brand-deep); font-size: 20px; }
.steps-grid p { margin-top: 12px; color: var(--muted-foreground); font-size: 14px; line-height: 1.65; }

.gallery-section { background: color-mix(in oklab, var(--secondary) 40%, transparent); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 48px 0 40px; }
.gallery-item { overflow: hidden; aspect-ratio: 1; border-radius: 14px; background: var(--muted); box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photo { position: relative; }
.about-photo > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-soft); }
.years-card { position: absolute; right: -20px; bottom: -20px; border: 1px solid var(--border); border-radius: 18px; background: white; padding: 16px 24px; box-shadow: var(--shadow-brand); }
.years-card strong { display: block; color: var(--brand-deep); font: 800 32px/1 "Sora"; }
.years-card span { color: var(--muted-foreground); font-size: 12px; }
.about-copy > p:not(.kicker) { margin-top: 16px; color: var(--muted-foreground); line-height: 1.7; }
.about-copy ul { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.about-copy li { display: flex; align-items: flex-start; gap: 12px; }
.about-copy li svg { width: 20px; height: 20px; color: var(--brand); flex: 0 0 auto; }

.final-cta { padding-block: 80px; color: white; background: var(--gradient-brand); }
.final-cta h2 { color: white; }
.final-cta p { max-width: 760px; margin: 16px auto 0; color: rgb(255 255 255 / .85); font-size: 18px; line-height: 1.65; }
.cta-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.cta-checks span { border: 1px solid rgb(255 255 255 / .15); border-radius: 12px; background: rgb(255 255 255 / .1); padding: 12px 16px; font-size: 14px; }

.site-footer { background: var(--brand-deep); color: rgb(255 255 255 / .8); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-block: 56px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand strong { display: block; color: white; font-size: 18px; }
.site-footer p, .site-footer li { color: rgb(255 255 255 / .72); font-size: 14px; line-height: 1.65; }
.site-footer h3 { margin: 0 0 16px; color: white; font-size: 16px; }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer p i { margin-right: 8px; }
.copyright { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgb(255 255 255 / .1); padding-block: 20px; color: rgb(255 255 255 / .6); font-size: 12px; }

.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 50; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 999px; animation: pulse-ring 2s infinite; transition: transform .2s ease; }
.floating-wa:hover { transform: scale(1.05); }
.floating-wa img { width: 64px; height: 64px; object-fit: contain; filter: drop-shadow(0 12px 18px rgb(0 0 0 / .22)); }

.promo-popup { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.promo-popup.open { opacity: 1; pointer-events: auto; }
.popup-bg { position: absolute; inset: 0; background: rgb(0 0 0 / .6); backdrop-filter: blur(4px); }
.popup-card { position: relative; z-index: 1; width: min(100%, 448px); overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: 0 28px 80px -32px rgb(0 0 0 / .5); transform: translateY(16px) scale(.98); transition: transform .25s ease; }
.promo-popup.open .popup-card { transform: translateY(0) scale(1); }
.popup-close { position: absolute; top: 12px; right: 12px; z-index: 3; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 999px; background: rgb(0 0 0 / .4); color: white; cursor: pointer; }
.popup-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.popup-photo img { width: 100%; height: 100%; object-fit: cover; }
.popup-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,18,45,.85)); }
.popup-photo span { position: absolute; left: 16px; bottom: 16px; z-index: 1; border-radius: 999px; background: #25d366; color: white; padding: 5px 12px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.popup-body { padding: 24px; text-align: center; }
.popup-body h2 { color: var(--brand-deep); font-size: 42px; }
.popup-body p { margin-top: 8px; color: var(--muted-foreground); font-size: 14px; line-height: 1.55; }
.popup-body ul { display: grid; gap: 8px; max-width: 320px; margin: 16px auto; padding: 0; color: var(--muted-foreground); font-size: 12px; list-style: none; text-align: left; }
.popup-body li { display: flex; gap: 8px; }
.popup-body b { color: var(--brand); }
.popup-body .wa-button { width: 100%; }
.no-thanks { width: 100%; margin-top: 10px; border: 0; background: transparent; color: var(--muted-foreground); font-size: 12px; cursor: pointer; padding: 8px; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 oklch(0.72 0.17 148 / .6); }
  70% { box-shadow: 0 0 0 18px oklch(0.72 0.17 148 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.72 0.17 148 / 0); }
}

@media (max-width: 1024px) {
  .reviews-layout, .about-grid { grid-template-columns: 1fr; }
  .google-panel { text-align: center; }
  .google-panel svg { margin-inline: auto; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-inner > .wa-button { padding-inline: 12px; }
  .header-inner > .wa-button { font-size: 0; gap: 0; }
  .hero-content { padding-block: 72px 96px; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); }
  .hero-actions, .hero-actions a { width: 100%; }
  .stats-grid, .reviews-grid, .services-grid, .steps-grid, .footer-grid, .cta-checks { grid-template-columns: 1fr; }
  .stats-grid article { justify-content: center; }
  .partners-section, .reviews-section, .services-section, .steps-section, .gallery-section, .about-section, .final-cta { padding-block: 64px; }
  .review-arrow.prev { left: -10px; }
  .review-arrow.next { right: -10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .years-card { right: 12px; bottom: 12px; }
  .copyright { justify-content: center; text-align: center; }
  .floating-wa { right: 14px; bottom: 14px; width: 58px; height: 58px; }
  .floating-wa img { width: 58px; height: 58px; }
}
