/* =========================================================
   VAULTORNET — SHARED STYLESHEET
   ========================================================= */

:root{
  --color-dark:#0f1a21;
  --color-text:#0f1a15;
  --color-accent:#064e3b;
  --color-accent-hover:#377162;
  --color-accent-light:#c3e2d8;
  --color-cta:#10b981;
  --color-cta-hover:#0c9467;
  --color-cta-text:#000000;
  --color-bg-light:#ebecec;
  --color-bg-white:#ffffff;
  --color-icon-bg:#c3e2d8;
  --color-icon:#085c40;
  --color-border:rgba(15,26,21,0.1);
  --font-primary:'Manrope', sans-serif;
  --font-secondary:'Manrope', sans-serif;
  --ease:cubic-bezier(.25,.8,.25,1);
}

*{box-sizing:border-box;margin:0;padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:var(--font-secondary);
  font-size:16px;
  line-height:1.6em;
  color:var(--color-text);
  background:var(--color-bg-white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{text-decoration:none;color:inherit;}
ul{list-style:none;}
img{max-width:100%;display:block;}
button{font-family:inherit;}

h1,h2,h3,h4{
  font-family:var(--font-primary);
  font-weight:500;
  line-height:1.08em;
  color:var(--color-text);
}

h1{font-size:68px;line-height:1.02em;}
h2{font-size:46px;}
h3{font-size:30px;line-height:1.2em;}
h4{font-size:21px;line-height:1.3em;}

.em-accent{
  color:var(--color-accent);
  font-style:italic;
  font-weight:700;
}

.container{
  max-width:1224px;
  margin:0 auto;
  padding:0 16px;
}

.container-narrow{
  max-width:860px;
  margin:0 auto;
  padding:0 16px;
}

.eyebrow{
  font-size:13px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--color-accent);
  font-weight:600;
  display:inline-block;
}

.body-small{
  font-size:13px;
  line-height:1.4em;
}

.section{
  padding:64px 0;
}

.section-head{
  text-align:center;
  max-width:700px;
  margin:0 auto 40px;
}
.section-head.left{
  text-align:left;
  margin:0 0 40px;
}
.section-head .eyebrow{margin-bottom:14px;}
.section-head h2{margin-bottom:16px;}
.section-head p{color:rgba(15,26,21,0.75);}

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
  will-change:opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.reveal-fade{
  opacity:0;
  transition:opacity 1s var(--ease);
}
.reveal-fade.in-view{opacity:1;}
.reveal-scale{
  opacity:0;
  transform:scale(.92);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-scale.in-view{opacity:1;transform:scale(1);}
.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left.in-view{opacity:1;transform:translateX(0);}
.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-right.in-view{opacity:1;transform:translateX(0);}

.d1{transition-delay:.06s;}
.d2{transition-delay:.12s;}
.d3{transition-delay:.18s;}
.d4{transition-delay:.24s;}
.d5{transition-delay:.3s;}

/* ---------- HEADER / NAV ---------- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);
  padding:18px 16px;
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
header.scrolled{
  box-shadow:0 4px 24px rgba(0,0,0,0.06);
  border-color:var(--color-border);
  padding:12px 16px;
}
.header-inner{
  max-width:1224px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.logo img{height:52px;width:auto;transition:transform .3s ease;}
.logo:hover img{transform:scale(1.04);}

nav ul{
  display:flex;
  align-items:center;
  gap:32px;
}
nav a{
  position:relative;
  font-size:15px;
  color:#000000;
  font-weight:500;
  white-space:nowrap;
  padding:4px 0;
}
nav a::after{
  content:'';
  position:absolute;
  left:50%;
  right:50%;
  bottom:-2px;
  height:2px;
  background:var(--color-accent);
  transition:left .28s var(--ease), right .28s var(--ease);
}
nav a:hover::after,
nav a.active::after{
  left:0;
  right:0;
}
nav a.active{font-weight:700;}
nav a.nav-cta{
  background:var(--color-accent);
  color:#fff;
  padding:12px 22px;
  border-radius:8px;
  transition:background .25s ease, transform .25s ease;
}
nav a.nav-cta::after{display:none;}
nav a.nav-cta:hover{
  background:var(--color-accent-hover);
  transform:translateY(-2px);
}

.burger{display:none;background:none;border:none;cursor:pointer;width:28px;height:20px;position:relative;z-index:110;}
.burger span{
  display:block;position:absolute;height:2px;width:100%;background:#0f1a15;left:0;
  transition:transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1){top:0;}
.burger span:nth-child(2){top:9px;}
.burger span:nth-child(3){top:18px;}
.burger.open span:nth-child(1){top:9px;transform:rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){top:9px;transform:rotate(-45deg);}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 26px;
  font-size:15px;
  font-weight:600;
  border-radius:8px;
  border:none;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--color-accent);
  color:#ffffff;
}
.btn-primary:hover{
  background:var(--color-accent-hover);
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(6,78,59,0.28);
}
.btn-outline{
  background:transparent;
  color:var(--color-accent);
  border:1.5px solid var(--color-accent);
}
.btn-outline:hover{
  background:var(--color-accent);
  color:#fff;
  transform:translateY(-3px);
}
.btn-cta{
  background:var(--color-cta);
  color:var(--color-cta-text);
}
.btn-cta:hover{
  background:var(--color-cta-hover);
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(16,185,129,0.3);
}
.btn-white{
  background:#ffffff;
  color:var(--color-accent);
}
.btn-white:hover{
  background:var(--color-bg-light);
  transform:translateY(-3px);
}
.btn svg{width:16px;height:16px;transition:transform .25s ease;}
.btn:hover svg{transform:translateX(3px);}

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero{
  background:linear-gradient(180deg,#ffffff,#c9dcd6 60%,#ebecec);
  padding:140px 0 72px;
  text-align:center;
}
.page-hero .breadcrumb{
  font-size:13px;
  color:rgba(15,26,21,0.6);
  margin-bottom:24px;
  letter-spacing:0.04em;
}
.page-hero .breadcrumb a{color:var(--color-accent);font-weight:600;}
.page-hero h1{max-width:820px;margin:0 auto 24px;font-size:52px;}
.page-hero p{max-width:640px;margin:0 auto;color:rgba(15,26,21,0.75);font-size:18px;}

/* ---------- HOME HERO ---------- */
.hero{
  background:linear-gradient(180deg,#ffffff,#8eafa6,#ebecec);
  padding:48px 0 76px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-200px;
  left:50%;
  transform:translateX(-50%);
  width:900px;
  height:900px;
  background:radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
  pointer-events:none;
}
.hero .eyebrow{margin-bottom:18px;}
.hero h1{max-width:900px;margin:0 auto 28px;position:relative;}
.hero p{max-width:620px;margin:0 auto 32px;font-size:17px;position:relative;}
.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
  position:relative;
}
.hero-badges{
  display:flex;
  gap:32px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:44px;
  opacity:0.75;
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  position:relative;
}

/* ---------- PROOF / STATS ---------- */
.proof{
  background:var(--color-bg-light);
  padding:80px 0;
  text-align:center;
}
.proof h2{margin-bottom:8px;}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin:0 auto;
}
.stat{
  padding:30px 24px;
  border-radius:16px;
  background:#ffffff;
  border:1px solid var(--color-border);
  box-shadow:0 10px 28px rgba(15,26,21,0.06);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(15,26,21,0.1);
  border-color:var(--color-cta);
}
.stat-icon{
  width:40px;height:40px;
  margin:0 0 14px;
  color:var(--color-icon);
  transition:transform .35s ease;
}
.stat:hover .stat-icon{transform:scale(1.15) rotate(-6deg);}
.stat h2{font-size:36px;margin-bottom:8px;}
.stat p{color:var(--color-text);font-size:14.5px;}

/* ---------- ABOUT ---------- */
.about{background:#ffffff;}
.about-inner{
  display:grid;
  grid-template-columns:45% 55%;
  gap:56px;
  align-items:center;
}
.about-text .eyebrow{margin-bottom:16px;}
.about-text h2{margin-bottom:22px;}
.about-text p{margin-bottom:20px;max-width:508px;color:rgba(15,26,21,0.85);}
.about-text .btn{margin-top:16px;}
.about-image{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
  position:relative;
}
.about-image img{
  width:100%;
  height:560px;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.about-image:hover img{transform:scale(1.06);}

/* ---------- PROCESS / METHODOLOGY ---------- */
.process{background:var(--color-bg-light);}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  counter-reset:step;
  position:relative;
}
.process-step{
  background:#ffffff;
  border-radius:16px;
  padding:36px 28px;
  position:relative;
  transition:transform .35s ease, box-shadow .35s ease;
  border:1px solid var(--color-border);
}
.process-step:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(6,78,59,0.12);
}
.process-num{
  counter-increment:step;
  font-family:var(--font-primary);
  font-size:14px;
  font-weight:700;
  color:var(--color-cta-hover);
  background:var(--color-icon-bg);
  width:32px;height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
}
.process-num::before{content:counter(step, decimal-leading-zero);}
.process-step h4{margin-bottom:12px;}
.process-step p{font-size:14px;color:rgba(15,26,21,0.75);}

/* ---------- SERVICES OVERVIEW / GRID ---------- */
.services{background:#ffffff;}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.services-grid.cols-2{grid-template-columns:repeat(2,1fr);}
.service-card{
  background:var(--color-bg-light);
  border-radius:16px;
  padding:36px 30px;
  box-shadow:0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.05);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
  position:relative;
  overflow:hidden;
}
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 50px -12px rgba(6,78,59,0.22);
  background:#ffffff;
}
.service-icon{
  width:52px;height:52px;
  border-radius:12px;
  background:var(--color-icon-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--color-accent);
  margin-bottom:24px;
  transition:transform .4s ease, background .3s ease;
}
.service-card:hover .service-icon{
  transform:rotate(-8deg) scale(1.08);
  background:var(--color-accent);
  color:#fff;
}
.service-card .body-small{
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:12px;
  display:block;
  color:var(--color-accent);
  font-weight:600;
}
.service-card h3{margin-bottom:14px;font-size:23px;}
.service-card p{color:rgba(15,26,21,0.75);font-size:15px;}
.service-card .learn-more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:18px;
  font-size:14px;
  font-weight:600;
  color:var(--color-accent);
}
.service-card .learn-more svg{width:14px;height:14px;transition:transform .25s ease;}
.service-card:hover .learn-more svg{transform:translateX(4px);}

/* ---------- INDUSTRIES ---------- */
.industries{background:var(--color-bg-light);}
.industries-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.industry-card{
  background:#ffffff;
  border-radius:14px;
  padding:32px 24px;
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid var(--color-border);
}
.industry-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(0,0,0,0.08);
  border-color:transparent;
}
.industry-icon{
  width:44px;height:44px;
  margin:0 auto 16px;
  color:var(--color-icon);
  transition:transform .3s ease;
}
.industry-card:hover .industry-icon{transform:scale(1.15);}
.industry-card h4{font-size:17px;}

/* ---------- TESTIMONIALS ---------- */
.testimonials{background:#ffffff;}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:var(--color-bg-light);
  border-radius:16px;
  padding:36px 32px;
  box-shadow:0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.05);
  transition:transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}
.quote-mark{
  font-family:Georgia, serif;
  font-size:52px;
  color:var(--color-cta);
  line-height:1;
  margin-bottom:8px;
  display:block;
}
.testimonial-card p.quote{
  font-size:15px;
  color:rgba(15,26,21,0.85);
  margin-bottom:24px;
}
.testimonial-author{
  display:flex;
  align-items:center;
  gap:12px;
}
.testimonial-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:15px;
  flex-shrink:0;
}
.testimonial-author h4{font-size:15px;margin-bottom:2px;}
.testimonial-author span{font-size:13px;color:rgba(15,26,21,0.6);}

/* ---------- FAQ ---------- */
.faq{background:var(--color-bg-light);}
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{
  background:#ffffff;
  border-radius:12px;
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid var(--color-border);
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px 26px;
  background:none;
  border:none;
  text-align:left;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  color:var(--color-text);
}
.faq-question .plus{
  width:20px;height:20px;
  position:relative;
  flex-shrink:0;
  margin-left:20px;
}
.faq-question .plus::before,
.faq-question .plus::after{
  content:'';
  position:absolute;
  background:var(--color-accent);
  transition:transform .3s ease;
}
.faq-question .plus::before{
  width:100%;height:2px;top:9px;left:0;
}
.faq-question .plus::after{
  width:2px;height:100%;left:9px;top:0;
}
.faq-item.open .plus::after{transform:rotate(90deg);opacity:0;}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease);
}
.faq-answer p{
  padding:0 26px 24px;
  color:rgba(15,26,21,0.75);
  font-size:15px;
}

/* ---------- FRAMEWORKS / STANDARDS LIST (compliance page) ---------- */
.frameworks-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.framework-card{
  display:flex;
  gap:20px;
  padding:28px;
  background:var(--color-bg-light);
  border-radius:14px;
  box-shadow:0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.05);
  transition:transform .3s ease, box-shadow .3s ease;
}
.framework-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 32px rgba(0,0,0,0.08);
}
.framework-icon{
  width:44px;height:44px;
  border-radius:10px;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.framework-card h4{margin-bottom:8px;}
.framework-card p{font-size:14px;color:rgba(15,26,21,0.75);}

/* ---------- ARTICLE / INSIGHTS GRID ---------- */
.article-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.article-card{
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--color-border);
  transition:transform .35s ease, box-shadow .35s ease;
}
.article-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 44px rgba(0,0,0,0.1);
}
.article-image{
  height:250px;
  background:linear-gradient(135deg, var(--color-accent), #1a7a5e);
  position:relative;
  overflow:hidden;
}
.article-image svg{
  position:absolute;
  width:80px;height:80px;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  color:rgba(255,255,255,0.35);
  transition:transform .4s ease;
}
.article-card:hover .article-image svg{transform:translate(-50%,-50%) scale(1.15) rotate(8deg);}
.article-body{padding:28px;}
.article-tag{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--color-cta-hover);
  font-weight:700;
  margin-bottom:12px;
  display:block;
}
.article-body h4{margin-bottom:12px;font-size:19px;}
.article-body p{font-size:14px;color:rgba(15,26,21,0.7);margin-bottom:18px;}
.article-meta{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:rgba(15,26,21,0.5);
  border-top:1px solid var(--color-border);
  padding-top:16px;
}

/* ---------- NEWSLETTER ---------- */
.newsletter{
  background:var(--color-accent);
  border-radius:24px;
  padding:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.newsletter h3{color:#fff;margin-bottom:8px;}
.newsletter p{color:rgba(255,255,255,0.8);}
.newsletter-form{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.newsletter-form input{
  padding:15px 20px;
  border-radius:8px;
  border:none;
  font-size:15px;
  font-family:inherit;
  min-width:260px;
}
.newsletter-form input:focus{outline:2px solid var(--color-cta);}

/* ---------- CONTACT PAGE ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:start;
}
.contact-form{
  background:var(--color-bg-light);
  border-radius:20px;
  padding:44px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}
.form-group{margin-bottom:20px;}
.form-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(15,26,21,0.15);
  font-family:inherit;
  font-size:15px;
  background:#ffffff;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--color-accent);
  box-shadow:0 0 0 3px rgba(6,78,59,0.12);
}
.form-group textarea{resize:vertical;min-height:130px;}
.form-success{
  display:none;
  background:var(--color-accent-light);
  color:var(--color-accent);
  border-radius:10px;
  padding:16px 20px;
  font-weight:600;
  margin-top:16px;
}
.form-success.show{display:block;}

.contact-info-card{
  background:var(--color-accent);
  border-radius:20px;
  padding:44px;
  color:#fff;
  margin-bottom:24px;
}
.contact-info-card h3{color:#fff;margin-bottom:24px;}
.contact-info-row{
  display:flex;
  gap:16px;
  margin-bottom:24px;
  align-items:flex-start;
}
.contact-info-row:last-child{margin-bottom:0;}
.contact-info-row .icon{
  width:22px;height:22px;
  flex-shrink:0;
  margin-top:2px;
  color:var(--color-cta);
}
.contact-info-row h4{color:#fff;font-size:15px;margin-bottom:4px;}
.contact-info-row p, .contact-info-row a{color:rgba(255,255,255,0.8);font-size:14px;}

.office-card{
  background:var(--color-bg-light);
  border-radius:20px;
  padding:36px;
}
.office-card h4{margin-bottom:10px;}
.office-card p{color:rgba(15,26,21,0.75);font-size:14px;}

/* ---------- CTA ---------- */
.cta{
  background:var(--color-accent);
  padding:84px 0 80px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta::before{
  content:'';
  position:absolute;
  bottom:-150px;
  right:-100px;
  width:500px;height:500px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
}
.cta h2{color:#ffffff;max-width:700px;margin:0 auto 24px;position:relative;}
.cta p{color:rgba(255,255,255,0.85);max-width:700px;margin:0 auto 40px;position:relative;}
.cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;position:relative;}

/* ---------- FOOTER ---------- */
footer{
  background:var(--color-bg-light);
  padding:56px 0 32px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
}
.footer-brand .logo{margin-bottom:16px;}
.footer-brand p{max-width:280px;color:rgba(15,26,21,0.75);}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.footer-social a{
  width:36px;height:36px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--color-accent);
  transition:background .25s ease, transform .25s ease, color .25s ease;
}
.footer-social a:hover{
  background:var(--color-accent);
  color:#fff;
  transform:translateY(-3px);
}
.footer-social svg{width:16px;height:16px;}

.footer-col p.head{
  color:var(--color-cta);
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:20px;
  font-weight:700;
}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{
  font-size:14px;
  color:rgba(15,26,21,0.8);
  transition:color .2s ease, padding-left .2s ease;
  display:inline-block;
}
.footer-col ul li a:hover{
  color:var(--color-accent);
  padding-left:4px;
}
.footer-contact p{margin-bottom:10px;font-size:14px;color:rgba(15,26,21,0.8);}

.footer-divider{
  height:1px;
  background:#0f1a15;
  opacity:0.1;
  margin:0 0 24px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-bottom p{
  opacity:0.7;
  font-size:13px;
}
.footer-bottom .tag{
  color:var(--color-cta);
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:700;
}
.footer-accent{
  width:48px;height:3px;
  background:var(--color-cta);
  margin-bottom:32px;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top{
  position:fixed;
  bottom:28px;
  right:28px;
  width:48px;height:48px;
  border-radius:50%;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .3s ease, transform .3s ease, background .25s ease, visibility .3s ease;
  z-index:80;
  border:none;
}
.back-to-top.show{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:var(--color-accent-hover);}
.back-to-top svg{width:18px;height:18px;}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1080px){
  .footer-top{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}

@media (max-width:920px){
  h1{font-size:38px;}
  h2{font-size:30px;}
  h3{font-size:23px;}
  .page-hero h1{font-size:34px;}
  .page-hero{padding:120px 0 56px;}

  .section{padding:48px 0;}

  nav{
    position:fixed;
    inset:0;
    top:0;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:translateX(100%);
    transition:transform .4s var(--ease);
    z-index:90;
  }
  nav.open{transform:translateX(0);}
  nav ul{
    flex-direction:column;
    align-items:center;
    gap:28px;
  }
  nav a{font-size:20px;}
  .burger{display:block;}

  .about-inner{grid-template-columns:1fr;}
  .about-image{order:-1;}
  .about-image img{height:340px;}

  .services-grid, .services-grid.cols-2,
  .process-grid, .industries-grid,
  .testimonial-grid, .article-grid,
  .frameworks-grid{grid-template-columns:1fr;}

  .stats{grid-template-columns:1fr;gap:20px;}

  .footer-top{grid-template-columns:1fr;gap:32px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}

  .hero{padding:56px 0 44px;}
  .cta{padding:52px 0;}

  .form-row{grid-template-columns:1fr;}
  .newsletter{flex-direction:column;text-align:center;padding:40px 28px;}
  .newsletter-form{justify-content:center;width:100%;}
  .newsletter-form input{min-width:0;flex:1;}
}

/* ---------- ADDITIONS: FOUNDER SECTION & WHATSAPP FLOAT ---------- */
.founder{
  background:#f7f8f8;
}
.founder-inner{
  max-width:1160px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:56px;
  align-items:center;
}
.founder-text p{
  margin-bottom:1.1rem;
  line-height:1.7;
  color:var(--color-text, #36344d);
}
.founder-text strong{
  color:var(--color-primary, #064e3b);
}
.founder-text .btn{
  margin-top:0.5rem;
}

.founder-image{
  position:relative;
}
.founder-image img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
  transition:transform .5s var(--ease);
}
.founder-image:hover img{transform:scale(1.03);}
.founder-badge{
  position:absolute;
  left:-24px;
  bottom:28px;
  background:var(--color-accent);
  color:#fff;
  border-radius:16px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  max-width:230px;
  box-shadow:0 16px 34px rgba(6,78,59,0.28);
}
.founder-badge-num{
  font-family:var(--font-primary);
  font-weight:800;
  font-size:32px;
  line-height:1;
  flex-shrink:0;
}
.founder-badge-label{
  font-size:12.5px;
  font-weight:600;
  line-height:1.35;
  color:rgba(255,255,255,0.9);
}
.founder-tags{
  position:absolute;
  top:24px;
  right:-16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
}
.founder-tags span{
  background:#ffffff;
  border:1px solid var(--color-border);
  border-radius:999px;
  padding:8px 16px;
  font-size:12.5px;
  font-weight:700;
  color:var(--color-accent);
  box-shadow:0 8px 20px rgba(15,26,21,0.08);
  white-space:nowrap;
}
@media (max-width:900px){
  .founder-inner{grid-template-columns:1fr;}
  .founder-image{order:-1;margin-bottom:8px;}
  .founder-image img{height:360px;}
  .founder-badge{left:16px;bottom:16px;}
  .founder-tags{position:static;flex-direction:row;flex-wrap:wrap;margin-top:16px;}
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:88px;
  z-index:60;
  width:54px;
  height:54px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.22);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg{
  width:28px;
  height:28px;
}
.whatsapp-float:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 24px rgba(0,0,0,0.28);
}
@media (max-width:600px){
  .whatsapp-float{
    right:14px;
    bottom:78px;
    width:50px;
    height:50px;
  }
}

.footer-contact a{
  color:inherit;
  text-decoration:none;
}
.footer-contact a:hover{
  color:var(--color-cta-hover);
}

/* =========================================================
   NEW — CONCERNS SPLIT SECTION (concerns left, stats right)
   ========================================================= */
.concerns-split{
  background:#ffffff;
}
.concerns-split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.concerns-col{
  display:flex;
  flex-direction:column;
  gap:22px;
}
.concern-row{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:20px;
  border-radius:16px;
  border:1px solid var(--color-border);
  background:var(--color-bg-light);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.concern-row:hover{
  transform:translateX(6px);
  box-shadow:0 14px 30px rgba(6,78,59,0.1);
  border-color:var(--color-cta);
}
.concern-row-icon{
  width:44px;height:44px;
  flex-shrink:0;
  border-radius:12px;
  background:var(--color-accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.concern-row-icon svg{width:22px;height:22px;}
.concern-row h4{margin-bottom:6px;font-size:17px;}
.concern-row p{font-size:14px;color:rgba(15,26,21,0.72);}
.stats-col .stats{
  grid-template-columns:1fr;
  gap:20px;
}
@media (max-width:920px){
  .concerns-split-grid{grid-template-columns:1fr;gap:32px;}
}

/* =========================================================
   NEW — WHY US SECTION (3 columns)
   ========================================================= */
.why-us{
  background:var(--color-bg-light);
}
.whyus-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.whyus-card{
  background:#ffffff;
  border-radius:18px;
  padding:32px 28px;
  border:1px solid var(--color-border);
  box-shadow:0 12px 28px rgba(15,26,21,0.05);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.whyus-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 42px rgba(6,78,59,0.12);
  border-color:var(--color-cta);
}
.whyus-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}
.whyus-icon{
  width:48px;height:48px;
  flex-shrink:0;
  border-radius:12px;
  background:var(--color-icon-bg);
  color:var(--color-icon);
  display:flex;
  align-items:center;
  justify-content:center;
}
.whyus-icon svg{width:24px;height:24px;}
.whyus-head h3{font-size:20px;}
.whyus-list li{
  font-size:14.5px;
  color:rgba(15,26,21,0.78);
  padding:10px 0;
  border-top:1px solid var(--color-border);
  display:flex;
  align-items:center;
  gap:8px;
}
.whyus-list li:first-child{border-top:none;}
.whyus-list li::before{
  content:'';
  width:6px;height:6px;
  border-radius:50%;
  background:var(--color-cta);
  flex-shrink:0;
}
@media (max-width:920px){
  .whyus-grid{grid-template-columns:1fr;}
}

/* =========================================================
   HOW WE WORK — PROCESS STEPS (renamed to avoid clashing with
   the pre-existing .process counter styles used elsewhere)
   ========================================================= */
.work-process{
  background:var(--color-bg-light);
}
.work-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--color-border);
  border-left:1px solid var(--color-border);
}
.work-process-card{
  background:#ffffff;
  padding:32px 28px;
  border-right:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
  transition:transform .3s ease, box-shadow .3s ease;
  position:relative;
  z-index:1;
}
.work-process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(15,26,21,0.08);
}
.work-process-num{
  display:block;
  font-family:var(--font-primary);
  font-size:14px;
  font-weight:700;
  color:var(--color-cta-hover);
  letter-spacing:0.06em;
  margin-bottom:18px;
}
.work-process-card h3{font-size:20px;margin-bottom:10px;}
.work-process-card p{font-size:14.5px;color:rgba(15,26,21,0.7);line-height:1.6em;}
.work-process-deliverables{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--color-border);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.work-process-deliverables li{
  font-size:13px;
  font-weight:600;
  color:var(--color-accent);
  padding-left:15px;
  position:relative;
  line-height:1.4em;
}
.work-process-deliverables li::before{
  content:'';
  position:absolute;
  left:0;
  top:6px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--color-cta);
}
@media (max-width:920px){
  .work-process-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .work-process-grid{grid-template-columns:1fr;}
}

/* =========================================================
   RESTYLE — WHY US: CATEGORY SELECTOR (image1-style)
   ========================================================= */
.category-selector{
  display:grid;
  grid-template-columns:0.9fr 1.6fr;
  gap:24px;
  align-items:start;
  background:var(--color-bg-light);
  border-radius:24px;
  padding:16px;
}
.category-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.category-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  text-align:left;
  padding:16px 18px;
  border-radius:14px;
  border:none;
  background:transparent;
  cursor:pointer;
  font-size:14.5px;
  font-weight:600;
  color:rgba(15,26,21,0.65);
  transition:background .25s ease, color .25s ease;
}
.category-item svg{
  width:16px;height:16px;
  opacity:0;
  transform:translateX(-4px);
  transition:opacity .25s ease, transform .25s ease;
  flex-shrink:0;
}
.category-item:hover{
  background:rgba(6,78,59,0.06);
  color:var(--color-text);
}
.category-item.active{
  background:var(--color-accent);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(6,78,59,0.22);
}
.category-item.active svg{opacity:1;transform:translateX(0);color:#fff;}

.category-panel{
  background:#ffffff;
  border-radius:20px;
  padding:36px;
  min-height:320px;
  box-shadow:0 12px 30px rgba(15,26,21,0.06);
}
.category-panel-eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--color-cta-hover);
  margin-bottom:10px;
  display:block;
}
.category-panel h3{
  font-size:24px;
  margin-bottom:10px;
}
.category-panel > p{
  font-size:14.5px;
  color:rgba(15,26,21,0.7);
  margin-bottom:26px;
  max-width:560px;
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.category-tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
  padding:20px 12px;
  border-radius:14px;
  border:1px solid var(--color-border);
  background:var(--color-bg-light);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.category-tile:hover{
  transform:translateY(-4px);
  border-color:var(--color-cta);
  background:#ffffff;
  box-shadow:0 14px 28px rgba(6,78,59,0.12);
}
.category-tile-icon{
  width:38px;height:38px;
  border-radius:10px;
  background:var(--color-icon-bg);
  color:var(--color-icon);
  display:flex;
  align-items:center;
  justify-content:center;
}
.category-tile-icon svg{width:19px;height:19px;}
.category-tile span{
  font-size:13px;
  font-weight:700;
  color:var(--color-text);
  line-height:1.3;
}
@media (max-width:920px){
  .category-selector{grid-template-columns:1fr;}
  .category-nav{flex-direction:row;flex-wrap:wrap;}
  .category-grid{grid-template-columns:repeat(2,1fr);}
  .category-panel{padding:26px;}
}

/* =========================================================
   WHY US — EDITORIAL SPLIT LAYOUT
   ========================================================= */
.why-us{background:#ffffff;padding:96px 0;}
.why-us-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:72px;
  align-items:start;
}
.why-us-content h2{max-width:520px;margin-bottom:20px;}
.why-us-lead{
  max-width:480px;
  color:rgba(15,26,21,0.72);
  font-size:16.5px;
  line-height:1.65em;
  margin-bottom:44px;
}
.advantage-list{
  display:flex;
  flex-direction:column;
}
.advantage-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:22px 4px;
  margin:0 -4px;
  border-top:1px solid var(--color-border);
  border-radius:8px;
  transition:background .25s ease, padding-left .25s ease;
}
.advantage-item:hover{
  background:var(--color-bg-light);
  padding-left:12px;
}
.advantage-item:last-child{border-bottom:1px solid var(--color-border);}
.advantage-icon{
  flex:none;
  width:38px;height:38px;
  border-radius:10px;
  border:1px solid var(--color-border);
  background:var(--color-bg-light);
  color:var(--color-accent);
  display:flex;
  align-items:center;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  justify-content:center;
}
.advantage-icon svg{width:18px;height:18px;}
.advantage-item:hover .advantage-icon{
  background:var(--color-accent);
  border-color:var(--color-accent);
  color:#ffffff;
  transform:scale(1.06);
}
.advantage-text h4{font-size:16.5px;font-weight:700;margin-bottom:4px;}
.advantage-text p{font-size:14.5px;color:rgba(15,26,21,0.68);line-height:1.55em;max-width:420px;}

.why-us-panel{
  transition:box-shadow .3s ease;
  border:1px solid var(--color-border);
  border-radius:14px;
  padding:36px 32px;
  position:sticky;
  top:110px;
}
.why-us-panel:hover{
  box-shadow:0 20px 44px rgba(15,26,21,0.08);
}
.panel-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.panel-stat{display:flex;flex-direction:column;gap:6px;}
.panel-stat-num{font-family:var(--font-primary);font-size:34px;font-weight:600;color:var(--color-accent);line-height:1em;}
.panel-stat-label{font-size:13px;color:rgba(15,26,21,0.6);}
.panel-divider{height:1px;background:var(--color-border);margin:28px 0;}
.panel-badges{display:flex;flex-direction:column;gap:16px;}
.panel-badge{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid var(--color-border);
  border-radius:10px;
  padding:14px 16px;
  transition:border-color .25s ease, background .25s ease;
}
.panel-badge:hover{
  border-color:var(--color-cta);
  background:var(--color-bg-light);
}
.panel-badge-title{font-size:14.5px;font-weight:700;color:var(--color-text);}
.panel-badge-sub{font-size:12.5px;color:rgba(15,26,21,0.55);}
.panel-cta p{
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(15,26,21,0.55);
  margin-bottom:14px;
}
.panel-cta .btn{width:100%;justify-content:center;}

@media (max-width:920px){
  .why-us-grid{grid-template-columns:1fr;gap:48px;}
  .why-us-panel{position:static;}
}

/* =========================================================
   SYSTEMS & TOOLS WE SECURE — EDITORIAL SPLIT LAYOUT
   ========================================================= */
.tools-tile-section{background:var(--color-bg-light);padding:96px 0;}
.tools-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.tools-content h2{max-width:460px;margin-bottom:20px;}
.tools-lead{
  max-width:460px;
  color:rgba(15,26,21,0.72);
  font-size:16.5px;
  line-height:1.65em;
  margin-bottom:32px;
}
.tools-chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.tools-chips li{
  font-size:14px;
  font-weight:600;
  color:var(--color-text);
  background:#ffffff;
  border:1px solid var(--color-border);
  border-radius:999px;
  padding:10px 18px;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.tools-chips li:hover{
  background:var(--color-accent);
  border-color:var(--color-accent);
  color:#ffffff;
  transform:translateY(-2px);
}

.tools-image{
  display:flex;
  overflow:hidden;
  border-radius:16px;
}
.tools-image img{
  width:100%;
  height:auto;
  border-radius:16px;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.tools-image:hover img{
  transform:scale(1.04);
}

@media (max-width:920px){
  .tools-grid{grid-template-columns:1fr;gap:48px;}
}

/* =========================================================
   NEW — COMPLIANCE & AUDIT SERVICES: DETAILED CARDS
   (coverage + deliverables, used on compliance.html)
   ========================================================= */
.compliance-services{background:#ffffff;}
.compliance-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.compliance-card{
  background:var(--color-bg-light);
  border-radius:14px;
  padding:22px 20px;
  border:1px solid var(--color-border);
  box-shadow:0 10px 22px rgba(15,26,21,0.05);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease, border-color .35s ease;
}
.compliance-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 38px rgba(6,78,59,0.14);
  background:#ffffff;
  border-color:var(--color-cta);
}
.compliance-card-top{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}
.compliance-card-icon{
  width:38px;height:38px;
  flex-shrink:0;
  border-radius:10px;
  background:var(--color-accent);
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .4s ease;
}
.compliance-card-icon svg{width:18px;height:18px;}
.compliance-card:hover .compliance-card-icon{
  transform:rotate(-8deg) scale(1.08);
}
.compliance-card-tag{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.07em;
  text-transform:uppercase;
  color:var(--color-cta-hover);
  margin-bottom:4px;
}
.compliance-card-top h3{font-size:16.5px;line-height:1.28em;}
.compliance-card-desc{
  font-size:12.5px;
  color:rgba(15,26,21,0.75);
  line-height:1.55em;
  margin-bottom:16px;
}
.compliance-card-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  border-top:1px solid var(--color-border);
  padding-top:14px;
}
.compliance-card-split h5{
  font-family:var(--font-primary);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--color-accent);
  margin-bottom:8px;
}
.compliance-card-split ul{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.compliance-card-split li{
  font-size:11.5px;
  color:rgba(15,26,21,0.75);
  line-height:1.4em;
  padding-left:13px;
  position:relative;
}
.compliance-card-split li::before{
  content:'';
  position:absolute;
  left:0;
  top:6px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--color-cta);
}
@media (max-width:1080px){
  .compliance-cards{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .compliance-cards{grid-template-columns:1fr;}
  .compliance-card-split{grid-template-columns:1fr;gap:12px;}
}
/* =========================================================
   INSIGHTS PAGE — THREAT INTEL, DEADLINES, NEWS, EXPLORER
   ========================================================= */

.threat-note{
  margin-top:28px;
  font-size:13px;
  color:rgba(15,26,21,0.55);
}

/* ---------- THREAT INTEL ---------- */
.threat-intel{background:#ffffff;}
.threat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.threat-card{
  background:var(--color-bg-light);
  border-radius:14px;
  padding:26px 24px;
  border:1px solid var(--color-border);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.threat-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 38px rgba(6,78,59,0.12);
  background:#ffffff;
  border-color:var(--color-cta);
}
.threat-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.threat-sev{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.04em;
  padding:5px 11px;
  border-radius:999px;
  white-space:nowrap;
}
.threat-sev.critical{background:rgba(220,38,38,0.12);color:#b91c1c;}
.threat-sev.high{background:rgba(217,119,6,0.14);color:#b45309;}
.threat-sev.medium{background:rgba(6,78,59,0.1);color:var(--color-accent);}
.threat-date{font-size:11.5px;color:rgba(15,26,21,0.45);white-space:nowrap;}
.threat-card h4{font-size:16.5px;line-height:1.3em;margin-bottom:10px;}
.threat-card p{font-size:13.5px;color:rgba(15,26,21,0.72);line-height:1.55em;margin-bottom:16px;}
.threat-tags{display:flex;flex-wrap:wrap;gap:8px;}
.threat-tags span{
  font-size:11px;
  font-weight:600;
  color:var(--color-accent);
  background:var(--color-icon-bg);
  border-radius:999px;
  padding:5px 11px;
}

/* ---------- DEADLINES ---------- */
.deadlines-section{background:var(--color-bg-light);}
.deadline-timeline{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.deadline-card{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  align-items:center;
  background:#ffffff;
  border:1px solid var(--color-border);
  border-radius:14px;
  padding:24px 28px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.deadline-card:hover{
  transform:translateX(6px);
  box-shadow:0 16px 32px rgba(6,78,59,0.1);
  border-color:var(--color-cta);
}
.deadline-date{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--color-accent);
  color:#ffffff;
  border-radius:10px;
  padding:14px 10px;
  height:100%;
}
.deadline-month{
  font-family:var(--font-primary);
  font-size:14px;
  font-weight:700;
  letter-spacing:0.04em;
}
.deadline-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.deadline-tag.dpdp{background:rgba(6,78,59,0.1);color:var(--color-accent);}
.deadline-tag.iso{background:rgba(16,185,129,0.14);color:var(--color-cta-hover);}
.deadline-tag.audit{background:rgba(217,119,6,0.12);color:#b45309;}
.deadline-body h4{font-size:17px;margin-bottom:8px;}
.deadline-body p{font-size:14px;color:rgba(15,26,21,0.72);line-height:1.55em;}

/* ---------- NEWS ---------- */
.news-section{background:#ffffff;}
.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.news-card{
  background:var(--color-bg-light);
  border-radius:14px;
  padding:26px 24px;
  border:1px solid var(--color-border);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 38px rgba(6,78,59,0.1);
  background:#ffffff;
  border-color:var(--color-cta);
}
.news-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--color-cta-hover);
  margin-bottom:12px;
}
.news-card h4{font-size:16.5px;line-height:1.32em;margin-bottom:10px;}
.news-card p{font-size:13.5px;color:rgba(15,26,21,0.72);line-height:1.55em;margin-bottom:14px;}
.news-source{
  font-size:11.5px;
  font-weight:600;
  color:rgba(15,26,21,0.45);
  border-top:1px solid var(--color-border);
  display:block;
  padding-top:12px;
}

/* ---------- INSIGHT EXPLORER (Frameworks, field notes & findings) ---------- */
.insight-explorer{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:24px;
  align-items:start;
}
.insight-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.insight-item{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  text-align:left;
  padding:18px 20px;
  border-radius:12px;
  border:1px solid var(--color-border);
  background:var(--color-bg-light);
  cursor:pointer;
  font-family:inherit;
  transition:background .25s ease, border-color .25s ease, transform .2s ease;
}
.insight-item:hover{transform:translateX(4px);}
.insight-item-tag{
  flex-shrink:0;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--color-cta-hover);
  background:var(--color-icon-bg);
  padding:5px 10px;
  border-radius:999px;
}
.insight-item span:not(.insight-item-tag){
  flex:1;
  font-size:14.5px;
  font-weight:600;
  color:var(--color-text);
  line-height:1.35em;
}
.insight-item svg{
  width:16px;height:16px;
  flex-shrink:0;
  color:var(--color-accent);
  opacity:0;
  transform:translateX(-4px);
  transition:opacity .25s ease, transform .25s ease;
}
.insight-item.active{
  background:var(--color-accent);
  border-color:var(--color-accent);
}
.insight-item.active .insight-item-tag{background:rgba(255,255,255,0.18);color:#ffffff;}
.insight-item.active span:not(.insight-item-tag){color:#ffffff;}
.insight-item.active svg{opacity:1;transform:translateX(0);color:#ffffff;}

.insight-panel{
  background:var(--color-bg-light);
  border-radius:18px;
  padding:40px;
  min-height:420px;
  box-shadow:0 12px 30px rgba(15,26,21,0.05);
}
.insight-panel-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--color-cta-hover);
  margin-bottom:14px;
}
.insight-panel h3{font-size:26px;line-height:1.25em;margin-bottom:16px;}
.insight-panel-intro{
  font-size:15px;
  color:rgba(15,26,21,0.75);
  line-height:1.65em;
  margin-bottom:26px;
  max-width:640px;
}
.insight-panel-points{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:28px;
}
.insight-panel-points li{
  border-top:1px solid var(--color-border);
  padding-top:16px;
}
.insight-panel-points li:first-child{border-top:none;padding-top:0;}
.insight-panel-points h5{
  font-size:14.5px;
  font-weight:700;
  color:var(--color-accent);
  margin-bottom:6px;
}
.insight-panel-points p{
  font-size:14px;
  color:rgba(15,26,21,0.72);
  line-height:1.55em;
}
.insight-panel-takeaway{
  background:#ffffff;
  border-left:3px solid var(--color-cta);
  border-radius:8px;
  padding:16px 20px;
  font-size:14px;
  color:rgba(15,26,21,0.8);
  line-height:1.55em;
  margin-bottom:26px;
}
.insight-panel-takeaway strong{color:var(--color-accent);}

@media (max-width:920px){
  .threat-grid, .news-grid{grid-template-columns:1fr;}
  .deadline-card{grid-template-columns:1fr;}
  .deadline-date{width:fit-content;padding:8px 16px;}
  .insight-explorer{grid-template-columns:1fr;}
}