/* =========================================================
   CASACLEAN — Design tokens
   ========================================================= */
:root{
  --navy-900:#0B2340;
  --navy-800:#123256;
  --navy-700:#1B4470;
  --sky-500:#3AA9DD;
  --sky-400:#5FC1EA;
  --sky-100:#E7F5FC;
  --green-500:#3FAE72;
  --green-400:#59C98C;
  --green-100:#E6F6ED;
  --white:#FFFFFF;
  --offwhite:#F5F9FB;
  --ink:#0B2340;
  --muted:#5A6B7E;
  --muted-light:#8C9BAC;
  --border:#E3EAF0;

  --font-head:'Plus Jakarta Sans', Arial, sans-serif;
  --font-body:'Inter', Arial, sans-serif;

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:26px;
  --radius-pill:999px;

  --shadow-sm:0 2px 10px rgba(11,35,64,0.06);
  --shadow-md:0 12px 32px rgba(11,35,64,0.10);
  --shadow-lg:0 24px 60px rgba(11,35,64,0.16);

  --ease:cubic-bezier(.22,.9,.32,1);
  --dur-fast:.25s;
  --dur-med:.5s;
  --dur-slow:.9s;

  --container-w:1220px;
  --header-h:84px;
}

/* =========================================================
   Reset
   ========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:var(--header-h); }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--font-head); color:var(--navy-900); line-height:1.15; margin:0; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:2000;
  background:var(--navy-900); color:#fff; padding:12px 18px; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

.container{ max-width:var(--container-w); margin:0 auto; padding:0 28px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border-radius:var(--radius-pill);
  font-weight:700; font-size:.98rem; letter-spacing:.2px;
  border:2px solid transparent; transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space:nowrap;
}
.btn--primary{ background:var(--green-500); color:#fff; box-shadow:0 10px 24px rgba(63,174,114,0.32); }
.btn--primary:hover{ background:var(--green-400); transform:translateY(-2px); box-shadow:0 14px 30px rgba(63,174,114,0.4); }
.btn--outline{ background:transparent; color:var(--navy-900); border-color:var(--border); }
.btn--outline:hover{ border-color:var(--navy-900); transform:translateY(-2px); }
.btn--ghost-light{ background:rgba(255,255,255,0.08); color:#fff; border-color:rgba(255,255,255,0.55); backdrop-filter:blur(6px); }
.btn--ghost-light:hover{ background:rgba(255,255,255,0.18); transform:translateY(-2px); }
.btn--lg{ padding:18px 34px; font-size:1.05rem; }
.btn--sm{ padding:11px 22px; font-size:.88rem; }
.btn--block{ width:100%; }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal{ --reveal-scale:1; opacity:0; transform:translateY(28px) scale(var(--reveal-scale)); transition:opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0) scale(var(--reveal-scale)); }
.feature-grid .reveal, .service-grid .reveal, .package-grid .reveal{ transition-delay:calc(var(--stagger, 0) * 70ms); }

/* =========================================================
   Eyebrow / section heads
   ========================================================= */
.eyebrow{
  display:inline-block; font-family:var(--font-head); font-weight:700; font-size:.82rem;
  letter-spacing:1.6px; text-transform:uppercase; color:var(--green-500);
  padding:6px 16px; background:var(--green-100); border-radius:var(--radius-pill); margin-bottom:18px;
}
.eyebrow--light{ color:#fff; background:rgba(255,255,255,0.14); }

.section{ padding:110px 0; position:relative; }
.section--tint{ background:var(--offwhite); }
.section--dark{ background:linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700)); color:#fff; }
.section--dark h2{ color:#fff; }

.section-head{ max-width:720px; margin:0 auto 64px; text-align:center; }
.section-head h2{ font-size:clamp(1.8rem, 3vw, 2.6rem); margin-top:2px; }
.section-lead{ margin-top:18px; color:var(--muted); font-size:1.08rem; line-height:1.65; }
.section--dark .section-lead{ color:rgba(255,255,255,0.75); }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h);
  transition:background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease);
}
.header-inner{ height:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand{ display:flex; align-items:center; }
.brand-logo{ height:60px; width:auto; }
.brand-logo--dark{ display:none; }

.main-nav ul{ display:flex; gap:22px; }
.main-nav a{
  font-weight:600; font-size:.92rem; color:#fff; opacity:.92; white-space:nowrap;
  position:relative; padding:6px 0; transition:opacity var(--dur-fast);
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--green-400); transform:scaleX(0); transform-origin:left; transition:transform var(--dur-fast) var(--ease);
}
.main-nav a:hover{ opacity:1; }
.main-nav a:hover::after{ transform:scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:10px; }

.site-header.is-scrolled{ background:rgba(255,255,255,0.96); backdrop-filter:blur(10px); box-shadow:var(--shadow-sm); height:72px; }
.site-header.is-scrolled .main-nav a{ color:var(--navy-900); opacity:.85; }
.site-header.is-scrolled .brand-logo--light{ display:none; }
.site-header.is-scrolled .brand-logo--dark{ display:block; }
.site-header.is-scrolled .btn--ghost-light{ }

/* language switch */
.lang-switch{ position:relative; }
.lang-switch__toggle{
  display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.12); color:#fff;
  border:1px solid rgba(255,255,255,0.4); border-radius:var(--radius-pill); padding:9px 14px; font-weight:700; font-size:.85rem;
  transition:background var(--dur-fast);
}
.site-header.is-scrolled .lang-switch__toggle{ background:var(--offwhite); color:var(--navy-900); border-color:var(--border); }
.lang-switch__toggle:hover{ background:rgba(255,255,255,0.22); }
.site-header.is-scrolled .lang-switch__toggle:hover{ background:var(--sky-100); }

.lang-switch__menu{
  position:absolute; top:calc(100% + 10px); right:0; background:#fff; border-radius:var(--radius-sm);
  box-shadow:var(--shadow-lg); padding:8px; min-width:150px;
  opacity:0; visibility:hidden; transform:translateY(-6px); transition:all var(--dur-fast) var(--ease);
}
.lang-switch.is-open .lang-switch__menu{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-switch__menu button{
  display:block; width:100%; text-align:left; background:none; border:none; padding:10px 12px;
  border-radius:8px; color:var(--navy-900); font-weight:600; font-size:.92rem;
}
.lang-switch__menu button:hover{ background:var(--offwhite); }
.lang-switch__menu button.is-active{ color:var(--green-500); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; border:none; background:transparent;
}
.nav-toggle span{ height:2px; width:100%; background:#fff; border-radius:2px; transition:transform var(--dur-fast), opacity var(--dur-fast), background var(--dur-fast); }
.site-header.is-scrolled .nav-toggle span{ background:var(--navy-900); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ position:relative; min-height:100vh; display:flex; align-items:center; padding-top:var(--header-h); overflow:hidden; }
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; object-position:center; transform:scale(1.06); will-change:transform; }
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,35,64,0.78), rgba(11,35,64,0.72) 45%, rgba(11,35,64,0.92));
}
.hero__content{ position:relative; z-index:1; width:100%; min-width:0; max-width:820px; padding-top:70px; padding-bottom:70px; }
.hero__title{ font-size:clamp(2.4rem, 5vw, 4rem); color:#fff; margin:0 0 24px; letter-spacing:-0.5px; }
.hero__subtitle{ color:rgba(255,255,255,0.82); font-size:1.18rem; line-height:1.7; max-width:640px; margin-bottom:38px; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:64px; }

.hero__stats{ display:flex; gap:48px; flex-wrap:wrap; border-top:1px solid rgba(255,255,255,0.18); padding-top:34px; }
.hero-stat{ display:flex; flex-direction:column; color:#fff; }
.hero-stat__value, .hero-stat__suffix{ font-family:var(--font-head); font-size:2.1rem; font-weight:800; display:inline; }
.hero-stat__label{ margin-top:6px; font-size:.88rem; color:rgba(255,255,255,0.7); max-width:170px; }

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%); z-index:1;
  width:30px; height:48px; border:2px solid rgba(255,255,255,0.55); border-radius:20px;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:5px; height:9px; border-radius:3px; background:#fff;
  animation:scrollcue 1.8s infinite ease;
}
@keyframes scrollcue{ 0%{ opacity:1; top:8px;} 70%{opacity:0; top:26px;} 100%{opacity:0; top:8px;} }

/* =========================================================
   Feature grid (Why choose us)
   ========================================================= */
.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.feature-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:38px 32px; transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast);
}
.feature-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.feature-card__icon{
  width:52px; height:52px; border-radius:14px; margin-bottom:22px;
  background:var(--navy-900); position:relative;
}
.feature-card__icon::after{
  content:""; position:absolute; inset:13px; background:#fff;
  mask-repeat:no-repeat; mask-position:center; mask-size:contain;
  -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain;
}
.feature-card h3{ font-size:1.2rem; margin-bottom:10px; }
.feature-card p{ color:var(--muted); line-height:1.6; font-size:.98rem; }

/* =========================================================
   Process (Ablauf)
   ========================================================= */
.process-grid{ display:grid; grid-template-columns:repeat(5, 1fr); gap:26px; position:relative; }
.process-step{ text-align:center; padding:0 8px; }
.process-step__num{
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
  width:52px; height:52px; border-radius:50%; background:var(--navy-900); color:#fff;
  font-family:var(--font-head); font-weight:800; font-size:1.15rem;
  box-shadow:0 0 0 6px var(--offwhite), 0 8px 18px rgba(11,35,64,0.18);
}
.process-step h3{ font-size:1.05rem; margin-bottom:8px; }
.process-step p{ color:var(--muted); font-size:.9rem; line-height:1.55; }

/* =========================================================
   Services
   ========================================================= */
.service-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:26px; }
.service-card{
  background:#fff; border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm);
  transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.service-card__media{ aspect-ratio:4/3; overflow:hidden; }
.service-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.service-card:hover .service-card__media img{ transform:scale(1.07); }
.service-card__body{ padding:22px 22px 26px; }
.service-card__body h3{ font-size:1.05rem; margin-bottom:8px; }
.service-card__body p{ color:var(--muted); font-size:.92rem; line-height:1.55; }

/* =========================================================
   Packages
   ========================================================= */
.package-grid{ display:grid; grid-template-columns:repeat(5, minmax(0, 1fr)); gap:22px; align-items:stretch; }
.package-card{
  position:relative; min-width:0; background:#fff; border:1px solid var(--border); border-radius:var(--radius-md);
  padding:34px 26px 28px; display:flex; flex-direction:column;
  transition:transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.package-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.package-card--highlight{ --reveal-scale:1.045; background:var(--navy-900); border-color:var(--navy-900); color:#fff; box-shadow:var(--shadow-lg); }
.package-card--highlight:hover{ transform:translateY(-6px) scale(1.045); }
.package-card--highlight h3{ color:#fff; }
.package-card--highlight .package-card__tag{ color:rgba(255,255,255,0.65); }
.package-card--highlight .package-card__list li{ color:rgba(255,255,255,0.88); border-color:rgba(255,255,255,0.14); }
.package-card--highlight .package-card__list li::before{ color:var(--green-400); }

.package-card__badge{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--green-500); color:#fff; font-size:.72rem; font-weight:800; letter-spacing:.6px;
  text-transform:uppercase; padding:6px 16px; border-radius:var(--radius-pill); box-shadow:0 8px 18px rgba(63,174,114,0.4);
}
.package-card h3{ font-size:1.25rem; }
.package-card__tag{ color:var(--muted); font-size:.85rem; margin:6px 0 20px; }
.package-card__list{ flex:1; margin-bottom:26px; }
.package-card__list li{
  padding:10px 0; border-top:1px solid var(--border); font-size:.9rem; color:var(--muted); position:relative; padding-left:22px;
}
.package-card__list li:first-child{ border-top:none; }
.package-card__list li::before{ content:"✓"; position:absolute; left:0; color:var(--green-500); font-weight:800; }

.maintenance-note{
  margin-top:46px; display:flex; align-items:center; gap:18px; background:var(--sky-100);
  border-radius:var(--radius-md); padding:26px 30px; color:var(--navy-900);
}
.maintenance-note p{ font-size:.98rem; line-height:1.6; }
.maintenance-note__icon{ width:44px; height:44px; flex:none; border-radius:12px; background:var(--sky-500); position:relative; }
.maintenance-note__icon::after{ content:""; position:absolute; inset:11px; background:#fff; mask-repeat:no-repeat; mask-position:center; mask-size:contain; -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain; }

/* =========================================================
   Quality guarantee
   ========================================================= */
.quality-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:center; }
.quality-statement{ font-family:var(--font-head); font-size:1.7rem; font-weight:700; margin:26px 0 20px; line-height:1.4; }
.quality-desc{ color:rgba(255,255,255,0.75); font-size:1.05rem; line-height:1.7; }
.quality-checklist{ display:flex; flex-direction:column; gap:16px; }
.checklist-item{
  display:flex; align-items:center; gap:16px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14); border-radius:var(--radius-md); padding:20px 22px; font-size:1rem;
  transition:background var(--dur-fast);
}
.checklist-item:hover{ background:rgba(255,255,255,0.1); }
.checklist-item__check{
  flex:none; width:32px; height:32px; border-radius:50%; background:var(--green-500);
  display:flex; align-items:center; justify-content:center; font-weight:800; color:#fff;
}

/* =========================================================
   Real estate
   ========================================================= */
.realestate-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.realestate-media{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.realestate-pitch{ color:var(--muted); font-size:1.08rem; line-height:1.7; margin:22px 0 28px; }
.realestate-list{ display:flex; flex-direction:column; gap:16px; margin-bottom:34px; }
.realestate-list li{ display:flex; align-items:flex-start; gap:14px; font-size:.98rem; color:var(--ink); font-weight:500; }
.realestate-list [data-icon="check"]{
  flex:none; width:24px; height:24px; border-radius:50%; background:var(--green-100); position:relative; margin-top:1px;
}
.realestate-list [data-icon="check"]::after{
  content:""; position:absolute; inset:6px; background:var(--green-500);
  mask-repeat:no-repeat; mask-position:center; mask-size:contain; -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-slider{ position:relative; overflow:hidden; }
.testimonial-track{ display:flex; transition:transform var(--dur-slow) var(--ease); }
.testimonial-card{
  flex:0 0 100%; max-width:100%; margin:0; background:#fff; border-radius:var(--radius-lg);
  padding:48px; box-shadow:var(--shadow-md); text-align:center;
}
.testimonial-card__stars{ color:var(--green-500); font-size:1.2rem; letter-spacing:3px; margin-bottom:18px; }
.testimonial-card p{ font-size:1.25rem; line-height:1.6; color:var(--navy-900); font-weight:500; max-width:680px; margin:0 auto 30px; }
.testimonial-card footer{ display:flex; align-items:center; justify-content:center; gap:14px; }
.testimonial-card .avatar{
  width:46px; height:46px; border-radius:50%; background:var(--navy-900); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:var(--font-head); flex:none;
}
.testimonial-card footer span > strong{ display:block; font-size:.95rem; }
.testimonial-card footer span > em{ display:block; font-style:normal; font-size:.85rem; color:var(--muted); }

.testimonial-controls{ display:flex; align-items:center; justify-content:center; gap:22px; margin-top:34px; }
.testimonial-arrow{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--border); background:#fff; font-size:1.4rem;
  color:var(--navy-900); transition:background var(--dur-fast), transform var(--dur-fast);
}
.testimonial-arrow:hover{ background:var(--navy-900); color:#fff; transform:scale(1.06); }
.testimonial-dots{ display:flex; gap:9px; }
.testimonial-dots button{ width:9px; height:9px; border-radius:50%; background:var(--border); border:none; padding:0; transition:background var(--dur-fast), transform var(--dur-fast); }
.testimonial-dots button.is-active{ background:var(--green-500); transform:scale(1.3); }

.testimonial-disclaimer{ text-align:center; margin-top:26px; font-size:.85rem; color:var(--muted-light); font-style:italic; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; }
.contact-lead{ color:rgba(255,255,255,0.78); font-size:1.05rem; line-height:1.7; margin:22px 0 34px; }
.contact-list{ display:flex; flex-direction:column; gap:20px; margin-bottom:32px; }
.contact-list li{ display:flex; align-items:center; gap:16px; }
.contact-list a{ font-weight:700; font-size:1.05rem; }
.contact-list__label{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:1px; color:rgba(255,255,255,0.55); margin-bottom:4px; }
.contact-list__icon{ flex:none; width:46px; height:46px; border-radius:12px; background:rgba(255,255,255,0.1); position:relative; }
.contact-list__icon::after{ content:""; position:absolute; inset:13px; background:#fff; mask-repeat:no-repeat; mask-position:center; mask-size:contain; -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain; }

.social-row{ display:flex; gap:12px; }
.social-icon{ width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.1); position:relative; transition:background var(--dur-fast), transform var(--dur-fast); }
.social-icon:hover{ background:var(--green-500); transform:translateY(-3px); }
.social-icon::after{ content:""; position:absolute; inset:12px; background:#fff; mask-repeat:no-repeat; mask-position:center; mask-size:contain; -webkit-mask-repeat:no-repeat; -webkit-mask-position:center; -webkit-mask-size:contain; }

.contact-form{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.16); border-radius:var(--radius-lg); padding:38px; backdrop-filter:blur(6px); }
.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:8px; color:rgba(255,255,255,0.85); }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.08); color:#fff; font-size:.95rem; transition:border-color var(--dur-fast), background var(--dur-fast);
}
.form-row input::placeholder, .form-row textarea::placeholder{ color:rgba(255,255,255,0.45); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ outline:none; border-color:var(--green-400); background:rgba(255,255,255,0.12); }
.form-row select option{ color:#111; }
.form-note{ margin-top:14px; font-size:.8rem; color:rgba(255,255,255,0.55); text-align:center; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--navy-900); color:rgba(255,255,255,0.75); padding:70px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px; padding-bottom:50px; }
.footer-brand p{ margin-top:16px; font-size:.92rem; max-width:260px; line-height:1.6; }
.footer-col h4{ color:#fff; font-size:.95rem; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:.92rem; transition:color var(--dur-fast); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding:24px 28px; font-size:.82rem; text-align:center; }

/* =========================================================
   Back to top
   ========================================================= */
.back-to-top{
  position:fixed; bottom:26px; right:26px; width:48px; height:48px; border-radius:50%; border:none;
  background:var(--navy-900); color:#fff; font-size:1.2rem; box-shadow:var(--shadow-md); z-index:900;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--green-500); }

/* =========================================================
   Icon set (CSS mask, single-color)
   ========================================================= */
[data-icon="staff"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 11a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm8 0a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM1.5 20c.6-3.6 3.4-6 6.5-6s5.9 2.4 6.5 6M13 14.3c.7-.2 1.3-.3 2-.3 3.1 0 5.9 2.4 6.5 6' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 11a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm8 0a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM1.5 20c.6-3.6 3.4-6 6.5-6s5.9 2.4 6.5 6M13 14.3c.7-.2 1.3-.3 2-.3 3.1 0 5.9 2.4 6.5 6' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="process"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 6h11M4 6l3-3M4 6l3 3M20 12H9M20 12l-3-3M20 12l-3 3M4 18h11M4 18l3-3M4 18l3 3' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 6h11M4 6l3-3M4 6l3 3M20 12H9M20 12l-3-3M20 12l-3 3M4 18h11M4 18l3-3M4 18l3 3' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="checklist"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3h10a1 1 0 0 1 1 1v17l-6-3-6 3V4a1 1 0 0 1 1-1Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/><path d='M8.5 10.5 10.5 12.5 15 8' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3h10a1 1 0 0 1 1 1v17l-6-3-6 3V4a1 1 0 0 1 1-1Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/><path d='M8.5 10.5 10.5 12.5 15 8' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="flex"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 7h9M17 7h3M4 17h3M11 17h9' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/><circle cx='13' cy='7' r='2.4' fill='none' stroke='%23000' stroke-width='1.8'/><circle cx='8' cy='17' r='2.4' fill='none' stroke='%23000' stroke-width='1.8'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 7h9M17 7h3M4 17h3M11 17h9' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/><circle cx='13' cy='7' r='2.4' fill='none' stroke='%23000' stroke-width='1.8'/><circle cx='8' cy='17' r='2.4' fill='none' stroke='%23000' stroke-width='1.8'/></svg>"); }

[data-icon="clock"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M12 7v5l3.5 2' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='9' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M12 7v5l3.5 2' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="lock"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='5' y='11' width='14' height='9' rx='2' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='%23000' stroke-width='1.8'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='5' y='11' width='14' height='9' rx='2' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M8 11V7a4 4 0 0 1 8 0v4' fill='none' stroke='%23000' stroke-width='1.8'/></svg>"); }

[data-icon="calendar"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='5' width='16' height='16' rx='2' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M4 10h16M8 3v4M16 3v4' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='4' y='5' width='16' height='16' rx='2' fill='none' stroke='%23000' stroke-width='1.8'/><path d='M4 10h16M8 3v4M16 3v4' stroke='%23000' stroke-width='1.8' stroke-linecap='round'/></svg>"); }

[data-icon="phone"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3h3l1.5 4-2 1.5a12 12 0 0 0 7 7l1.5-2 4 1.5v3a2 2 0 0 1-2 2C11 20 4 13 4 5a2 2 0 0 1 2-2Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 3h3l1.5 4-2 1.5a12 12 0 0 0 7 7l1.5-2 4 1.5v3a2 2 0 0 1-2 2C11 20 4 13 4 5a2 2 0 0 1 2-2Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/></svg>"); }

[data-icon="mail"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='%23000' stroke-width='1.7'/><path d='M4 6.5 12 13l8-6.5' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='%23000' stroke-width='1.7'/><path d='M4 6.5 12 13l8-6.5' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="pin"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 21s7-6.5 7-12a7 7 0 1 0-14 0c0 5.5 7 12 7 12Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/><circle cx='12' cy='9' r='2.4' fill='none' stroke='%23000' stroke-width='1.7'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 21s7-6.5 7-12a7 7 0 1 0-14 0c0 5.5 7 12 7 12Z' fill='none' stroke='%23000' stroke-width='1.7' stroke-linejoin='round'/><circle cx='12' cy='9' r='2.4' fill='none' stroke='%23000' stroke-width='1.7'/></svg>"); }

[data-icon="check"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5 9.5 17 19 7' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5 9.5 17 19 7' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }

[data-icon="instagram"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='12' cy='12' r='4.2' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='17.3' cy='6.7' r='1.1' fill='%23000'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='5' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='12' cy='12' r='4.2' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='17.3' cy='6.7' r='1.1' fill='%23000'/></svg>"); }

[data-icon="facebook"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 9h3V5.5h-3c-2.2 0-4 1.8-4 4V12H8v3.5h2V21h3.5v-5.5H16l.5-3.5h-3V9.4c0-.3.2-.4.5-.4Z' fill='%23000'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14 9h3V5.5h-3c-2.2 0-4 1.8-4 4V12H8v3.5h2V21h3.5v-5.5H16l.5-3.5h-3V9.4c0-.3.2-.4.5-.4Z' fill='%23000'/></svg>"); }

[data-icon="linkedin"]::after{ mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='4' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='7.5' cy='8' r='1.3' fill='%23000'/><path d='M7.5 11v6.5M11 11v6.5M11 13.6c0-1.8 1.2-2.9 2.7-2.9 1.6 0 2.3 1 2.3 3.1v3.7' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/></svg>"); -webkit-mask-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><rect x='3' y='3' width='18' height='18' rx='4' fill='none' stroke='%23000' stroke-width='1.7'/><circle cx='7.5' cy='8' r='1.3' fill='%23000'/><path d='M7.5 11v6.5M11 11v6.5M11 13.6c0-1.8 1.2-2.9 2.7-2.9 1.6 0 2.3 1 2.3 3.1v3.7' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/></svg>"); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:1080px){
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(3,1fr); row-gap:38px; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .package-grid{ grid-template-columns:repeat(2,1fr); }
  .quality-grid, .realestate-grid, .contact-grid{ grid-template-columns:1fr; gap:46px; }
  .realestate-media{ order:-1; }
  .package-card--highlight{ transform:none; }
  .package-card--highlight:hover{ transform:translateY(-6px); }
}

@media (max-width:860px){
  .main-nav{
    position:fixed; top:var(--header-h); left:0; right:0; bottom:0; background:#fff;
    padding:30px 28px; transform:translateX(100%); transition:transform var(--dur-med) var(--ease);
    overflow-y:auto;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:6px; }
  .main-nav a{ color:var(--navy-900); display:block; padding:14px 4px; font-size:1.05rem; border-bottom:1px solid var(--border); }
  .main-nav a::after{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2){ opacity:0; }
  .nav-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .header-cta{ display:none; }
  .nav-overlay{ position:fixed; inset:0; background:rgba(11,35,64,0.4); z-index:900; opacity:0; visibility:hidden; transition:opacity var(--dur-fast); }
  .nav-overlay.is-visible{ opacity:1; visibility:visible; }
}

@media (max-width:640px){
  .section{ padding:76px 0; }
  .feature-grid, .service-grid, .package-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; row-gap:30px; }
  .hero__stats{ gap:30px; }
  .hero__actions{ flex-direction:column; align-items:stretch; }
  .hero__actions .btn{ width:100%; }
  .testimonial-card{ padding:32px 24px; }
  .contact-form{ padding:28px; }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
}

/* =========================================================
   Reduced motion — gate only continuous/intrusive motion
   ========================================================= */
@media (prefers-reduced-motion:reduce){
  .scroll-cue span{ animation:none; opacity:.7; top:16px; }
  .hero__bg img{ transform:none !important; }
  html{ scroll-behavior:auto; }
}
