:root{
  --purple-950:#180B1C;
  --purple-900:#241030;
  --purple-800:#341943;
  --purple-700:#4A2158;
  --purple-600:#5F2B6E;
  --purple-500:#7C3F84;
  --lilac-100:#F3ECF6;
  --lilac-50:#FAF6FB;
  --cream:#FBF8F4;
  --gold-600:#A97C1F;
  --gold-500:#C7972B;
  --gold-300:#E3C878;
  --gold-100:#F2E4BE;
  --ink:#221426;
  --muted:#6B5C6E;
  --line:#E4D7EA;
  --shadow: 0 20px 50px -20px rgba(24,11,28,0.35);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Manrope',sans-serif;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;}
.serif{font-family:'Cormorant Garamond',serif;}
section{position:relative;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}
.eyebrow{
  font-size:12.5px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold-600);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:26px;height:1px;
  background:var(--gold-500);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--gold-300); }

h1,h2,h3,h4{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  line-height:1.08;
  color:var(--purple-950);
  letter-spacing:-0.01em;
}
h2{ font-size:clamp(30px,4.4vw,46px); }
h3{ font-size:clamp(21px,2.4vw,26px); font-weight:600; }
p{ line-height:1.7; color:var(--muted); font-size:16px; }
.lede{ font-size:clamp(17px,1.8vw,19px); max-width:640px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.01em;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-300),var(--gold-500));
  color:var(--purple-950);
  box-shadow:0 12px 30px -12px rgba(199,151,43,0.55);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 16px 34px -12px rgba(199,151,43,0.7); }
.btn-outline-light{
  border-color:rgba(255,255,255,0.35);
  color:#fff;
}
.btn-outline-light:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }
.btn-outline-dark{
  border-color:rgba(24,11,28,0.25);
  color:var(--purple-950);
}
.btn-outline-dark:hover{ background:rgba(24,11,28,0.06); border-color:var(--purple-800); }
.btn-purple{
  background:var(--purple-700);
  color:#fff;
}
.btn-purple:hover{ background:var(--purple-800); transform:translateY(-2px); }
.btn-whatsapp{
  background:#25D366;
  color:#0B3B22;
}
.btn-whatsapp:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -14px rgba(37,211,102,0.6); }
.btn-sm{ padding:11px 22px; font-size:13px; }

/* ===== HEADER ===== */
header{
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  background:rgba(24,11,28,0.7);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background .3s ease;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 28px;
  max-width:1180px;
  margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:11px; }
.brand svg{ width:42px; height:42px; flex-shrink:0; }
.brand-logo{
  width:46px; height:46px; flex-shrink:0;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 1px rgba(255,255,255,0.15);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text .name{
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
  font-size:19px;
  color:#fff;
  letter-spacing:0.02em;
}
.brand-text .tag{
  font-size:9.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-300);
  font-weight:600;
}
nav.primary{ display:flex; align-items:center; gap:32px; }
nav.primary a{
  font-size:14px; font-weight:600; color:rgba(255,255,255,0.82);
  position:relative; padding:4px 0;
  transition:color .2s ease;
}
nav.primary a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1.5px; background:var(--gold-500);
  transition:width .25s ease;
}
nav.primary a:hover, nav.primary a.active{ color:#fff; }
nav.primary a:hover::after, nav.primary a.active::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:14px; }

.hamburger{
  display:none;
  width:42px; height:42px;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:10px;
  background:transparent;
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.hamburger span{
  width:19px; height:2px; background:#fff; display:block; transition:all .25s ease;
}
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-drawer{
  position:fixed;
  top:0; right:0;
  width:min(78vw,320px);
  height:100vh;
  background:var(--purple-950);
  z-index:1100;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.65,0,.35,1);
  padding:26px 26px 34px;
  display:flex; flex-direction:column;
  overflow-y:auto;
}
.mobile-drawer.open{ transform:translateX(0); }
.drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:34px;}
.drawer-close{
  width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,0.2);
  background:transparent; color:#fff; font-size:18px; display:flex; align-items:center; justify-content:center;
}
.mobile-drawer nav{ display:flex; flex-direction:column; gap:6px; margin-bottom:28px; }
.mobile-drawer nav a{
  color:rgba(255,255,255,0.9); font-size:17px; font-weight:600;
  padding:13px 4px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.mobile-drawer nav a.active{ color:var(--gold-300); }
.mobile-drawer .drawer-ctas{ display:flex; flex-direction:column; gap:12px; margin-top:auto; }
.scrim{
  position:fixed; inset:0; background:rgba(10,5,12,0.55);
  z-index:1050; opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.scrim.open{ opacity:1; pointer-events:auto; }

/* ===== HERO (home) ===== */
.hero{
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(199,151,43,0.16), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(124,63,132,0.35), transparent 60%),
    linear-gradient(160deg, var(--purple-950) 0%, var(--purple-900) 45%, var(--purple-800) 100%);
  padding:168px 0 120px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent 75%);
  pointer-events:none;
}
.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:50px;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(38px,5.6vw,62px);
  color:#fff;
  margin-bottom:22px;
}
.hero-copy h1 em{
  font-style:italic;
  background:linear-gradient(100deg,var(--gold-300),var(--gold-500));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy p{
  color:rgba(255,255,255,0.78);
  font-size:18px;
  max-width:520px;
  margin-bottom:36px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  border-top:1px solid rgba(255,255,255,0.14);
  padding-top:26px;
  max-width:540px;
}
.hero-stats div{ padding-right:14px; }
.hero-stats .num{
  font-family:'Cormorant Garamond',serif;
  font-size:30px; font-weight:700; color:var(--gold-300);
  display:block;
}
.hero-stats .lbl{
  font-size:12px; color:rgba(255,255,255,0.6); letter-spacing:0.03em; margin-top:4px;
}

.hero-card{
  position:relative;
  background:linear-gradient(155deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.14);
  border-radius:22px;
  padding:34px 30px;
  backdrop-filter:blur(6px);
}
.hero-card .tag-row{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:26px; }
.hero-card .tag-row .name{ color:rgba(255,255,255,0.55); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; }
.hero-card .tag-row .badge{
  background:rgba(199,151,43,0.16); border:1px solid rgba(199,151,43,0.4);
  color:var(--gold-300); font-size:11px; font-weight:700; padding:5px 11px; border-radius:999px;
  letter-spacing:0.03em;
}
.hero-card .principal{ color:rgba(255,255,255,0.55); font-size:13px; margin-bottom:2px; }
.hero-card .amount{ font-family:'Cormorant Garamond',serif; font-size:38px; color:#fff; font-weight:700; margin-bottom:22px; }
.hero-card .divider{ height:1px; background:rgba(255,255,255,0.12); margin:20px 0; }
.hero-card .row{ display:flex; justify-content:space-between; font-size:13.5px; padding:9px 0; color:rgba(255,255,255,0.7); }
.hero-card .row b{ color:#fff; font-weight:700; }
.hero-card .row.total{ color:var(--gold-300); font-weight:700; font-size:15px; padding-top:14px; border-top:1px dashed rgba(255,255,255,0.2); margin-top:6px;}
.hero-card .caption{ margin-top:18px; font-size:12px; color:rgba(255,255,255,0.42); line-height:1.5; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero{
  position:relative;
  padding:170px 0 90px;
  background:linear-gradient(165deg,var(--purple-950),var(--purple-800));
  overflow:hidden;
}
.page-hero .bg-photo{
  position:absolute; inset:0; opacity:0.24;
  background-size:cover; background-position:center;
}
.page-hero .bg-fade{
  position:absolute; inset:0;
  background:linear-gradient(165deg,rgba(24,11,28,0.92),rgba(52,25,67,0.85));
}
.page-hero .content{ position:relative; z-index:2; max-width:680px; }
.page-hero h1{ color:#fff; font-size:clamp(34px,5vw,52px); margin-bottom:16px; }
.page-hero p{ color:rgba(255,255,255,0.75); font-size:17px; }
.page-hero .crumbs{ display:flex; gap:8px; font-size:12.5px; color:rgba(255,255,255,0.5); margin-bottom:18px; letter-spacing:0.02em; }
.page-hero .crumbs a{ color:rgba(255,255,255,0.75); }
.page-hero .crumbs a:hover{ color:var(--gold-300); }

/* ===== SECTION GENERIC ===== */
.section{ padding:100px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }
.bg-lilac{ background:var(--lilac-100); }
.bg-dark{
  background:linear-gradient(175deg,var(--purple-950),var(--purple-900));
  color:#fff;
}
.bg-dark h2, .bg-dark h3{ color:#fff; }
.bg-dark p{ color:rgba(255,255,255,0.68); }

/* Image treatments */
.photo-frame{
  border-radius:20px; overflow:hidden; box-shadow:var(--shadow);
  position:relative;
}
.photo-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo-frame .frame-tag{
  position:absolute; bottom:18px; left:18px;
  background:rgba(24,11,28,0.75); backdrop-filter:blur(6px);
  color:#fff; font-size:12px; font-weight:700; letter-spacing:0.04em;
  padding:8px 14px; border-radius:999px; border:1px solid rgba(255,255,255,0.15);
}

/* About strip */
.about-grid{
  display:grid;
  grid-template-columns:minmax(0,0.85fr) minmax(0,1.15fr);
  gap:64px;
  align-items:center;
}
.about-visual{ aspect-ratio:4/5; }
.about-values{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; margin-top:34px; }
.value-chip{
  border:1px solid var(--line); border-radius:14px; padding:18px 18px;
  background:#fff;
}
.value-chip .n{ font-family:'Cormorant Garamond',serif; color:var(--gold-600); font-weight:700; font-size:14px; margin-bottom:6px; display:block;}
.value-chip h4{ font-size:15.5px; margin-bottom:5px; color:var(--purple-900); font-family:'Manrope',sans-serif; font-weight:700; }
.value-chip p{ font-size:13.5px; margin:0; }

/* Pillars */
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.pillar-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  min-width:0;
}
.pillar-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--gold-500); }
.pillar-photo{ height:140px; overflow:hidden; }
.pillar-photo img{ width:100%; height:100%; object-fit:cover; }
.pillar-body{ padding:24px 22px 28px; }
.pillar-icon{
  width:46px; height:46px; border-radius:13px;
  background:linear-gradient(135deg,var(--purple-700),var(--purple-500));
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  margin-top:-46px;
  border:3px solid #fff;
}
.pillar-icon svg{ width:22px; height:22px; stroke:var(--gold-300); }
.pillar-card h3{ margin-bottom:8px; font-size:20px; }
.pillar-card p{ font-size:14px; }

/* Transportation split */
.transport-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:70px;
  align-items:start;
}
.transport-list{ display:flex; flex-direction:column; gap:26px; margin-top:30px; }
.transport-item{ display:flex; gap:18px; }
.transport-item .mark{
  width:38px; height:38px; border-radius:50%;
  background:rgba(199,151,43,0.15); border:1px solid rgba(199,151,43,0.4);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  color:var(--gold-300); font-family:'Cormorant Garamond',serif; font-weight:700; font-size:16px;
}
.transport-item h4{ font-family:'Manrope',sans-serif; font-weight:700; color:#fff; font-size:15.5px; margin-bottom:4px; }
.transport-item p{ font-size:14px; margin:0; }

.roi-card{
  background:linear-gradient(160deg,rgba(255,255,255,0.07),rgba(255,255,255,0.015));
  border:1px solid rgba(255,255,255,0.14);
  border-radius:22px;
  padding:36px 32px;
  position:sticky; top:110px;
}
.roi-head{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:24px; }
.roi-head .lbl{ font-size:11.5px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.5); font-weight:700; }
.roi-head .pct{ font-family:'Cormorant Garamond',serif; font-size:44px; font-weight:700; color:var(--gold-300); line-height:1; }
.roi-bars{ display:flex; align-items:flex-end; gap:8px; height:90px; margin:24px 0 30px; }
.roi-bars .bar{ flex:1; border-radius:6px 6px 0 0; background:linear-gradient(180deg,var(--gold-300),var(--gold-600)); opacity:0.35; }
.roi-bars .bar.active{ opacity:1; }
.roi-table .row{ display:flex; justify-content:space-between; font-size:14px; color:rgba(255,255,255,0.72); padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.09); }
.roi-table .row:last-child{ border-bottom:none; }
.roi-table .row b{ color:#fff; }
.roi-table .row.hi{ background:rgba(199,151,43,0.1); margin:0 -14px; padding:14px; border-radius:10px; border-bottom:none; }
.roi-table .row.hi b{ color:var(--gold-300); font-size:16px; }
.roi-note{ font-size:12px; color:rgba(255,255,255,0.42); margin-top:18px; line-height:1.6; }

/* Finance savings */
.savings-grid{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px;
}
.savings-card{
  border-radius:18px; overflow:hidden;
  background:#fff; border:1px solid var(--line);
  display:flex; flex-direction:column; min-width:0;
}
.savings-card.featured{ border-color:transparent; }
.savings-photo{ height:150px; overflow:hidden; }
.savings-photo img{ width:100%; height:100%; object-fit:cover; }
.savings-body{ padding:26px 24px 30px; display:flex; flex-direction:column; flex-grow:1; }
.savings-card.featured .savings-body{
  background:linear-gradient(160deg,var(--purple-700),var(--purple-900));
}
.savings-card.featured h3, .savings-card.featured p{ color:#fff; }
.savings-card.featured p{ color:rgba(255,255,255,0.75); }
.savings-card h3{ margin-bottom:10px; font-size:20px; }
.savings-card p{ font-size:14.5px; margin-bottom:16px; flex-grow:1; }
.savings-card .tick-list{ display:flex; flex-direction:column; gap:8px; }
.savings-card .tick-list li{ font-size:13.5px; color:var(--muted); display:flex; gap:8px; align-items:flex-start; }
.savings-card.featured .tick-list li{ color:rgba(255,255,255,0.78); }
.savings-card .tick-list li svg{ width:15px; height:15px; stroke:var(--gold-500); flex-shrink:0; margin-top:2px; }

/* Real estate / Hospitality */
.re-grid{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:26px;
}
.re-card{
  border-radius:20px; overflow:hidden;
  display:flex; flex-direction:column;
  background:var(--purple-950);
}
.re-photo{ height:210px; overflow:hidden; }
.re-photo img{ width:100%; height:100%; object-fit:cover; }
.re-body{ padding:30px 28px 34px; flex-grow:1; display:flex; flex-direction:column; }
.re-card h3{ color:#fff; margin-bottom:10px; }
.re-card p{ color:rgba(255,255,255,0.72); font-size:14.5px; margin-bottom:18px; flex-grow:1; }
.re-card a.link{ color:var(--gold-300); font-weight:700; font-size:13.5px; display:inline-flex; align-items:center; gap:6px; }

/* Vision/mission/values */
.vm-wrap{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:60px; margin-bottom:70px; }
.vm-box{ background:#fff; border:1px solid var(--line); border-radius:18px; padding:34px 30px; }
.vm-box .eyebrow{ margin-bottom:14px; }
.vm-box p{ font-family:'Cormorant Garamond',serif; font-size:22px; font-style:italic; color:var(--purple-900); line-height:1.5; }

.cv-grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.cv-card{ text-align:center; padding:30px 18px; }
.cv-card .cv-num{ font-family:'Cormorant Garamond',serif; font-size:15px; color:var(--gold-600); font-weight:700; margin-bottom:12px; letter-spacing:0.05em;}
.cv-card h4{ font-family:'Cormorant Garamond',serif; font-size:22px; margin-bottom:10px; color:var(--purple-950); font-weight:700; }
.cv-card p{ font-size:13.5px; }

/* Leadership */
.lead-wrap{
  display:grid; grid-template-columns:220px minmax(0,1fr); gap:44px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:40px;
}
.lead-avatar{
  width:180px; height:180px; border-radius:50%;
  background:linear-gradient(155deg,var(--purple-700),var(--purple-950));
  display:flex; align-items:center; justify-content:center;
  border:4px solid var(--gold-300);
  font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:700; color:var(--gold-300);
  margin:0 auto;
}
.lead-copy .role{ font-size:12.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-600); font-weight:700; margin-bottom:8px;}
.lead-copy h3{ font-size:28px; margin-bottom:14px; }
.lead-copy p{ font-family:'Cormorant Garamond',serif; font-size:19px; font-style:italic; color:var(--purple-900); line-height:1.55; }

/* Team strip */
.team-photo-wide{
  border-radius:22px; overflow:hidden; height:340px; box-shadow:var(--shadow);
}
.team-photo-wide img{ width:100%; height:100%; object-fit:cover; }

/* Contact */
.contact-grid{
  display:grid; grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr); gap:56px;
}
.contact-info-card{
  background:linear-gradient(165deg,var(--purple-950),var(--purple-800));
  border-radius:22px; padding:40px 34px; color:#fff;
}
.contact-info-card h3{ color:#fff; margin-bottom:26px; }
.contact-row{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
.contact-row:last-of-type{ border-bottom:none; }
.contact-row .ic{
  width:40px; height:40px; border-radius:11px; background:rgba(199,151,43,0.15);
  border:1px solid rgba(199,151,43,0.35); flex-shrink:0; display:flex; align-items:center; justify-content:center;
}
.contact-row .ic svg{ width:18px; height:18px; stroke:var(--gold-300); }
.contact-row .lbl{ font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:rgba(255,255,255,0.5); margin-bottom:3px; }
.contact-row .val{ font-size:15px; font-weight:600; color:#fff; }
.contact-info-card .wa-cta{ margin-top:28px; width:100%; }
.contact-info-card .map-link{ margin-top:12px; width:100%; }

.contact-form{
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:38px 34px;
}
.form-row{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-bottom:16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:12.5px; font-weight:700; color:var(--purple-900); }
.field input, .field select, .field textarea{
  border:1px solid var(--line); border-radius:11px; padding:13px 15px; font-size:14.5px; font-family:inherit;
  background:var(--lilac-50); color:var(--ink); resize:none;
  transition:border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--purple-500); background:#fff; }
.contact-form button.submit{ width:100%; margin-top:8px; padding:16px; font-size:15px; }
.form-note{ font-size:12px; color:var(--muted); margin-top:12px; text-align:center; }

.map-embed{
  border-radius:22px; overflow:hidden; border:1px solid var(--line);
  height:340px; margin-top:24px; box-shadow:var(--shadow);
}
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }

/* Footer */
footer{ background:var(--purple-950); color:rgba(255,255,255,0.6); padding:64px 0 0; }
.footer-grid{ display:grid; grid-template-columns:minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color:rgba(255,255,255,0.5); font-size:13.5px; max-width:280px; }
.footer-col h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:18px; font-family:'Manrope',sans-serif;}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,0.55); transition:color .2s ease; }
.footer-col a:hover{ color:var(--gold-300); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12.5px; flex-wrap:wrap; gap:12px;}
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; }
.footer-social a svg{ width:16px; height:16px; stroke:rgba(255,255,255,0.7); }
.footer-powered{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:16px 0; text-align:center; font-size:12px; color:rgba(255,255,255,0.4);
}
.footer-powered a{ color:rgba(227,200,120,0.75); font-weight:700; transition:color .2s ease; }
.footer-powered a:hover{ color:var(--gold-300); }

/* Floating WhatsApp */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:900;
  display:flex; align-items:center; gap:0;
}
.wa-float .wa-btn{
  width:60px; height:60px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 28px -8px rgba(37,211,102,0.6);
  position:relative;
  animation:pulse 2.6s infinite;
}
.wa-float .wa-btn svg{ width:30px; height:30px; fill:#fff; }
.wa-float .wa-tip{
  position:absolute; right:72px; bottom:14px;
  background:#fff; color:var(--ink); padding:10px 16px; border-radius:12px;
  font-size:13px; font-weight:700; white-space:nowrap; box-shadow:var(--shadow);
  opacity:0; transform:translateX(8px); transition:all .25s ease; pointer-events:none;
}
.wa-float:hover .wa-tip{ opacity:1; transform:translateX(0); }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.5), 0 12px 28px -8px rgba(37,211,102,0.6); }
  70%{ box-shadow:0 0 0 14px rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,0.6); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0), 0 12px 28px -8px rgba(37,211,102,0.6); }
}

.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  .wa-float .wa-btn{ animation:none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .pillars-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .savings-grid{ grid-template-columns:repeat(1,minmax(0,1fr)); }
  .re-grid{ grid-template-columns:minmax(0,1fr); }
  .cv-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .about-grid{ grid-template-columns:minmax(0,1fr); }
  .about-visual{ aspect-ratio:16/9; }
  .lead-wrap{ grid-template-columns:minmax(0,1fr); text-align:center; }
}

@media (max-width:900px){
  nav.primary, .header-actions{ display:none; }
  .hamburger{ display:flex; }
  .hero-grid{ grid-template-columns:minmax(0,1fr); }
  .hero-card{ max-width:440px; }
  .transport-wrap{ grid-template-columns:minmax(0,1fr); gap:44px; }
  .roi-card{ position:static; }
  .contact-grid{ grid-template-columns:minmax(0,1fr); }
  .footer-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); gap:34px; }
}

@media (max-width:640px){
  .container{ padding:0 20px; }
  .section{ padding:72px 0; }
  .hero{ padding:140px 0 80px; }
  .page-hero{ padding:130px 0 60px; }
  .hero-stats{ grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
  .hero-stats .num{ font-size:22px; }
  .pillars-grid{ grid-template-columns:minmax(0,1fr); }
  .cv-grid{ grid-template-columns:minmax(0,1fr); }
  .form-row{ grid-template-columns:minmax(0,1fr); }
  .footer-grid{ grid-template-columns:minmax(0,1fr); gap:30px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .vm-wrap{ grid-template-columns:minmax(0,1fr); gap:24px; }
  .wa-float .wa-btn{ width:54px; height:54px; }
  .wa-float{ right:16px; bottom:16px; }
  .wa-float .wa-tip{ display:none; }
}

@media (max-width:400px){
  .brand-text .name{ font-size:16px; }
  h2{ font-size:28px; }
  .hero-copy h1{ font-size:32px; }
  .roi-head .pct{ font-size:34px; }
}
