:root{
  --ink:#0E1512;
  --forest:#0A3620;
  --green:#18A653;
  --green-deep:#0E7A3D;
  --green-light:#6FDC9A;
  --mint:#EAF8EF;
  --paper:#FCFCFA;
  --ash:#5B6B62;
  --line:#DCE8E0;
  --white:#FFFFFF;
  --radius:18px;
  --shadow: 0 20px 50px -25px rgba(10,54,32,0.35);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Space Grotesk', sans-serif;
  line-height:1.12;
  letter-spacing:-0.01em;
}
.mono{font-family:'IBM Plex Mono', monospace;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono', monospace;
  font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--green-deep); font-weight:500; margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:7px; height:7px; border-radius:50%; background:var(--green);
  box-shadow:0 0 0 4px rgba(24,166,83,0.15);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:100px; font-weight:600; font-size:15px;
  cursor:pointer; border:1px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family:'Inter',sans-serif;
}
.btn-primary{background:var(--ink); color:var(--white);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(14,21,18,0.55);}
.btn-line{background:transparent; color:var(--ink); border-color:var(--ink);}
.btn-line:hover{background:var(--ink); color:var(--white);}
.btn-on-dark{background:var(--green); color:var(--ink);}
.btn-on-dark:hover{transform:translateY(-2px); box-shadow:0 14px 26px -12px rgba(111,220,154,0.55); background:var(--green-light);}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(252,252,250,0.88); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:92px; gap:10px;
}
.brand{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.brand img{height:50px; width:auto;}
.navlinks{display:flex; align-items:center; gap:0; flex-wrap:nowrap;}
.navlinks > .nitem{position:relative;}
.navlinks a.top{
  display:flex; align-items:center; gap:4px; white-space:nowrap;
  padding:9px 11px; font-weight:500; font-size:13.5px; color:var(--ink);
  border-radius:8px;
}
.navlinks a.top:hover, .navlinks a.top.active{color:var(--green-deep);}
.caret{width:8px; height:8px; border-right:1.6px solid currentColor; border-bottom:1.6px solid currentColor; transform:rotate(45deg); margin-top:-3px; opacity:.6; flex-shrink:0;}
.dropdown{
  position:absolute; top:100%; left:0; min-width:250px;
  background:var(--white); border:1px solid var(--line); border-radius:14px;
  box-shadow:var(--shadow); padding:8px; opacity:0; visibility:hidden; transform:translateY(6px);
  transition:all .18s ease; z-index:150;
}
.nitem:hover .dropdown{opacity:1; visibility:visible; transform:translateY(0);}
.dropdown a{display:block; padding:10px 14px; border-radius:9px; font-size:14px; color:var(--ink); white-space:normal;}
.dropdown a:hover{background:var(--mint); color:var(--green-deep);}
.nav-cta{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.menu-toggle{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
.menu-toggle span{width:24px; height:2px; background:var(--ink); display:block;}
.mobile-menu{display:none; flex-direction:column; padding:10px 32px 20px; border-top:1px solid var(--line);}
.mobile-menu.open{display:flex;}
.mobile-menu a{padding:12px 0; font-size:15px; border-bottom:1px solid var(--line);}
@media(max-width:1180px){
  .navlinks a.top{padding:9px 8px; font-size:13px;}
}
@media(max-width:1060px){
  .navlinks{display:none;}
  .menu-toggle{display:flex;}
}

/* ---------- HERO (inner pages) ---------- */
.page-hero{position:relative; overflow:hidden; background:var(--forest); color:var(--white); padding:64px 0 72px;}
.page-hero h1{font-size:clamp(30px,4.4vw,48px); color:var(--white);}
.page-hero p.lede{font-size:17px; color:#CFE9DA; max-width:600px; margin-top:16px;}
.crumbs{font-family:'IBM Plex Mono',monospace; font-size:12px; color:#9FCDB1; margin-bottom:16px;}
.crumbs a{color:#9FCDB1;}
.crumbs a:hover{color:var(--green-light);}

/* ---------- HOME HERO ---------- */
.hero{position:relative; overflow:hidden; background:var(--forest); color:var(--white);}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
  padding:96px 0 84px;
}
@media(max-width:980px){.hero-grid{grid-template-columns:1fr; padding:56px 0;}}
.hero h1{font-size:clamp(34px,5vw,58px); font-weight:700; color:var(--white);}
.hero h1 span{color:var(--green-light);}
.hero p.lede{font-size:18px; color:#CFE9DA; max-width:520px; margin:20px 0 32px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
.hero-media{position:relative; border-radius:24px; overflow:hidden; box-shadow:0 30px 70px -30px rgba(0,0,0,0.6);}
.hero-media img{width:100%; height:420px; object-fit:cover;}
.hero-media::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,54,32,0) 40%, rgba(10,54,32,0.55) 100%); pointer-events:none;}

/* Hero slider */
.hero-copy-stack{position:relative; min-height:280px;}
.hero-slide{position:absolute; inset:0; opacity:0; visibility:hidden; transform:translateX(16px); transition:opacity .5s ease, transform .5s ease;}
.hero-slide.active{position:relative; opacity:1; visibility:visible; transform:translateX(0);}
.hero-slide-img{position:absolute !important; inset:0; opacity:0; transition:opacity .6s ease; z-index:0;}
.hero-slide-img.active{opacity:1; position:relative !important; z-index:1;}
.hero-dots{position:absolute; left:0; bottom:-8px; display:flex; gap:8px;}
@media(max-width:980px){.hero-dots{position:static; margin-top:20px;}}
.hero-dot{width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.35); border:none; cursor:pointer; padding:0; transition:all .25s ease;}
.hero-dot.active{background:var(--green-light); width:26px; border-radius:6px;}
.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.9); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background .2s ease;
}
.hero-arrow:hover{background:#fff;}
.hero-arrow.prev{left:14px;}
.hero-arrow.next{right:14px;}
.stat-chip{
  position:absolute; left:20px; bottom:20px; z-index:2; background:rgba(255,255,255,0.95);
  color:var(--ink); border-radius:14px; padding:14px 18px; display:flex; gap:16px;
}
.stat-chip div b{display:block; font-family:'Space Grotesk',sans-serif; font-size:20px;}
.stat-chip div span{font-size:11.5px; color:var(--ash); font-family:'IBM Plex Mono',monospace;}

.thread{width:100%; height:auto; display:block;}

/* ---------- TRUST / STATS BAR ---------- */
.stats-bar{background:var(--ink); color:var(--white); padding:34px 0;}
.stats-row{display:flex; flex-wrap:wrap; justify-content:space-between; gap:24px;}
.stat{flex:1; min-width:140px;}
.stat b{font-family:'Space Grotesk',sans-serif; font-size:30px; color:var(--green-light);}
.stat span{display:block; font-size:12.5px; color:#B9C4BE; font-family:'IBM Plex Mono',monospace; margin-top:4px;}

/* ---------- SECTION GENERIC ---------- */
section{padding:96px 0;}
section.tight{padding:72px 0;}
.section-head{max-width:680px; margin-bottom:56px;}
.section-head h2{font-size:clamp(28px,3.6vw,42px);}
.section-head p{color:var(--ash); font-size:16.5px; margin-top:14px;}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* Services overview cards */
.cards4{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media(max-width:980px){.cards4{grid-template-columns:repeat(2,1fr);}}
@media(max-width:620px){.cards4{grid-template-columns:1fr;}}
.cards3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:900px){.cards3{grid-template-columns:1fr;}}
.svc-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px 22px; transition:transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
.svc-icon{
  width:48px; height:48px; border-radius:14px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  box-shadow:0 10px 22px -10px rgba(24,166,83,0.6);
  transition:transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover .svc-icon{transform:scale(1.1) rotate(-4deg); box-shadow:0 14px 26px -10px rgba(24,166,83,0.75);}
.svc-icon svg path, .svc-icon svg rect, .svc-icon svg circle{stroke:#fff !important;}

/* Reusable gradient icon badge system */
.icon-badge{
  width:52px; height:52px; border-radius:16px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 10px 24px -10px rgba(24,166,83,0.6);
  transition:transform .25s ease;
}
.icon-badge:hover{transform:scale(1.08) rotate(-4deg);}
.icon-badge svg{width:24px; height:24px;}
.icon-badge svg path, .icon-badge svg rect, .icon-badge svg circle, .icon-badge svg polyline{stroke:#fff;}
.icon-badge.sm{width:38px; height:38px; border-radius:11px;}
.icon-badge.sm svg{width:18px; height:18px;}
.icon-badge.mint{background:var(--mint); box-shadow:none;}
.icon-badge.mint svg path, .icon-badge.mint svg rect, .icon-badge.mint svg circle{stroke:#0E7A3D;}
.icon-badge.outline{background:transparent; border:1.6px solid var(--green); box-shadow:none;}
.icon-badge.outline svg path, .icon-badge.outline svg rect, .icon-badge.outline svg circle{stroke:var(--green-deep);}

@keyframes iconFloat{0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);}}
@keyframes iconPulse{0%,100%{box-shadow:0 10px 24px -10px rgba(24,166,83,0.6);} 50%{box-shadow:0 10px 30px -6px rgba(24,166,83,0.9);}}
.icon-float{animation:iconFloat 3.2s ease-in-out infinite;}
.icon-pulse{animation:iconPulse 2.4s ease-in-out infinite;}

.check-icon{
  width:22px; height:22px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display:flex; align-items:center; justify-content:center; margin-top:1px;
}
.check-icon svg{width:12px; height:12px;}
.svc-card h3{font-size:18.5px; margin-bottom:8px;}
.svc-card p{font-size:14.5px; color:var(--ash);}
.svc-card a.more{display:inline-block; margin-top:14px; font-size:13.5px; font-weight:600; color:var(--green-deep);}

/* Alternating feature rows */
.feature-row{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
@media(max-width:900px){.feature-row{grid-template-columns:1fr;}}
.feature-row.rev{direction:rtl;}
.feature-row.rev > *{direction:ltr;}
.feature-media{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);}
.feature-media img{width:100%; height:340px; object-fit:cover;}
.tag-row{display:flex; gap:10px; flex-wrap:wrap; margin:22px 0 0;}
.tag{
  font-family:'IBM Plex Mono',monospace; font-size:12px; padding:7px 12px; border-radius:100px;
  background:var(--mint); color:var(--green-deep); border:1px solid #CDEBD8;
  display:inline-flex; align-items:center; gap:6px;
}
.tag svg{width:13px; height:13px; flex-shrink:0;}
.checklist{list-style:none; margin-top:20px; display:grid; gap:14px;}
.checklist li{display:flex; gap:12px; font-size:15px; color:var(--ink); align-items:flex-start;}
.checklist li::before{
  content:"✓"; color:#fff; font-weight:700; font-size:12px; flex-shrink:0;
  width:21px; height:21px; border-radius:50%; margin-top:2px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 14px -6px rgba(24,166,83,0.7);
}

/* Section tinted bg */
.tint{background:var(--mint);}
.dark{background:var(--forest); color:var(--white);}
.dark .section-head p{color:#CBE4D5;}
.dark .checklist li{color:var(--white);}

/* Digital PR process steps */
.process{display:grid; grid-template-columns:repeat(5,1fr); gap:16px;}
@media(max-width:980px){.process{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.process{grid-template-columns:1fr;}}
.step{background:var(--white); border:1px solid var(--line); border-radius:16px; padding:22px 18px; position:relative;}
.step .num{
  font-family:'Space Grotesk',sans-serif; font-size:14px; color:#fff;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-weight:700;
  box-shadow:0 8px 18px -8px rgba(24,166,83,0.65);
  transition:transform .25s ease;
}
.step:hover .num{transform:scale(1.12);}
.step h4{font-size:15.5px; margin-bottom:6px;}
.step p{font-size:13.5px; color:var(--ash);}

/* Publications gallery */
.pub-toolbar{display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:20px; margin-bottom:30px;}
.pub-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:12px;}
@media(max-width:980px){.pub-grid{grid-template-columns:repeat(4,1fr);}}
@media(max-width:620px){.pub-grid{grid-template-columns:repeat(2,1fr);}}
.pub-card{
  background:var(--white); border:1px solid var(--line); border-radius:12px;
  padding:16px 10px; text-align:center; font-family:'Space Grotesk',sans-serif;
  font-size:13px; font-weight:600; color:var(--ink); display:flex; align-items:center; justify-content:center;
  min-height:64px; transition:all .18s ease; letter-spacing:-0.01em;
}
.pub-card:hover{background:var(--ink); color:var(--white); transform:translateY(-3px);}
.pub-note{font-size:13.5px; color:var(--ash); margin-top:22px;}

/* Testimonials */
.testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:900px){.testi-grid{grid-template-columns:1fr;}}
.testi-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:26px;}
.testi-card p{font-size:15px; color:var(--ink); margin-bottom:18px;}
.testi-who{display:flex; align-items:center; gap:10px;}
.avatar{width:38px; height:38px; border-radius:50%; background:var(--green); color:var(--ink); font-weight:700; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif;}
.testi-who b{display:block; font-size:14px;}
.testi-who span{font-size:12.5px; color:var(--ash);}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px;}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.contact-media{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); position:relative;}
.contact-media img{width:100%; height:100%; min-height:360px; object-fit:cover;}
.info-list{display:grid; gap:18px; margin-top:26px;}
.info-item{display:flex; gap:14px; align-items:flex-start;}
.info-item .ic{
  width:42px; height:42px; border-radius:12px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 8px 18px -8px rgba(24,166,83,0.6);
  transition:transform .25s ease;
}
.info-item:hover .ic{transform:scale(1.08) rotate(-4deg);}
.info-item .ic svg path, .info-item .ic svg circle{stroke:#fff;}
.info-item b{display:block; font-size:14.5px;}
.info-item span{font-size:14px; color:var(--ash);}

.form-card{background:var(--white); border:1px solid var(--line); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow);}
.form-row{display:grid; gap:16px;}
.form-row label{font-size:13px; font-weight:600; margin-bottom:6px; display:block;}
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px; font-family:'Inter',sans-serif; font-size:14.5px;
}
.form-row textarea{resize:vertical; min-height:100px;}
.form-two{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media(max-width:600px){.form-two{grid-template-columns:1fr;}}

/* Footer */
.foot-logo-chip{
  display:inline-flex; align-items:center; background:var(--white); border-radius:12px;
  padding:8px 14px; margin-bottom:16px;
}
.foot-logo-chip img{height:30px; display:block; margin:0;}
footer{background:var(--ink); color:#B9C4BE; padding:64px 0 28px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;}
@media(max-width:820px){.foot-grid{grid-template-columns:1fr 1fr;}}
.foot-grid h5{color:var(--white); font-family:'Space Grotesk',sans-serif; font-size:14px; margin-bottom:16px;}
.foot-grid a{display:block; font-size:14px; margin-bottom:10px; color:#B9C4BE;}
.foot-grid a:hover{color:var(--green-light);}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,0.12); margin-top:44px; padding-top:22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#8A968F;
}
.foot-bottom a{color:#8A968F;}
.credits{font-size:11.5px; color:#75827B; line-height:1.7;}
.credits a{color:#8FD6AE;}

/* WhatsApp floating button */
#wa-launcher{
  position:fixed; left:24px; bottom:24px; z-index:200;
  width:60px; height:60px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 16px 30px -12px rgba(37,211,102,0.6);
  border:none; text-decoration:none;
}
#wa-launcher svg{width:30px; height:30px;}
#wa-launcher:hover{transform:translateY(-2px);}

/* Chatbot */
#chat-launcher{
  position:fixed; right:24px; bottom:24px; z-index:200;
  width:60px; height:60px; border-radius:50%; background:var(--green); color:var(--ink);
  display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 16px 30px -12px rgba(10,54,32,0.5);
  border:none;
}
#chat-launcher svg{width:26px; height:26px;}
#chat-panel{
  position:fixed; right:24px; bottom:96px; z-index:200; width:340px; max-width:88vw;
  background:var(--white); border-radius:20px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.35);
  display:none; flex-direction:column; overflow:hidden; border:1px solid var(--line);
}
#chat-panel.open{display:flex;}
.chat-head{background:var(--forest); color:var(--white); padding:16px 18px; display:flex; align-items:center; gap:10px;}
.chat-head img{height:22px;}
.chat-head b{font-family:'Space Grotesk',sans-serif; font-size:14.5px;}
.chat-head span{font-size:11.5px; color:#BFE0CD; display:block;}
.chat-close{margin-left:auto; cursor:pointer; opacity:.8; font-size:18px;}
.chat-body{padding:16px; display:flex; flex-direction:column; gap:10px; max-height:380px; overflow-y:auto;}
.bubble{background:var(--mint); padding:10px 13px; border-radius:12px 12px 12px 4px; font-size:13.5px; max-width:88%;}
.bubble.me{background:var(--ink); color:var(--white); align-self:flex-end; border-radius:12px 12px 4px 12px;}
.chat-options{display:flex; flex-wrap:wrap; gap:8px;}
.chip-btn{
  border:1px solid var(--green); color:var(--green-deep); background:var(--white); border-radius:100px;
  padding:8px 13px; font-size:13px; cursor:pointer; font-family:'Inter',sans-serif;
}
.chip-btn:hover{background:var(--green); color:var(--ink);}
.chat-input-row{display:flex; gap:8px; padding:12px; border-top:1px solid var(--line);}
.chat-input-row input, .chat-input-row textarea{
  flex:1; border:1px solid var(--line); border-radius:10px; padding:10px 12px; font-size:13.5px; font-family:'Inter',sans-serif; resize:none;
}
.chat-input-row button{
  background:var(--green); border:none; border-radius:10px; padding:0 16px; font-weight:600; cursor:pointer;
}

::selection{background:var(--green-light); color:var(--ink);}
