/* ============================================================
   GPAK — Premium Packaging Website
   Design system: Emerald + Cream · Sora / Manrope
   ============================================================ */

:root {
  /* Surfaces */
  --cream:        #F4EFE4;   /* page background */
  --cream-soft:   #FAF7EF;   /* alt section background */
  --paper:        #FFFFFF;   /* cards */
  /* Emerald scale */
  --emerald-900:  #0A3E29;
  --emerald-800:  #0C4A31;
  --emerald:      #0E5A3C;   /* primary */
  --emerald-600:  #14774F;
  --emerald-400:  #4FA37C;
  --emerald-200:  #B9D8C8;
  --emerald-50:   #E7F0EA;
  /* Ink + text */
  --ink:          #14201A;
  --muted:        #586860;
  --muted-soft:   #7C8a82;
  /* Lines + accents */
  --line:         rgba(14, 90, 60, .14);
  --line-soft:    rgba(14, 90, 60, .08);
  --sand:         #C8B488;   /* subtle premium warm accent (used sparingly) */
  /* Radii + shadow */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20,32,26,.04), 0 4px 18px rgba(20,32,26,.05);
  --shadow-md: 0 10px 30px rgba(14,90,60,.10), 0 2px 8px rgba(20,32,26,.05);
  --shadow-lg: 0 30px 60px rgba(10,62,41,.18);

  --bs-body-bg: var(--cream);
}

/* ---------- Base ---------- */
* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,.display,.font-display {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 700;
}
p { color: var(--muted); }
a { color: var(--emerald); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--emerald-800); }
img { max-width: 100%; }
::selection { background: var(--emerald); color: #fff; }

.container { max-width: 1240px; }

/* ---------- Section rhythm ---------- */
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.bg-cream     { background: var(--cream); }
.bg-cream-soft{ background: var(--cream-soft); }
.bg-paper     { background: var(--paper); }
.bg-emerald   { background: var(--emerald); }
.bg-emerald-deep { background: var(--emerald-900); }
.bg-tint      { background: var(--emerald-50); }

/* ---------- Eyebrow / kickers ---------- */
.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--emerald-600);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--emerald-400);
  display: inline-block;
}
.eyebrow.light { color: var(--emerald-200); }
.eyebrow.light::before { background: var(--emerald-400); }
.eyebrow.center { justify-content: center; }

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 44ch;
}
.section-lead.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn { font-family:"Sora",sans-serif; font-weight:600; letter-spacing:.01em; border-radius: var(--r-sm);
  padding: .85rem 1.7rem; transition: all .22s cubic-bezier(.2,.7,.3,1); border:1.5px solid transparent; }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn-emerald { background: var(--emerald); color:#fff; }
.btn-emerald:hover { background: var(--emerald-800); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-emerald { border-color: var(--emerald); color: var(--emerald); background: transparent; }
.btn-outline-emerald:hover { background: var(--emerald); color:#fff; transform: translateY(-2px); }
.btn-light-ghost { border-color: rgba(255,255,255,.45); color:#fff; background: transparent; }
.btn-light-ghost:hover { background:#fff; color: var(--emerald-900); transform: translateY(-2px); }
.btn-white { background:#fff; color: var(--emerald-900); }
.btn-white:hover { background: var(--cream-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-icon-after i { margin-left: .55rem; font-size:.85em; transition: transform .25s ease; }
.btn-icon-after:hover i { transform: translateX(4px); }

/* ---------- Media / image placeholders ---------- */
.media {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--emerald-50) 0 14px, #eef4ef 14px 28px);
  border-radius: var(--r-md);
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover; display:block;
  position: relative; z-index: 2;
  transition: transform .9s cubic-bezier(.2,.7,.3,1), opacity .4s ease;
}
.media-ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: "Sora", monospace; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--emerald-600); opacity:.7; text-align:center; padding:1rem;
}
.media img.is-broken { opacity: 0; }

/* ---------- Navbar ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(244,239,228,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-nav.scrolled { box-shadow: 0 6px 30px rgba(20,32,26,.07); background: rgba(247,243,235,.94); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding: .85rem 0; }
.brand { display:flex; align-items:center; gap:.6rem; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--emerald); color:#fff;
  display:grid; place-items:center; font-family:"Sora"; font-weight:800; font-size:1.15rem;
  box-shadow: 0 6px 16px rgba(14,90,60,.28);
}
.brand-text { font-family:"Sora"; font-weight:800; font-size:1.5rem; letter-spacing:.02em; color:var(--ink); line-height:1; }
.brand-text .dot { color: var(--emerald); }
.brand-sub { display:block; font-family:"Manrope"; font-weight:600; font-size:.58rem; letter-spacing:.34em; text-transform:uppercase; color:var(--muted-soft); margin-top:3px; }

.nav-links { display:flex; align-items:center; gap:.35rem; list-style:none; margin:0; padding:0; }
.nav-links a {
  font-family:"Sora"; font-weight:500; font-size:.96rem; color:var(--ink);
  padding:.55rem .95rem; border-radius: var(--r-sm); position:relative;
}
.nav-links a:hover { color: var(--emerald); background: var(--emerald-50); }
.nav-links a.active { color: var(--emerald); }
.nav-links a.active::after {
  content:""; position:absolute; left:.95rem; right:.95rem; bottom:.2rem; height:2px;
  background: var(--emerald); border-radius:2px;
}
.nav-cta { display:flex; align-items:center; gap:.9rem; }
.nav-phone { font-family:"Sora"; font-weight:600; font-size:.95rem; color:var(--ink); display:flex; align-items:center; gap:.5rem; }
.nav-phone i { color: var(--emerald); }
.nav-toggle { display:none; background:none; border:none; font-size:1.5rem; color:var(--ink); cursor:pointer; }

/* Mobile nav */
@media (max-width: 991px){
  .nav-links, .nav-phone { display:none; }
  .nav-toggle { display:block; }
  .mobile-drawer {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--cream-soft); z-index: 1050; transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.1,1); box-shadow: var(--shadow-lg);
    padding: 1.5rem; display:flex; flex-direction:column; gap:.3rem;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a { font-family:"Sora"; font-weight:500; font-size:1.15rem; padding:.85rem .6rem; border-bottom:1px solid var(--line-soft); color:var(--ink); }
  .mobile-drawer a.active { color: var(--emerald); }
  .drawer-overlay { position:fixed; inset:0; background:rgba(10,30,20,.42); z-index:1040; opacity:0; visibility:hidden; transition:.3s; }
  .drawer-overlay.open { opacity:1; visibility:visible; }
}

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero .carousel, .hero .carousel-inner, .hero .carousel-item { height: clamp(560px, 84vh, 820px); }
.hero-slide { position:relative; height:100%; }
.hero-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-bg::after {
  content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, rgba(8,40,27,.92) 0%, rgba(10,50,33,.78) 38%, rgba(10,50,33,.35) 78%, rgba(10,50,33,.18) 100%);
}
.hero-bg img { width:100%; height:100%; object-fit:cover; transform: scale(1.12); transition: transform 7s ease-out; z-index:0; }
.hero-bg .media-ph { z-index:0; }
.carousel-item.active .hero-bg img { transform: scale(1); }
.hero-content { position:relative; z-index:3; height:100%; display:flex; align-items:center; }
.hero-content .inner { max-width: 680px; }
.hero h1 { color:#fff; font-size: clamp(2.4rem, 5vw, 4.3rem); line-height:1.02; margin-bottom:1.4rem; }
.hero p.lead { color: rgba(255,255,255,.86); font-size: clamp(1.05rem,1.6vw,1.28rem); max-width: 52ch; margin-bottom:2rem; }
.hero .eyebrow { color: var(--emerald-200); }
.hero-actions { display:flex; flex-wrap:wrap; gap:1rem; }

/* hero text entrance — base state is VISIBLE; animate from hidden as enhancement */
.carousel-item .hero-content .inner > * { opacity:1; transform:none; }
@media (prefers-reduced-motion: no-preference){
  .carousel-item.active .hero-content .inner > * { animation: heroUp .9s cubic-bezier(.2,.7,.3,1) backwards; }
  .carousel-item.active .hero-content .inner > *:nth-child(1){ animation-delay:.15s; }
  .carousel-item.active .hero-content .inner > *:nth-child(2){ animation-delay:.30s; }
  .carousel-item.active .hero-content .inner > *:nth-child(3){ animation-delay:.45s; }
  .carousel-item.active .hero-content .inner > *:nth-child(4){ animation-delay:.60s; }
}
@keyframes heroUp { from { opacity:0; transform: translateY(26px); } to { opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce){
  .hero-bg img { transform:none; transition:none; }
}

/* carousel controls / indicators */
.hero .carousel-indicators { margin-bottom: 2.2rem; gap:.5rem; }
.hero .carousel-indicators [data-bs-target] {
  width: 34px; height: 4px; border-radius: 4px; border:0; background: rgba(255,255,255,.35); opacity:1;
}
.hero .carousel-indicators .active { background: var(--emerald-200); width:54px; }
.hero .carousel-control-prev, .hero .carousel-control-next { width: 6%; opacity:.7; }
.hero .carousel-control-prev:hover, .hero .carousel-control-next:hover { opacity:1; }

/* hero stat strip */
.hero-strip {
  position: relative; z-index: 5; margin-top: -64px;
}
.hero-strip-inner {
  background: var(--paper); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  display:grid; grid-template-columns: repeat(4, 1fr); overflow:hidden;
}
.hero-strip .cell { padding: 1.8rem 1.6rem; border-right:1px solid var(--line-soft); display:flex; flex-direction:column; gap:.25rem; }
.hero-strip .cell:last-child { border-right:0; }
.hero-strip .num { font-family:"Sora"; font-weight:800; font-size: clamp(1.7rem,2.4vw,2.3rem); color: var(--emerald); line-height:1; }
.hero-strip .lbl { font-size:.86rem; color: var(--muted); }
@media (max-width: 767px){ .hero-strip-inner { grid-template-columns: repeat(2,1fr); } .hero-strip .cell:nth-child(2){border-right:0;} }

/* ---------- Feature / why-choose ---------- */
.feature-card {
  background: var(--paper); border:1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 2rem 1.8rem; height:100%; transition: all .3s cubic-bezier(.2,.7,.3,1);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-ic {
  width: 56px; height:56px; border-radius: 14px; display:grid; place-items:center;
  background: var(--emerald-50); color: var(--emerald); font-size:1.35rem; margin-bottom:1.2rem;
  transition: all .3s ease;
}
.feature-card:hover .feature-ic { background: var(--emerald); color:#fff; transform: rotate(-6deg); }
.feature-card h3 { font-size:1.18rem; margin-bottom:.5rem; }
.feature-card p { font-size:.97rem; margin:0; }

/* ---------- Category cards ---------- */
.cat-card { position:relative; display:block; border-radius: var(--r-md); overflow:hidden; height: 340px; box-shadow: var(--shadow-sm); }
.cat-card .media { position:absolute; inset:0; border-radius:0; height:100%; }
.cat-card .media::after { content:""; position:absolute; inset:0; z-index:3; background: linear-gradient(180deg, rgba(10,40,27,0) 30%, rgba(8,38,26,.86) 100%); }
.cat-card:hover .media img { transform: scale(1.07); }
.cat-body { position:absolute; left:0; right:0; bottom:0; z-index:4; padding:1.6rem; color:#fff; }
.cat-body .count { font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color: var(--emerald-200); font-family:"Sora"; font-weight:600; }
.cat-body h3 { color:#fff; font-size:1.5rem; margin:.3rem 0 .2rem; }
.cat-body .go { display:inline-flex; align-items:center; gap:.5rem; font-family:"Sora"; font-weight:600; font-size:.92rem; color:#fff; opacity:.9; }
.cat-card:hover .cat-body .go i { transform: translateX(5px); }
.cat-body .go i { transition: transform .25s ease; }

/* ---------- Product cards ---------- */
.product-card {
  background: var(--paper); border:1px solid var(--line-soft); border-radius: var(--r-md);
  overflow:hidden; height:100%; display:flex; flex-direction:column; transition: all .3s cubic-bezier(.2,.7,.3,1);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color:transparent; }
.product-card .media { border-radius:0; aspect-ratio: 4/3; }
.product-card:hover .media img { transform: scale(1.06); }
.product-tag {
  position:absolute; top:.9rem; left:.9rem; z-index:5;
  background: rgba(255,255,255,.92); color: var(--emerald-800); backdrop-filter: blur(4px);
  font-family:"Sora"; font-weight:600; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase;
  padding:.35rem .7rem; border-radius:50px;
}
.product-body { padding: 1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.product-body h3 { font-size:1.12rem; margin-bottom:.3rem; }
.product-spec { font-size:.86rem; color:var(--muted-soft); margin-bottom:1rem; display:flex; gap:1rem; flex-wrap:wrap; }
.product-spec span { display:inline-flex; align-items:center; gap:.35rem; }
.product-spec i { color: var(--emerald-400); }
.product-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:1rem; border-top:1px solid var(--line-soft); }
.product-foot .quote-link { font-family:"Sora"; font-weight:600; font-size:.9rem; color:var(--emerald); display:inline-flex; align-items:center; gap:.45rem; }
.product-foot .quote-link i { transition: transform .25s; }
.product-foot .quote-link:hover i { transform: translateX(4px); }
.product-feats { display:flex; gap:.4rem; }
.feat-dot { width:30px;height:30px;border-radius:8px; background:var(--emerald-50); color:var(--emerald); display:grid;place-items:center; font-size:.75rem; }

/* ---------- Filter chips ---------- */
.filter-bar { display:flex; flex-wrap:wrap; gap:.6rem; }
.chip {
  font-family:"Sora"; font-weight:600; font-size:.9rem; padding:.6rem 1.25rem; border-radius:50px;
  border:1.5px solid var(--line); background:transparent; color:var(--muted); cursor:pointer; transition: all .2s ease;
}
.chip:hover { border-color: var(--emerald-400); color: var(--emerald); }
.chip.active { background: var(--emerald); border-color: var(--emerald); color:#fff; box-shadow: 0 6px 16px rgba(14,90,60,.22); }

/* ---------- Split / story ---------- */
.split-img { border-radius: var(--r-lg); overflow:hidden; height:100%; min-height: 420px; box-shadow: var(--shadow-md); }
.split-img .media { height:100%; border-radius:0; }
.value-card { background:var(--paper); border:1px solid var(--line-soft); border-radius:var(--r-md); padding:2rem 1.8rem; height:100%; }
.value-card .ic { color: var(--emerald); font-size:1.6rem; margin-bottom:1rem; }
.value-card h3 { font-size:1.3rem; margin-bottom:.6rem; }
.value-card p { margin:0; font-size:.98rem; }

/* check list */
.check-list { list-style:none; margin:1.5rem 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:.85rem 1.6rem; }
.check-list li { display:flex; gap:.7rem; align-items:flex-start; font-weight:500; color:var(--ink); font-size:.98rem; }
.check-list i { color: var(--emerald); margin-top:.28rem; flex:none; }
@media(max-width:575px){ .check-list { grid-template-columns:1fr; } }

/* ---------- Stats band ---------- */
.stat-band .stat { text-align:center; padding:1rem; }
.stat-band .num { font-family:"Sora"; font-weight:800; font-size: clamp(2.2rem,4vw,3.4rem); color:#fff; line-height:1; }
.stat-band .num .suf { color: var(--emerald-200); }
.stat-band .lbl { color: rgba(255,255,255,.72); font-size:.95rem; margin-top:.5rem; letter-spacing:.02em; }

/* ---------- Process steps ---------- */
.process-grid { display:grid; grid-template-columns: repeat(6,1fr); gap:1rem; counter-reset: step; }
.process-step { position:relative; background:var(--paper); border:1px solid var(--line-soft); border-radius:var(--r-md); padding:1.6rem 1.2rem; }
.process-step .pn { font-family:"Sora"; font-weight:800; font-size:1rem; color:var(--emerald); background:var(--emerald-50); width:42px;height:42px;border-radius:50%; display:grid;place-items:center; margin-bottom:1rem; }
.process-step h4 { font-size:1.02rem; margin-bottom:.35rem; }
.process-step p { font-size:.86rem; margin:0; }
.process-step .ic { position:absolute; top:1.5rem; right:1.3rem; color:var(--emerald-200); font-size:1.3rem; }
@media(max-width:991px){ .process-grid { grid-template-columns: repeat(3,1fr);} }
@media(max-width:575px){ .process-grid { grid-template-columns: repeat(2,1fr);} }

/* ---------- Certifications ---------- */
.cert-row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 1rem 2.4rem; }
.cert-badge { display:flex; align-items:center; gap:.8rem; padding:.9rem 1.4rem; border:1px solid var(--line); border-radius:var(--r-md); background:var(--paper); }
.cert-badge i { font-size:1.7rem; color: var(--emerald); }
.cert-badge .t { font-family:"Sora"; font-weight:700; font-size:.98rem; color:var(--ink); line-height:1.1; }
.cert-badge .s { font-size:.74rem; color:var(--muted-soft); letter-spacing:.04em; }

/* ---------- Testimonials ---------- */
.testi-card { background:var(--paper); border:1px solid var(--line-soft); border-radius:var(--r-md); padding:2.2rem; height:100%; display:flex; flex-direction:column; }
.testi-stars { color: var(--sand); letter-spacing:.15em; margin-bottom:1rem; }
.testi-quote { font-size:1.06rem; color:var(--ink); line-height:1.6; flex:1; }
.testi-quote::before { content:"\201C"; font-family:"Sora"; font-size:2.4rem; color:var(--emerald-200); display:block; line-height:.6; margin-bottom:.4rem; }
.testi-person { display:flex; align-items:center; gap:.9rem; margin-top:1.5rem; }
.testi-avatar { width:48px;height:48px;border-radius:50%; background:var(--emerald-50); color:var(--emerald); display:grid;place-items:center; font-family:"Sora"; font-weight:700; }
.testi-person .nm { font-family:"Sora"; font-weight:700; font-size:.98rem; color:var(--ink); }
.testi-person .rl { font-size:.84rem; color:var(--muted-soft); }

/* ---------- CTA band ---------- */
.cta-band { position:relative; overflow:hidden; border-radius: var(--r-lg); background: var(--emerald-900); padding: clamp(2.6rem,5vw,4.4rem); }
.cta-band::before { content:""; position:absolute; right:-80px; top:-80px; width:340px;height:340px; border-radius:50%; background: radial-gradient(circle, rgba(79,163,124,.35), transparent 68%); }
.cta-band h2 { color:#fff; font-size: clamp(1.8rem,3.2vw,2.7rem); }
.cta-band p { color: rgba(255,255,255,.82); }

/* ---------- Page header ---------- */
.page-head { position:relative; padding: clamp(3.5rem,7vw,6rem) 0 clamp(3rem,5vw,4.5rem); overflow:hidden; background: var(--emerald-900); }
.page-head::after { content:""; position:absolute; inset:0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px); }
.page-head .inner { position:relative; z-index:2; }
.page-head h1 { color:#fff; font-size: clamp(2.2rem,4.4vw,3.4rem); margin-bottom:.8rem; }
.page-head p { color: rgba(255,255,255,.8); max-width: 56ch; font-size:1.1rem; }
.breadcrumbz { display:flex; gap:.6rem; align-items:center; font-family:"Sora"; font-size:.86rem; color: rgba(255,255,255,.6); margin-bottom:1.4rem; }
.breadcrumbz a { color: var(--emerald-200); }
.breadcrumbz i { font-size:.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--emerald-900); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem,6vw,5rem); }
.site-footer h5 { color:#fff; font-family:"Sora"; font-size:1.02rem; letter-spacing:.04em; margin-bottom:1.3rem; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color:#fff; }
.footer-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.7rem; font-size:.96rem; }
.footer-brand .brand-text { color:#fff; }
.footer-brand p { color: rgba(255,255,255,.62); font-size:.96rem; }
.footer-contact { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.9rem; font-size:.95rem; }
.footer-contact li { display:flex; gap:.8rem; align-items:flex-start; }
.footer-contact i { color: var(--emerald-400); margin-top:.25rem; }
.footer-social { display:flex; gap:.7rem; margin-top:1.4rem; }
.footer-social a { width:40px;height:40px;border-radius:10px; background:rgba(255,255,255,.08); display:grid;place-items:center; color:#fff; transition:.25s; }
.footer-social a:hover { background: var(--emerald); transform: translateY(-3px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.6rem 0; font-size:.88rem; color: rgba(255,255,255,.55); }
.footer-newsletter { display:flex; gap:.5rem; margin-top:1rem; }
.footer-newsletter input { flex:1; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); color:#fff; border-radius:var(--r-sm); padding:.7rem .9rem; font-family:"Manrope"; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter button { background: var(--emerald); border:0; color:#fff; border-radius:var(--r-sm); padding:0 1rem; }

/* ---------- Floating buttons ---------- */
.floaties { position: fixed; right: 20px; bottom: 22px; z-index: 1080; display:flex; flex-direction:column; gap:.8rem; }
.floatie { width:56px;height:56px;border-radius:50%; display:grid;place-items:center; color:#fff; font-size:1.4rem; box-shadow: var(--shadow-md); transition: transform .25s ease; position:relative; }
.floatie:hover { transform: scale(1.08); color:#fff; }
.floatie.wa { background:#25D366; }
.floatie.call { background: var(--emerald); }
.floatie::after { content: attr(data-tip); position:absolute; right:68px; top:50%; transform:translateY(-50%); white-space:nowrap;
  background: var(--ink); color:#fff; font-size:.8rem; font-family:"Sora"; padding:.4rem .7rem; border-radius:6px; opacity:0; pointer-events:none; transition:.2s; }
.floatie:hover::after { opacity:1; }
.floatie .pulse { position:absolute; inset:0; border-radius:50%; animation: pulse 2.2s infinite; }
.floatie.wa .pulse { box-shadow:0 0 0 0 rgba(37,211,102,.5); }
.floatie.call .pulse { box-shadow:0 0 0 0 rgba(14,90,60,.5); }
@keyframes pulse { 70%{ box-shadow:0 0 0 16px rgba(0,0,0,0);} 100%{ box-shadow:0 0 0 0 rgba(0,0,0,0);} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity:0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s;} .reveal.d2{ transition-delay:.16s;} .reveal.d3{ transition-delay:.24s;} .reveal.d4{ transition-delay:.32s;}
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }

/* ---------- Modal ---------- */
.modal-content { border:0; border-radius: var(--r-lg); overflow:hidden; }
.quote-modal-head { background: var(--emerald-900); color:#fff; padding: 1.8rem 2rem; }
.quote-modal-head h4 { color:#fff; margin:0; font-size:1.4rem; }
.quote-modal-head p { color: rgba(255,255,255,.75); margin:.4rem 0 0; font-size:.95rem; }
.form-label { font-family:"Sora"; font-weight:600; font-size:.85rem; color:var(--ink); margin-bottom:.4rem; }
.form-control, .form-select { border-radius: var(--r-sm); border:1.5px solid var(--line); padding:.7rem .9rem; font-size:.96rem; }
.form-control:focus, .form-select:focus { border-color: var(--emerald-400); box-shadow: 0 0 0 .2rem rgba(14,90,60,.12); }

/* utility */
.text-emerald { color: var(--emerald) !important; }
.fw-800 { font-weight:800; }
.maxw-720 { max-width: 720px; }
.divider-line { height:1px; background: var(--line); border:0; }
