/* ============================================================
   Malmö Flytt & Städ — styles (static mockup)
   Aesthetic: refined Nordic premium. Deep blue + teal accent.
   Motion: lots of tasteful "juice", GPU-friendly only.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand: navy + orange, sampled from images/logo.png */
  --navy: #142846;
  --navy-700: #20355C;
  --orange: #FA6400;
  --orange-600: #E25800;
  /* aliases mapped to new roles: orange = action/accent, navy = dark/structure */
  --blue: #FA6400;
  --blue-700: #E25800;
  --blue-900: #0E1C32;
  --teal: #FA6400;
  --teal-600: #E25800;
  --wa: #25D366;

  --ink: #142846;
  --ink-soft: #4A5870;
  --muted: #828FA3;

  --bg: #ffffff;
  --bg-soft: #F5F7FA;
  --bg-tint: #FFF1E6;
  --line: #E6E9F0;

  --grad-brand: linear-gradient(125deg, #FA6400 0%, #FF8A33 100%);
  --grad-deep: linear-gradient(150deg, #1C3056 0%, #142846 50%, #0E1C32 100%);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16,28,50,.06), 0 2px 8px rgba(16,28,50,.05);
  --shadow: 0 8px 24px rgba(16,28,50,.08), 0 2px 6px rgba(16,28,50,.05);
  --shadow-lg: 0 24px 60px rgba(16,28,50,.16), 0 8px 20px rgba(16,28,50,.08);
  --shadow-blue: 0 18px 40px rgba(250,100,0,.28);
  --shadow-teal: 0 16px 36px rgba(250,100,0,.28);

  --container: 1180px;
  --header-h: 94px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-display: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
html:lang(ar), html:lang(fa) { } /* anchor for clarity */
:lang(ar) { --font-display: 'IBM Plex Sans Arabic', system-ui, sans-serif; --font-body: 'IBM Plex Sans Arabic', system-ui, sans-serif; }
:lang(fa) { --font-display: 'Vazirmatn', system-ui, sans-serif; --font-body: 'Vazirmatn', system-ui, sans-serif; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: clamp(15.5px, 1vw + 13px, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
:lang(ar) body, :lang(fa) body { line-height: 1.85; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
:lang(ar) h1, :lang(fa) h1, :lang(ar) h2, :lang(fa) h2 { letter-spacing: 0; line-height: 1.25; }
::selection { background: var(--teal); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.section { padding-block: clamp(64px, 9vw, 124px); }
.skip-link { position: fixed; inset-inline-start: -999px; top: 8px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.skip-link:focus { inset-inline-start: 8px; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

/* ---------- Shared bits ---------- */
.ic { width: 1.15em; height: 1.15em; flex: none; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600); display: inline-flex; align-items: center; gap: .55em; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow--light { color: #FFC68A; }
.eyebrow--light::before { background: #FFC68A; }
.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-title { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.section-title--light { color: #fff; }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.08rem; }

.stars { color: #ffb020; letter-spacing: 2px; font-size: .95rem; }

.scroll-progress { position: fixed; inset-block-start: 0; inset-inline-start: 0; height: 3px; width: 100%; transform: scaleX(var(--p, 0)); transform-origin: inline-start; background: var(--grad-brand); z-index: 200; will-change: transform; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #fff;
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--pill); border: 1px solid transparent; color: var(--btn-fg);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn::after { /* sheen */
  content: ""; position: absolute; top: 0; inset-inline-start: -60%; width: 40%; height: 100%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(-120%) skewX(-18deg); transition: transform .6s var(--ease);
}
.btn:hover::after { transform: translateX(360%) skewX(-18deg); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 24px 50px rgba(250,100,0,.36); }
.btn-whatsapp { background: var(--wa); box-shadow: 0 14px 34px rgba(37,211,102,.32); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(37,211,102,.42); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72); backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.92); box-shadow: 0 6px 24px rgba(11,46,86,.07); border-bottom-color: var(--line); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 4px 10px rgba(14,95,174,.25)); transition: transform .4s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-text { font-weight: 600; font-size: 1.08rem; color: var(--ink-soft); letter-spacing: -.01em; }
.brand-text strong { color: var(--ink); font-weight: 800; }
.brand-logo { height: 78px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 60px; } }

.nav-links { display: flex; gap: 4px; margin-inline-start: 18px; }
.nav-links a { position: relative; padding: 8px 14px; font-weight: 500; color: var(--ink-soft); border-radius: var(--r-sm); transition: color .2s var(--ease); }
.nav-links a::after { content: ""; position: absolute; inset-inline: 14px; bottom: 4px; height: 2px; background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: inline-start; transition: transform .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; margin-inline-start: auto; }
.lang-switcher { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--pill); padding: 3px; }
.lang-switcher button {
  border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: .82rem;
  padding: 6px 11px; border-radius: var(--pill); transition: color .2s, background .3s var(--ease), box-shadow .3s;
}
.lang-switcher button:hover { color: var(--ink); }
.lang-switcher button.is-active { background: #fff; color: var(--blue); box-shadow: var(--shadow-sm); }
.header-cta { padding: 11px 18px; }

.menu-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); padding: 0; cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.menu-toggle:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.menu-toggle[aria-expanded="true"] { background: var(--bg-tint); border-color: transparent; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease), background .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span { background: var(--orange); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px clamp(18px,4vw,40px) 22px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: flex; animation: menuDrop .28s var(--ease) both; }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu a { padding: 12px 8px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--bg-soft); }
.lang-switcher--mobile { margin-top: 14px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; padding-block: clamp(54px, 8vw, 96px); --mx: 70%; --my: 24%; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
    radial-gradient(60% 70% at 82% 8%, rgba(250,100,0,.13), transparent 60%),
    radial-gradient(55% 60% at 10% 90%, rgba(20,40,70,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-tint), #fff 70%); }
.hero-bg::before { /* grain */
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-bg::after { /* cursor glow */
  content: ""; position: absolute; inset: -10%; transition: background .2s linear;
  background: radial-gradient(280px 280px at var(--mx) var(--my), rgba(250,100,0,.18), transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }

.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -.035em; }
:lang(ar) .hero-title, :lang(fa) .hero-title { letter-spacing: 0; }
.hero-title { background: linear-gradient(180deg, var(--ink), #20344b); -webkit-background-clip: text; background-clip: text; }
.hero-sub { margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 30em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding: 0; list-style: none; }
.trust-row li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.trust-row .ic { color: var(--teal-600); }
.trust-rating .stars { font-size: .85rem; }

/* hero visual */
.hero-visual { position: relative; perspective: 1100px; }
.hero-photo { position: relative; aspect-ratio: 4 / 4.6; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--blue-900); transform: rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)); transition: transform .4s var(--ease); will-change: transform; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.03); animation: kenburns 20s ease-in-out infinite alternate; }
.hero-scrim { position: absolute; inset: 0; background:
    linear-gradient(150deg, rgba(20,40,70,.42) 0%, rgba(250,100,0,.14) 55%, transparent 100%),
    linear-gradient(180deg, transparent 55%, rgba(14,28,50,.42)); }
.badge-rut {
  position: absolute; inset-block-start: -22px; inset-inline-end: -16px;
  width: 112px; height: 112px; border-radius: 50%; display: grid; place-content: center; text-align: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-teal); border: 4px solid #fff;
  animation: floatY 5.5s ease-in-out infinite;
}
.badge-rut-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1; }
.badge-rut-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .92; }
.float-chip {
  position: absolute; inset-block-end: 22px; inset-inline-start: -22px;
  display: flex; flex-direction: column; gap: 2px; padding: 12px 18px; border-radius: 16px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(8px); box-shadow: var(--shadow);
  animation: floatY 6.5s ease-in-out infinite .6s;
}
.float-chip-text { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.float-chip-text em { font-style: normal; font-weight: 500; color: var(--muted); font-size: .82rem; display: block; }

/* ---------- Trust strip ---------- */
.cred { background: #fff; border-block: 1px solid var(--line); }
.cred-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 0; padding-block: 18px; }
.cred-item { display: inline-flex; align-items: center; gap: 9px; padding-inline: clamp(14px, 2.4vw, 26px); font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.cred-item .ic { width: 18px; height: 18px; color: var(--teal-600); }
.cred-item .stars { font-size: .8rem; }
@media (min-width: 760px) { .cred-item + .cred-item { border-inline-start: 1px solid var(--line); } }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative; isolation: isolate; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px 26px; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transform-origin: inline-start; transition: transform .4s var(--ease); z-index: 1; }
/* cursor-following spotlight (set --mx/--my from JS; gated on hover+fine pointer) */
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity .4s var(--ease); background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(250, 100, 0, .14), transparent 60%); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-photo { margin: -28px -24px 20px; aspect-ratio: 16 / 10; overflow: hidden; background: var(--blue-900); }
.service-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.service-card:hover .service-photo img { transform: scale(1.05); }
.service-ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--bg-tint); color: var(--blue); margin-bottom: 18px; transition: transform .4s var(--ease), background .4s, color .4s; }
.service-ic svg { width: 28px; height: 28px; }
.service-card:hover .service-ic { background: var(--grad-brand); color: #fff; transform: translateY(-2px) rotate(-4deg); }
.service-card h3 { font-size: 1.24rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: .96rem; }
.price { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-family: var(--font-display); font-weight: 700; color: var(--teal-600); font-size: 1rem; }
.service-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); width: 100%; font-family: var(--font-display); font-weight: 700; color: var(--teal-600); font-size: 1rem; text-decoration: none; transition: color .3s var(--ease); }
.service-cta::after { content: "→"; transition: transform .3s var(--ease); }
[dir="rtl"] .service-cta::after { content: "←"; }
.service-card:hover .service-cta { color: var(--orange); }
.service-card:hover .service-cta::after { transform: translateX(4px); }
[dir="rtl"] .service-card:hover .service-cta::after { transform: translateX(-4px); }
.perk { display: flex; align-items: center; gap: 22px; margin-top: 26px; padding: 24px 30px; border-radius: var(--r-lg); background: linear-gradient(120deg, rgba(250,100,0,.08), rgba(20,40,70,.06)); border: 1px solid var(--line); }
.perk-ic { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 16px; background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-teal); }
.perk-ic svg { width: 28px; height: 28px; }
.perk-copy h3 { font-size: 1.2rem; margin-bottom: 4px; }
.perk-copy p { color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 560px) { .perk { flex-direction: column; text-align: center; } }

/* service-card feature bullets */
.service-feats { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.service-feats li { position: relative; padding-inline-start: 22px; font-size: .88rem; line-height: 1.4; color: var(--ink-soft); }
.service-feats li::before { content: ""; position: absolute; inset-inline-start: 0; top: .35em; width: 11px; height: 11px; border-radius: 50%; background: rgba(250,100,0,.16); box-shadow: inset 0 0 0 2.5px #fff, 0 0 0 1px rgba(250,100,0,.35); }

/* ---------- What's included ---------- */
.included { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.incl-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; margin-top: clamp(28px, 4vw, 44px); }
.incl-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px 24px; box-shadow: var(--shadow-sm); }
.incl-col--alt { background: var(--bg-soft); }
.incl-col-title { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; margin-bottom: 18px; }
.incl-col-title svg { width: 22px; height: 22px; flex: none; color: var(--teal-600); }
.incl-col--alt .incl-col-title svg { color: var(--ink-soft); }
.incl-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.incl-list li { position: relative; padding-inline-start: 30px; color: var(--ink-soft); font-size: .97rem; line-height: 1.45; }
.incl-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: .04em; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(250,100,0,.12); color: var(--orange-600); font-size: .72rem; font-weight: 700; }
.incl-list--alt li::before { content: "+"; background: rgba(20,40,70,.07); color: var(--ink-soft); font-size: .92rem; }
.incl-note { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: start; margin: clamp(22px, 3vw, 30px) auto 0; padding: 16px 24px; max-width: 760px; border-radius: var(--r); background: var(--bg-tint); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: .98rem; line-height: 1.4; }
.incl-note svg { width: 24px; height: 24px; flex: none; color: var(--orange); }

/* about language line */
.about-langs { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 12px 18px; border-radius: var(--pill); background: var(--bg-tint); font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--ink); }
.about-langs svg { width: 20px; height: 20px; flex: none; color: var(--orange); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.why-item { text-align: start; }
.why-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: var(--teal-600); background: rgba(250,100,0,.10); margin-bottom: 16px; transition: transform .4s var(--ease); }
.why-ic svg { width: 26px; height: 26px; }
.why-item:hover .why-ic { transform: translateY(-4px) scale(1.06); }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-copy .section-sub { max-width: 42em; }
.about-meta { margin-top: 20px; font-size: .9rem; color: var(--muted); font-family: var(--font-display); font-weight: 600; }
.about-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--blue-900); }
.about-media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.about-media:hover img { transform: scale(1.04); }
@media (max-width: 760px) { .about-inner { grid-template-columns: 1fr; } }

/* ---------- Lifestyle image band ---------- */
.lifestyle-band { position: relative; height: clamp(220px, 28vw, 360px); overflow: hidden; }
.lifestyle-band img { width: 100%; height: 100%; object-fit: cover; display: block; animation: kenburns 24s ease-in-out infinite alternate; }
.lifestyle-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,40,70,.12), rgba(20,40,70,.34)); }

/* ---------- Service area ---------- */
.area-chips { list-style: none; padding: 0; margin: 8px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 760px; }
.area-chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--pill); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-family: var(--font-display); font-weight: 600; color: var(--ink); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.area-chip svg { width: 18px; height: 18px; color: var(--orange); flex: none; transition: transform .3s var(--ease); }
.area-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; color: var(--orange-600); }
.area-chip:hover svg { transform: translateY(-2px) scale(1.1); }
.why-item h3 { font-size: 1.12rem; margin-bottom: 7px; }
.why-item p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- RUT band ---------- */
.rut-band { background: var(--grad-deep); position: relative; overflow: clip; color: #fff; }
.rut-band::before { content: ""; position: absolute; inset: 0; opacity: .55; background:
   radial-gradient(40% 60% at 85% 20%, rgba(250,100,0,.30), transparent 60%),
   radial-gradient(40% 60% at 10% 90%, rgba(32,53,92,.7), transparent 60%); }
.rut-inner { position: relative; display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.rut-body { color: #D6DEEC; font-size: 1.12rem; margin-top: 16px; max-width: 40em; }
.rut-note { margin-top: 16px; font-size: .92rem; color: #AEBCD4; }
.rut-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; max-width: 40em; }
.rut-points li { display: flex; align-items: flex-start; gap: 12px; color: #E6ECF6; font-size: 1.02rem; line-height: 1.45; }
.rut-points svg { width: 22px; height: 22px; flex: none; color: var(--orange); margin-top: 1px; }
.rut-stat { justify-self: center; text-align: center; }
.rut-stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 12vw, 9rem); line-height: .9; background: linear-gradient(180deg,#fff,#FFC68A); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.rut-stat-num small { font-size: .4em; vertical-align: super; -webkit-text-fill-color: #FFC68A; }
.rut-stat-label { font-family: var(--font-display); font-weight: 700; letter-spacing: .3em; color: #FFC68A; font-size: 1rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps::before { content: ""; position: absolute; inset-block-start: 28px; inset-inline: 12% 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px); z-index: 0; }
/* solid progress line that draws across the steps when scrolled into view */
.steps::after { content: ""; position: absolute; inset-block-start: 28px; inset-inline: 12% 12%; height: 2px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left center; transition: transform 1s var(--ease); z-index: 0; }
[dir="rtl"] .steps::after { transform-origin: right center; }
.steps.drawn::after { transform: scaleX(1); }
.step { position: relative; padding-top: 8px; }
.step-num { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 18px; box-shadow: 0 8px 20px rgba(250,100,0,.16); transition: transform .4s var(--ease), background .4s, color .4s; }
.step:hover .step-num { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-3px) scale(1.05); }
.step h3 { font-size: 1.2rem; margin-bottom: 7px; }
.step p { color: var(--ink-soft); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card blockquote { font-size: 1.06rem; color: var(--ink); margin: 14px 0 20px; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); font-size: .94rem; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }

/* ---------- FAQ ---------- */
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item.open { border-color: color-mix(in srgb, var(--blue) 32%, var(--line)); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 19px 22px; background: none; border: 0; text-align: start; font-family: var(--font-display); font-weight: 600; font-size: 1.07rem; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-ic { position: relative; flex: none; width: 22px; height: 22px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; top: 50%; inset-inline-start: 50%; width: 13px; height: 2px; background: var(--teal-600); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .25s; }
.faq-ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-ic::after { transform: translate(-50%,-50%) rotate(0); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.faq-a > p { overflow: hidden; margin: 0; padding: 0 22px; color: var(--ink-soft); transition: padding .32s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 20px; }

/* ---------- Quote / contact ---------- */
.quote-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.quote-intro { position: sticky; top: calc(var(--header-h) + 24px); }
.quote-or { margin-top: 28px; color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }
.quote-contacts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg-soft); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 12px 14px; width: 100%; transition: border-color .2s, box-shadow .25s, background .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(250,100,0,.14); }
.field input::placeholder, .field textarea::placeholder { color: #9aa9ba; }
.checkbox { display: flex; align-items: center; gap: 10px; margin: 4px 0 20px; font-size: .94rem; color: var(--ink-soft); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--blue); }
.form-note { margin-top: 14px; padding: 12px 14px; border-radius: var(--r-sm); background: rgba(250,100,0,.10); border: 1px solid rgba(250,100,0,.3); color: var(--teal-600); font-weight: 600; font-size: .92rem; text-align: center; }
.form-note.show { animation: popIn .4s var(--ease) both; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: #cdd9e6; padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 38px; }
.brand--footer .brand-text { color: #9fb4c9; }
.brand--footer .brand-text strong { color: #fff; }
.footer-logo { height: 120px; width: auto; display: block; background: #fff; padding: 14px 18px; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.footer-tagline { margin-top: 16px; color: #9fb4c9; max-width: 26em; font-size: .96rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #cdd9e6; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-area { flex-flow: row wrap; gap: 8px 16px !important; }
.footer-area li { color: #9fb4c9; font-size: .92rem; }
.footer-hours { color: #9fb4c9; font-size: .9rem; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .84rem; color: #8aa0b6; }
.footer-demo { color: var(--teal); font-weight: 600; }

/* ===== Social links (SoMe) ===== */
.social-links { display: inline-flex; align-items: center; gap: 8px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--pill);
  transition: transform .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.social-links svg { width: 18px; height: 18px; }
.social-links--header a, .social-links--mobile a {
  color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line);
}
.social-links--header a:hover, .social-links--mobile a:hover {
  color: #fff; background: var(--teal); border-color: var(--teal); transform: translateY(-2px);
}
.social-links--mobile { margin-top: 14px; align-self: flex-start; }
.social-links--footer { margin-top: 20px; }
.social-links--footer a { color: #cdd9e6; background: rgba(255,255,255,.07); }
.social-links--footer a:hover { color: #fff; background: var(--teal); transform: translateY(-2px); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: pulseRing 2.6s ease-out infinite; transition: transform .3s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08) rotate(4deg); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ---------- Mobile action bar ---------- */
.mobile-cta { display: none; }
.mcta { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 50px; padding: 0 14px; border-radius: 13px; font-family: var(--font-display); font-weight: 700; font-size: .98rem; transition: transform .2s var(--ease); }
.mcta:active { transform: scale(.97); }
.mcta svg { width: 21px; height: 21px; }
.mcta--call, .mcta--wa { width: 50px; padding: 0; }
.mcta--call { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }
.mcta--wa { background: rgba(37,211,102,.16); color: #0f8a45; }
.mcta--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
@media (max-width: 620px) {
  .mobile-cta { display: grid; grid-template-columns: auto auto 1fr; gap: 8px; position: fixed; inset-inline: 10px; inset-block-end: 10px; z-index: 96; padding: 8px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px) saturate(1.2); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
  .whatsapp-fab { display: none; }
  body { padding-bottom: 80px; }
}

/* ---------- Reveal + keyframes ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
/* hero pieces animate on load instead of via observer */
.hero-copy.reveal, .hero-visual.reveal { opacity: 1; transform: none; transition: none; }
.hero-copy > * { animation: fadeUp .8s var(--ease) both; }
.hero-copy .eyebrow { animation-delay: .05s; }
.hero-title { animation-delay: .16s; }
.hero-sub { animation-delay: .28s; }
.hero-cta { animation-delay: .40s; }
.trust-row { animation-delay: .52s; }
.hero-visual.reveal { animation: fadeUp 1s var(--ease) .3s both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14); } }
@keyframes pulseRing { 0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }
@keyframes popIn { from { opacity: 0; transform: scale(.92) translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Language crossfade ---------- */
.lang-fade [data-i18n], .lang-fade [data-i18n-ph] { transition: opacity .18s ease; }
.lang-swapping [data-i18n] { opacity: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .quote-inner { grid-template-columns: 1fr; }
  .quote-intro { position: static; }
  .rut-inner { grid-template-columns: 1fr; text-align: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  .lang-switcher:not(.lang-switcher--mobile) { display: none; }
  .social-links--header { display: none; }
  .review-grid, .steps { grid-template-columns: 1fr; }
  .steps::before, .steps::after { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .card-grid, .why-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge-rut { width: 92px; height: 92px; inset-inline-end: 6px; }
  .float-chip { inset-inline-start: 6px; }
}

@media (hover: none) { .whatsapp-fab { animation: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-photo img { animation: none; }
}
