/* ============================================================
   PHILLIPS ELECTRICAL & REFRIGERATION — Design System
   Brand colours sampled from the logo bolt (electric indigo).
   Display: Sora  ·  Body: Inter
   ============================================================ */

:root {
  /* Brand — electric indigo, sampled from the logo lightning bolt */
  --volt:        #3B44E8;
  --volt-bright: #4E57F5;
  --volt-deep:   #1E2694;
  --volt-ink:    #0E1240;

  /* Neutrals */
  --ink:      #0C1024;
  --slate:    #171B33;
  --charcoal: #22263F;
  --mist:     #F5F6FC;
  --cloud:    #FBFCFE;
  --line:     #E4E7F3;
  --line-2:   #D3D8EC;
  --text:     #2A2F45;
  --text-mid: #4A4F68;
  --text-dim: #6B7089;

  /* Spark accent — used very sparingly for "energy" */
  --spark:    #2FE0E6;

  /* Surfaces */
  --white: #FFFFFF;

  /* Effects */
  --shadow-sm:  0 2px 10px rgba(14, 18, 64, 0.05);
  --shadow-md:  0 14px 40px rgba(14, 18, 64, 0.10);
  --shadow-lg:  0 30px 70px rgba(14, 18, 64, 0.16);
  --shadow-volt: 0 14px 34px rgba(59, 68, 232, 0.32);

  --grad-volt: linear-gradient(135deg, var(--volt-bright) 0%, var(--volt) 45%, var(--volt-deep) 100%);
  --grad-hero: radial-gradient(120% 120% at 15% 0%, #2A32C8 0%, #1B2288 48%, #0E1240 100%);

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --nav-h: 76px;
  --maxw: 1240px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 820px) { .wrap { padding: 0 22px; } }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } .section-sm { padding: 48px 0; } }

.bg-mist  { background: var(--mist); }
.bg-cloud { background: var(--cloud); }
.bg-ink   { background: var(--ink); color: rgba(255,255,255,0.82); position: relative; overflow: hidden; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }

.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 900px) { .split, .split.wide-left { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--volt);
  margin-bottom: 18px;
}
.eyebrow .bolt { width: 14px; height: 14px; color: var(--volt); flex-shrink: 0; }
.bg-ink .eyebrow { color: #8E97FF; }

.h-xl { font-size: clamp(38px, 6vw, 74px); line-height: 1.02; letter-spacing: -0.035em; }
.h-lg { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.03em; }
.h-md { font-size: clamp(22px, 2.5vw, 30px); }
.lede { font-size: clamp(16.5px, 1.4vw, 19px); line-height: 1.7; color: var(--text-mid); }
.bg-ink .lede { color: rgba(255,255,255,0.78); }
.measure { max-width: 620px; }
.center { text-align: center; }
.center .eyebrow, .center-block { margin-left: auto; margin-right: auto; }

.volt-text { color: var(--volt); }
strong { color: var(--ink); font-weight: 700; }
.bg-ink strong { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.005em;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn-volt { background: var(--grad-volt); color: #fff; box-shadow: var(--shadow-volt); }
.btn-volt:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(59,68,232,0.42); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-line { background: #fff; color: var(--volt-deep); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--volt-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--volt-deep);
  background: #EDEFFE; border: 1px solid #D9DDFB;
  padding: 7px 14px; border-radius: 999px;
}
.chip svg { width: 14px; height: 14px; color: var(--volt); }
.bg-ink .chip { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.bg-ink .chip svg { color: #8E97FF; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #C7CDF0; }
.card .card-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-volt); color: #fff; margin-bottom: 20px;
  box-shadow: var(--shadow-volt);
}
.card .card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-mid); }
.card .card-tag {
  display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600;
  color: var(--volt); font-family: 'Sora', sans-serif;
}

/* ---------- Numbered / process ---------- */
.step { position: relative; padding-left: 62px; }
.step .step-n {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-volt); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px;
  box-shadow: var(--shadow-volt);
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--text-mid); }

/* ---------- Stats ---------- */
.stat .num {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(34px, 4vw, 48px); line-height: 1;
  background: var(--grad-volt); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; letter-spacing: -0.03em;
}
.bg-ink .stat .num {
  background: linear-gradient(135deg, #A7AEFF, #6E78FF);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lab { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.bg-ink .stat .lab { color: rgba(255,255,255,0.62); }

/* ---------- Compliance banner ---------- */
.compliance {
  background: var(--grad-volt); color: #fff; border-radius: var(--radius-lg);
  padding: 40px 44px; display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center; box-shadow: var(--shadow-volt); position: relative; overflow: hidden;
}
.compliance::after {
  content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  background: rgba(255,255,255,0.09); border-radius: 50%;
}
.compliance .seal {
  width: 78px; height: 78px; border-radius: 20px; background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.compliance .seal svg { width: 40px; height: 40px; color: #fff; }
.compliance h3 { color: #fff; font-size: 22px; margin-bottom: 6px; z-index: 1; position: relative; }
.compliance p { color: rgba(255,255,255,0.9); font-size: 15px; max-width: 640px; z-index: 1; position: relative; }
.compliance .btn { z-index: 1; }
@media (max-width: 860px) {
  .compliance { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
  .compliance .seal { margin: 0 auto; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: var(--maxw); z-index: 300;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.96); }
.nav-in { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px 10px 22px; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text); padding: 9px 14px;
  border-radius: 999px; transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--volt); background: #EDEFFE; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--ink); padding: 9px 14px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--volt); }
.nav-phone:hover { color: var(--volt); }
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; color: var(--ink); }

@media (max-width: 1040px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav { border-radius: 20px; }
  .nav-in { padding: 10px 12px 10px 18px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 290; background: rgba(12,16,36,0.98);
  backdrop-filter: blur(6px); display: flex; flex-direction: column;
  padding: 100px 28px 40px; transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 600; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a:active { color: #8E97FF; }
.mobile-menu .mm-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mm-close { position: fixed; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); border: none; display: flex; align-items: center; justify-content: center; }
.mm-close svg { width: 24px; height: 24px; color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); overflow: hidden; padding: calc(var(--nav-h) + 70px) 0 90px; }
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(120% 100% at 30% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 100% at 30% 0%, #000 20%, transparent 75%);
}
.hero-glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow.a { background: rgba(78,87,245,0.5); top: -220px; right: -120px; }
.hero-glow.b { background: rgba(47,224,230,0.14); bottom: -260px; left: -120px; }
.hero-in { position: relative; z-index: 2; }
.hero .lede { color: rgba(255,255,255,0.82); }
.hero-trust { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-trust .t svg { width: 18px; height: 18px; color: var(--spark); flex-shrink: 0; }

/* animated bolt in hero */
.hero-bolt { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: min(40vw, 440px); z-index: 1; opacity: 0.95; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }
@media (max-width: 980px) { .hero-bolt { opacity: 0.12; right: -6%; } }

/* ---------- Page header (interior pages) ---------- */
.page-head { background: var(--grad-hero); position: relative; overflow: hidden; padding: calc(var(--nav-h) + 70px) 0 72px; }
.page-head .hero-glow.a { top: -260px; right: -140px; }
.page-head-in { position: relative; z-index: 2; max-width: 780px; }
.page-head h1 { color: #fff; }
.page-head .lede { color: rgba(255,255,255,0.82); }
.grad-accent {
  background: linear-gradient(120deg,#8E97FF,#2FE0E6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: 0.5; }

/* ---------- Logo bolt component (inline svg wrapper) ---------- */
.bolt-mark { display: inline-block; }

/* ---------- Feature list ---------- */
.flist { display: grid; gap: 14px; }
.flist li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--text-mid); }
.flist li .fi {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; margin-top: 2px;
  background: #EDEFFE; color: var(--volt); display: flex; align-items: center; justify-content: center;
}
.flist li .fi svg { width: 15px; height: 15px; }
.bg-ink .flist li { color: rgba(255,255,255,0.8); }
.bg-ink .flist li .fi { background: rgba(255,255,255,0.1); color: #8E97FF; }

/* ---------- Image frames ---------- */
.frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--grad-hero); padding: 26px; box-shadow: var(--shadow-lg);
}
.frame img { border-radius: var(--radius); position: relative; z-index: 2; }
.frame::before {
  content: ''; position: absolute; inset: 0; opacity: 0.6;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.frame-tag {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 3;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
}
.frame-tag .name { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--ink); font-size: 16px; }
.frame-tag .role { font-size: 13px; color: var(--text-dim); }

/* Clean photo frame (white bg headshots) */
.photo-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.photo-card .ph { background: var(--mist); }
.photo-card .ph img { width: 100%; }
.photo-card .meta { padding: 22px 24px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: #C7CDF0; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: #EDEFFE; color: var(--volt); display: flex; align-items: center; justify-content: center; transition: transform .3s, background .2s; }
.faq-q .ic svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--volt); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-mid); }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; height: 100%; }
.quote-card .stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card .q { font-size: 15.5px; color: var(--text); line-height: 1.7; }
.quote-card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.quote-card .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-volt); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; }
.quote-card .who .n { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.quote-card .who .r { font-size: 13px; color: var(--text-dim); }

/* ---------- Areas ---------- */
.area-tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; font-weight: 600; font-size: 14.5px; color: var(--text); display: inline-flex; align-items: center; gap: 9px; transition: transform .2s, border-color .2s, color .2s; }
.area-tag:hover { transform: translateY(-3px); border-color: var(--volt); color: var(--volt); }
.area-tag svg { width: 15px; height: 15px; color: var(--volt); }

/* ---------- Blog cards ---------- */
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s; height: 100%; display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #C7CDF0; }
.post .post-img { height: 190px; position: relative; overflow: hidden; }
.post .post-img .grad { position: absolute; inset: 0; }
.post .post-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post .post-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--volt); margin-bottom: 10px; }
.post h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.25; }
.post p { font-size: 14.5px; color: var(--text-mid); flex: 1; }
.post .post-meta { margin-top: 18px; font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.post .read { margin-top: 16px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--volt); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Article body ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article p { font-size: 17px; line-height: 1.8; color: var(--text); margin: 0 0 24px; }
.article h2 { font-size: 28px; margin: 46px 0 16px; }
.article h3 { font-size: 21px; margin: 34px 0 12px; }
.article ul.bullets { margin: 0 0 24px; display: grid; gap: 12px; }
.article ul.bullets li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.7; color: var(--text); }
.article ul.bullets li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 4px; background: var(--grad-volt); }
.article .pull {
  border-left: 4px solid var(--volt); background: var(--mist); border-radius: 0 14px 14px 0;
  padding: 22px 26px; margin: 32px 0; font-family: 'Sora', sans-serif; font-size: 20px; line-height: 1.45; color: var(--ink); font-weight: 500;
}
.article .note {
  background: #EDEFFE; border: 1px solid #D9DDFB; border-radius: 14px; padding: 22px 24px; margin: 30px 0;
  font-size: 15.5px; color: var(--volt-ink);
}
.article .note strong { color: var(--volt-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row .ii { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-volt); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-volt); }
.info-row .ii svg { width: 22px; height: 22px; }
.info-row .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.info-row .val { font-family: 'Sora', sans-serif; font-weight: 600; color: var(--ink); font-size: 16px; }
.info-row .val:hover { color: var(--volt); }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.input, select.input, textarea.input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 11px;
  font-family: inherit; font-size: 15px; background: #fff; color: var(--text); transition: border-color .15s, box-shadow .15s;
}
.input:focus { outline: none; border-color: var(--volt); box-shadow: 0 0 0 4px rgba(59,68,232,0.12); }
textarea.input { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--text-dim); margin-top: 6px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 400; background: rgba(12,16,36,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-card { background: #fff; border-radius: 22px; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: pop .25s ease; }
@keyframes pop { from { transform: scale(0.96) translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-head { padding: 24px 28px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-head h3 { font-size: 21px; }
.modal-head p { font-size: 14px; color: var(--text-dim); margin-top: 4px; }
.modal-x { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-x svg { width: 18px; height: 18px; }
.modal-body { padding: 26px 28px; }

/* ---------- Calculator ---------- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.calc-grid { display: grid; grid-template-columns: 1.3fr 1fr; }
@media (max-width: 820px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-inputs { padding: 34px; }
.calc-result { background: var(--grad-hero); color: #fff; padding: 34px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.calc-result .hero-glow.a { top: -160px; right: -120px; width: 340px; height: 340px; }
.calc-result .big { font-family: 'Sora', sans-serif; font-size: 60px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; position: relative; z-index: 2; }
.calc-result .cap { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); position: relative; z-index: 2; }
.calc-result .cnote { font-size: 14px; color: rgba(255,255,255,0.82); margin-top: 16px; position: relative; z-index: 2; line-height: 1.6; }
.rooms-list { margin-top: 18px; display: grid; gap: 8px; position: relative; z-index: 2; }
.room-row { background: rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.room-row button { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 72px 0 32px; position: relative; overflow: hidden; }
footer .hero-glow.a { top: -300px; left: 10%; width: 500px; height: 500px; opacity: 0.4; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; position: relative; z-index: 2; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-logo { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Sora', sans-serif; }
footer ul li { margin-bottom: 11px; }
footer ul li a { font-size: 14.5px; color: rgba(255,255,255,0.62); transition: color .15s; }
footer ul li a:hover { color: #fff; }
.foot-desc { font-size: 14.5px; line-height: 1.7; max-width: 320px; margin-bottom: 20px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.foot-social a:hover { background: var(--volt); }
.foot-social svg { width: 18px; height: 18px; color: #fff; }
.foot-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; position: relative; z-index: 2; }

/* ---------- Floating call button (mobile) ---------- */
.float-call { position: fixed; bottom: 20px; right: 20px; z-index: 250; display: none; box-shadow: var(--shadow-volt); }
@media (max-width: 720px) { .float-call { display: inline-flex; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-pill { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 26px; font-weight: 600; font-size: 15px; white-space: nowrap; color: var(--text-mid); box-shadow: var(--shadow-sm); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SCROLL REVEAL — tiles slide in from sides / below
   ============================================================ */
.reveal { opacity: 0; transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); will-change: opacity, transform; }
.reveal.from-left  { transform: translateX(-56px); }
.reveal.from-right { transform: translateX(56px); }
.reveal.from-up    { transform: translateY(46px); }
.reveal.from-down  { transform: translateY(-40px); }
.reveal.zoom       { transform: scale(0.94); }
.reveal.in { opacity: 1; transform: none; }
/* stagger via inline transition-delay set by JS */
