/* ============================================================
   OziCyber Custom Styles — applies to all pages
   ============================================================ */

/* ── Scroll reveal ─────────────────────────────────────── */
.ozi-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.ozi-reveal.ozi-visible { opacity: 1; transform: translateY(0); }

/* ── Typed cursor ───────────────────────────────────────── */
.typed-cursor { display: inline-block; color: #fff1aa; font-weight: 200; }
@keyframes cursor-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Hero canvas / shader ───────────────────────────────── */
.section-hero { position: relative; overflow: hidden; }
#hero-canvas, #hero-shader {
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  pointer-events:none;
}
#hero-shader { z-index:0; opacity:.55; }
#hero-canvas { z-index:1; }
.section-hero .padding-global.z-index-2 { position:relative; z-index:3; }
.section-hero::before {
  content:''; position:absolute; top:-20%; right:-5%;
  width:55%; height:140%;
  background:radial-gradient(ellipse,rgba(255,241,170,.06) 0%,transparent 65%);
  pointer-events:none; z-index:2;
}
.section-hero::after {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,241,170,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,241,170,.04) 1px,transparent 1px);
  background-size:48px 48px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 0%,black 40%,transparent 100%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 0%,black 40%,transparent 100%);
  pointer-events:none; z-index:2;
}

/* ── Hero eyebrow badge ─────────────────────────────────── */
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.68rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:#fff1aa;
  background:rgba(255,241,170,.07);
  border:1px solid rgba(255,241,170,.2);
  border-radius:999px; padding:.35rem .85rem;
  margin-bottom:1.25rem;
}
.hero-eyebrow-dot {
  width:6px; height:6px; border-radius:50%;
  background:#fff1aa; box-shadow:0 0 8px rgba(255,241,170,.8);
  flex-shrink:0; animation:dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%,100%{opacity:1;box-shadow:0 0 8px rgba(255,241,170,.8)}
  50%{opacity:.4;box-shadow:0 0 3px rgba(255,241,170,.3)}
}

/* ── Stats bar ──────────────────────────────────────────── */
.stats-bar_component { display:flex; flex-wrap:wrap; border-top:1px solid rgba(255,241,170,.15); }
.stats-bar_item {
  flex:1 1 25%; min-width:160px; padding:1.75rem 1.5rem;
  text-align:center; border-right:1px solid rgba(255,241,170,.15);
  transition:background .2s;
}
.stats-bar_item:last-child { border-right:none; }
.stats-bar_item:hover { background:rgba(255,241,170,.05); }
.stats-bar_number {
  font-size:2rem; font-weight:700; color:#fff1aa; line-height:1;
  margin-bottom:.4rem; text-shadow:0 0 28px rgba(255,241,170,.45);
}
.stats-bar_label {
  font-size:.7rem; color:rgba(255,255,255,.6); font-weight:600;
  text-transform:uppercase; letter-spacing:.1em;
}
@media(max-width:767px){
  .stats-bar_item{flex:1 1 50%;}
  .stats-bar_item:nth-child(2){border-right:none;}
}
@media(max-width:479px){
  .stats-bar_item{flex:1 1 100%;border-right:none;border-bottom:1px solid rgba(255,241,170,.12);}
  .stats-bar_item:last-child{border-bottom:none;}
}

/* ── Marquee ticker ─────────────────────────────────────── */
.section-marquee {
  background:rgba(0,0,0,.25);
  border-top:1px solid rgba(255,241,170,.1);
  border-bottom:1px solid rgba(255,241,170,.1);
  overflow:hidden; padding:.85rem 0;
}
.marquee-wrapper { overflow:hidden; position:relative; }
.marquee-wrapper::before,.marquee-wrapper::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none;
}
.marquee-wrapper::before { left:0; background:linear-gradient(to right,rgba(13,40,28,.95),transparent); }
.marquee-wrapper::after  { right:0; background:linear-gradient(to left,rgba(13,40,28,.95),transparent); }
.marquee-track {
  display:inline-flex; align-items:center; white-space:nowrap;
  animation:marquee-scroll 35s linear infinite; will-change:transform;
}
.mx-item {
  font-size:.78rem; font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; color:rgba(255,255,255,.5); padding:0 1rem;
  transition:color .2s;
}
.mx-item:hover { color:#fff1aa; }
.mx-dot { color:rgba(255,241,170,.3); font-size:1rem; }
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Why OziCyber cards ─────────────────────────────────── */
.why_grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-top:3rem;
}
.why_card {
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,241,170,.14); border-radius:10px;
  padding:1.75rem; display:flex; gap:1.25rem; align-items:flex-start;
  transition:border-color .3s,box-shadow .3s,transform .35s;
}
.why_card:hover {
  background:rgba(255,255,255,.07);
  border-color:rgba(255,241,170,.38);
  box-shadow:0 0 0 1px rgba(255,241,170,.15),0 12px 48px rgba(0,0,0,.4),inset 0 1px 0 rgba(255,241,170,.08);
  transform:translateY(-4px);
}
.why_card-icon-wrap { flex-shrink:0; }
.why_card-title { font-size:1rem; font-weight:700; color:#fff1aa; margin-bottom:.5rem; line-height:1.3; }
.why_card-text  { font-size:.9rem; color:rgba(255,255,255,.72); line-height:1.7; margin:0; }
@media(max-width:767px){ .why_grid{grid-template-columns:1fr;} }

/* ── Pentest capabilities grid ──────────────────────────── */
.section-pentest-caps { background:#091a10; border-top:1px solid rgba(255,241,170,.06); }
.pentest-header { margin-bottom:2.5rem; }
.pentest-label {
  font-size:.68rem; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:rgba(255,241,170,.45); margin:0 0 .75rem;
}
.pentest-heading { font-size:clamp(1.8rem,3vw,2.6rem); font-weight:700; color:#fff; margin:0 0 .75rem; line-height:1.15; }
.pentest-subheading { color:rgba(255,255,255,.45); font-size:.95rem; line-height:1.65; max-width:580px; margin:0; }
.pentest-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.07);
  border-radius:14px; overflow:hidden;
}
.pentest-card { background:#0d2118; position:relative; overflow:hidden; transition:background .25s; }
.pentest-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,241,170,.04) 0%,transparent 55%);
  opacity:0; transition:opacity .3s; pointer-events:none;
}
.pentest-card::after {
  content:''; position:absolute; top:0; left:0; width:14px; height:14px;
  border-top:1.5px solid rgba(255,241,170,.7); border-left:1.5px solid rgba(255,241,170,.7);
  opacity:0; transition:opacity .25s; pointer-events:none;
}
.pentest-card:hover { background:#0f2b1d; }
.pentest-card:hover::before { opacity:1; }
.pentest-card:hover::after  { opacity:1; }
.pentest-card-inner { padding:1.6rem 1.5rem; display:flex; flex-direction:column; }
.pentest-card-icon {
  width:2.25rem; height:2.25rem; display:flex; align-items:center; justify-content:center;
  background:rgba(255,241,170,.06); border:1px solid rgba(255,241,170,.1);
  border-radius:7px; margin-bottom:1.1rem; flex-shrink:0;
  transition:background .25s,border-color .25s;
}
.pentest-card:hover .pentest-card-icon { background:rgba(255,241,170,.1); border-color:rgba(255,241,170,.28); }
.pentest-card-icon img { filter:brightness(0) invert(1); opacity:.6; transition:opacity .25s; width:20px; height:20px; }
.pentest-card:hover .pentest-card-icon img { opacity:.9; }
.pentest-card-title { font-size:.9rem; font-weight:700; color:#fff; margin:0 0 .55rem; line-height:1.3; }
.pentest-card-desc  { font-size:.8rem; color:rgba(255,255,255,.42); line-height:1.65; margin:0; transition:color .25s; }
.pentest-card:hover .pentest-card-desc { color:rgba(255,255,255,.62); }
.pentest-footer { margin-top:2.25rem; display:flex; justify-content:center; }
@media(max-width:991px){ .pentest-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:479px){ .pentest-grid{grid-template-columns:1fr;} .pentest-card-inner{padding:1.35rem 1.25rem;} }

/* ── Service page ozi-* sections ────────────────────────── */
.background-color-gray-800 { background:#0b1e13 !important; }
.background-color-gray-800 h2 { color:#fff !important; }
.background-color-gray-800 p,
.background-color-gray-800 .text-color-gray-200 { color:rgba(255,255,255,.6) !important; }
.background-color-gray-800 .heading-style-h3 { color:#fff !important; }

/* Feature layout */
.feature-1_component {
  display:grid; grid-template-columns:1fr 1.6fr; gap:3rem; align-items:start;
}
.feature-1_content-left h2.heading-style-h3 {
  font-size:clamp(1.5rem,2.5vw,2.1rem) !important;
  font-weight:700; line-height:1.2; color:#fff !important;
}
@media(max-width:767px){ .feature-1_component{grid-template-columns:1fr;gap:1.5rem;} }

/* Checklist */
.ozi-check-list { display:flex; flex-direction:column; gap:.65rem; }
.ozi-check-list > div {
  display:flex; align-items:flex-start; gap:.75rem;
  font-size:.9rem; color:rgba(255,255,255,.75); line-height:1.5;
}
.ozi-check-list > div span {
  display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; min-width:18px; margin-top:.15rem;
  background:rgba(255,241,170,.12); border:1px solid rgba(255,241,170,.3);
  border-radius:50%;
}
.ozi-check-list > div span::after {
  content:''; display:block; width:5px; height:8px;
  border-right:1.5px solid #fff1aa; border-bottom:1.5px solid #fff1aa;
  transform:rotate(45deg) translate(-1px,-1px);
}

/* Pill row */
.ozi-pill-row { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.25rem; }
.ozi-pill-row span {
  font-size:.72rem; font-weight:600; letter-spacing:.05em;
  text-transform:uppercase; padding:.3rem .75rem;
  background:rgba(255,241,170,.08); border:1px solid rgba(255,241,170,.15);
  border-radius:999px; color:rgba(255,255,255,.7);
  transition:background .2s,color .2s;
}
.ozi-pill-row span:hover { background:rgba(255,241,170,.15); color:#fff1aa; }

/* Metric grid */
.ozi-metric-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; margin-bottom:1.25rem;
}
.ozi-metric-grid > div {
  background:rgba(255,241,170,.05); border:1px solid rgba(255,241,170,.12);
  border-radius:8px; padding:1rem 1.25rem; text-align:center;
}
.ozi-metric-grid > div strong {
  display:block; font-size:1rem; font-weight:700; color:#fff1aa; line-height:1.3;
}

/* Content card grid — light background sections */
.ozi-content-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:rgba(26,60,46,.08); border:1px solid rgba(26,60,46,.08);
  border-radius:12px; overflow:hidden;
}
/* 4 cards -> 2x2, avoids orphaned lone card on second row */
.ozi-content-grid:has(> article:nth-child(4)) {
  grid-template-columns:repeat(2,1fr);
}
.ozi-content-card {
  background:#fff; padding:1.6rem 1.5rem; position:relative;
  transition:background .25s;
}
.ozi-content-card::after {
  content:''; position:absolute; top:0; left:0; width:12px; height:12px;
  border-top:1.5px solid rgba(26,60,46,.4); border-left:1.5px solid rgba(26,60,46,.4);
  opacity:0; transition:opacity .25s; pointer-events:none;
}
.ozi-content-card:hover { background:#f8faf8; }
.ozi-content-card:hover::after { opacity:1; }
.ozi-content-card h3.heading-style-h5 {
  font-size:.92rem !important; font-weight:700 !important;
  color:#0d2118 !important; margin:0 0 .55rem !important; line-height:1.3;
}
.ozi-content-card p {
  font-size:.83rem; color:#4a5c54; line-height:1.65; margin:0;
}
.ozi-text-link {
  display:inline-flex; align-items:center; gap:.35rem;
  font-size:.78rem; font-weight:700; color:#0d6b3c;
  text-decoration:none; margin-top:.85rem;
  transition:gap .2s,color .2s;
}
.ozi-text-link:hover { gap:.55rem; color:#0a4f2e; }
.ozi-text-link::after { content:'→'; font-size:.85rem; }
/* Dark bg variant */
.background-color-gray-800 .ozi-content-grid {
  background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.05);
}
.background-color-gray-800 .ozi-content-card { background:rgba(255,255,255,.03); }
.background-color-gray-800 .ozi-content-card:hover { background:rgba(255,255,255,.06); }
.background-color-gray-800 .ozi-content-card::after {
  border-color:rgba(255,241,170,.5);
}
.background-color-gray-800 .ozi-content-card h3.heading-style-h5 { color:#fff !important; }
.background-color-gray-800 .ozi-content-card p { color:rgba(255,255,255,.55) !important; }
@media(max-width:767px){ .ozi-content-grid{grid-template-columns:1fr;} }
@media(min-width:768px) and (max-width:991px){ .ozi-content-grid{grid-template-columns:repeat(2,1fr);} }

/* Syllabus grid */
.ozi-syllabus-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1rem;
}
.ozi-syllabus-card {
  background:#fff; border:1px solid rgba(26,60,46,.1);
  border-radius:8px; padding:1.1rem; transition:border-color .2s,box-shadow .2s;
}
.ozi-syllabus-card:hover {
  border-color:rgba(26,60,46,.25);
  box-shadow:0 4px 20px rgba(26,60,46,.08);
}
.ozi-syllabus-card > div { font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#0d6b3c; margin-bottom:.35rem; }
.ozi-syllabus-card h3 { font-size:.85rem; font-weight:700; color:#0d2118; margin:0 0 .4rem; }
.ozi-syllabus-card p  { font-size:.75rem; color:#5a6e66; line-height:1.5; margin:0; }
@media(max-width:991px){ .ozi-syllabus-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:479px){ .ozi-syllabus-grid{grid-template-columns:1fr;} }

/* ── Pricing pages ──────────────────────────────────────── */
.pricing-header { margin-bottom:2.5rem; }
.pricing-header h2 { margin-bottom:.5rem; }

.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; align-items:start;
}

.pricing-card {
  background:#fff;
  border:1px solid rgba(26,60,46,.12);
  border-radius:14px;
  padding:2rem;
  display:flex; flex-direction:column; gap:1.5rem;
  position:relative;
  transition:box-shadow .25s,border-color .25s;
}
.pricing-card:hover {
  box-shadow:0 8px 40px rgba(26,60,46,.09);
  border-color:rgba(26,60,46,.2);
}
.pricing-card--featured {
  border-color:#0d6b3c;
  border-width:1.5px;
  box-shadow:0 8px 40px rgba(13,107,60,.12);
}
.pricing-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  font-size:.68rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  background:#0d2118; color:#fff1aa;
  padding:.3rem .9rem; border-radius:999px; white-space:nowrap;
}

.pricing-card-top { display:flex; flex-direction:column; gap:.5rem; }
.pricing-plan { font-size:1rem; font-weight:700; color:#0d2118; margin:0; }
.pricing-desc { font-size:.83rem; color:#5a6e66; line-height:1.55; margin:0; }

.pricing-amount { padding:.75rem 0; border-top:1px solid rgba(26,60,46,.07); border-bottom:1px solid rgba(26,60,46,.07); }
.pricing-price { font-size:2.2rem; font-weight:800; color:#0d2118; line-height:1; }
.pricing-period { font-size:.85rem; color:#5a6e66; }
.pricing-note { font-size:.72rem; color:#8aa09a; margin-top:.3rem; letter-spacing:.03em; }

.pricing-features {
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:.6rem; flex:1;
}
.pricing-features li {
  display:flex; align-items:flex-start; gap:.6rem;
  font-size:.84rem; color:#3d5048; line-height:1.45;
}
.pricing-check {
  width:16px; height:16px; flex-shrink:0; margin-top:.1rem;
  color:#0d6b3c;
}

.pricing-footer-note {
  text-align:center; margin-top:2rem;
  font-size:.82rem; color:#8aa09a;
}

@media(max-width:767px){ .pricing-grid{grid-template-columns:1fr;} }
@media(min-width:768px) and (max-width:991px){ .pricing-grid{grid-template-columns:1fr;gap:1rem;} }

/* Brochure form */
.ozi-brochure-form { display:flex; flex-direction:column; gap:.75rem; }
.ozi-brochure-form .form-input {
  background:rgba(255,255,255,.06) !important; border:1px solid rgba(255,255,255,.15) !important;
  color:#fff !important; border-radius:6px !important; padding:.75rem 1rem !important;
}
.ozi-brochure-form .form-input::placeholder { color:rgba(255,255,255,.35) !important; }
.ozi-brochure-form textarea { min-height:90px; resize:vertical; }

/* Services benifits heading wrapper */
.services-benifits_heading-wrapper { margin-bottom:2rem; }
.services-benifits_heading-wrapper h2 { margin-bottom:.5rem; }

/* ── Service / Why cards — light bg sections ────────────── */
.services_item {
  transition:transform .28s ease,box-shadow .28s ease !important;
  border-radius:10px !important;
}
.services_item:hover {
  transform:translateY(-7px) !important;
  box-shadow:0 20px 60px rgba(26,60,46,.14) !important;
}

/* ── CTA button pulse ───────────────────────────────────── */
@keyframes ozi-pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(255,241,170,.4)}
  60%{box-shadow:0 0 0 12px rgba(255,241,170,0)}
}
.section-cta .button.is-alternate { animation:ozi-pulse 2.8s ease-in-out infinite; }

/* ── Glitch heading ─────────────────────────────────────── */
.glitch-text { position:relative; }
@keyframes glitch-1 {
  0%,96%,100%{clip-path:none;transform:none}
  97%{clip-path:polygon(0 15%,100% 15%,100% 40%,0 40%);transform:translate(-2px,1px)}
  98%{clip-path:polygon(0 60%,100% 60%,100% 80%,0 80%);transform:translate(2px,-1px)}
}
@keyframes glitch-2 {
  0%,95%,100%{clip-path:none;transform:none;color:transparent}
  96%{clip-path:polygon(0 25%,100% 25%,100% 55%,0 55%);transform:translate(3px,-2px);color:rgba(255,241,170,.55)}
  97%{clip-path:none;transform:none;color:transparent}
}
.glitch-text::before,.glitch-text::after {
  content:attr(data-text); position:absolute; left:0; top:0; width:100%; pointer-events:none;
}
.glitch-text::before{color:#fff1aa;animation:glitch-1 7s infinite;}
.glitch-text::after{color:rgba(255,241,170,.5);animation:glitch-2 7s infinite;animation-delay:.04s;}

/* ── Section-why layout ─────────────────────────────────── */
.section-why .margin-bottom.margin-large { max-width:700px; }

/* ── About page ─────────────────────────────────────────── */
.ozi-about-page { background:#fff; }
.ozi-about-container {
  max-width:1080px; margin:0 auto;
  padding:4rem 2rem;
  display:flex; flex-direction:column; gap:5rem;
}
.ozi-about-intro { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; }
.ozi-about-intro h1 {
  font-size:clamp(1.6rem,2.5vw,2.1rem); font-weight:700; color:#0d2118;
  margin:0 0 1.5rem; line-height:1.2;
}
.ozi-about-copy p { font-size:.95rem; color:#3d5048; line-height:1.75; margin-bottom:1rem; }
.ozi-about-copy p:last-child { margin-bottom:0; }

/* Section label */
.ozi-section-label {
  font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:#0d6b3c; margin-bottom:.75rem; display:block;
}

/* Founder profile */
.ozi-founder-profile {
  display:grid; grid-template-columns:280px 1fr; gap:3.5rem;
  align-items:start; background:#0d2118; border-radius:16px; overflow:hidden;
  padding:0;
}
.ozi-founder-image-wrap {
  height:100%; min-height:320px; overflow:hidden;
  background:rgba(255,255,255,.05);
}
.ozi-founder-image { width:100%; height:100%; object-fit:cover; display:block; }
.ozi-founder-content {
  padding:2.5rem 2.5rem 2.5rem 0;
  display:flex; flex-direction:column; justify-content:center;
}
.ozi-founder-content h2 {
  font-size:clamp(1.2rem,2vw,1.6rem); font-weight:700; color:#fff;
  margin:0 0 1rem; line-height:1.3;
}
.ozi-founder-content > p { font-size:.9rem; color:rgba(255,255,255,.65); line-height:1.7; margin:0 0 1.5rem; }
.ozi-founder-content h3 { font-size:1rem; font-weight:700; color:#fff1aa; margin:0 0 .25rem; }
.ozi-founder-role { font-size:.8rem !important; color:rgba(255,255,255,.45) !important; letter-spacing:.04em; margin:0 !important; }

/* Accreditations */
.ozi-about-accreditations {}
.ozi-about-accreditations h2 {
  font-size:1.4rem; font-weight:700; color:#0d2118; margin:0 0 1rem;
}
.ozi-accreditation-logos {
  display:flex; flex-wrap:wrap; align-items:center; gap:1.5rem; margin-bottom:1.5rem;
}
.ozi-accreditation-logos img {
  height:64px; width:auto; object-fit:contain; filter:grayscale(.3);
  transition:filter .2s; opacity:.85;
}
.ozi-accreditation-logos img:hover { filter:none; opacity:1; }
.ozi-about-accreditations > p { font-size:.88rem; color:#4a5c54; line-height:1.7; max-width:640px; }

@media(max-width:767px){
  .ozi-about-intro { grid-template-columns:1fr; gap:2rem; }
  .ozi-founder-profile { grid-template-columns:1fr; }
  .ozi-founder-image-wrap { min-height:220px; }
  .ozi-founder-content { padding:1.75rem; }
}

/* ── Contact page ───────────────────────────────────────── */
.section-contact-hero {
  background:#0d2118; padding:5rem 0 4rem;
  position:relative; overflow:hidden;
}
.section-contact-hero::before {
  content:''; position:absolute; top:-30%; right:-10%;
  width:60%; height:160%;
  background:radial-gradient(ellipse,rgba(255,241,170,.05) 0%,transparent 65%);
  pointer-events:none;
}
.contact-hero-inner { position:relative; z-index:1; }
.contact-hero-label {
  font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:rgba(255,241,170,.5); display:block; margin-bottom:.75rem;
}
.contact-hero-heading { font-size:clamp(1.8rem,3vw,2.8rem); font-weight:700; color:#fff; margin:0 0 1rem; line-height:1.15; }
.contact-hero-sub { font-size:1rem; color:rgba(255,255,255,.55); max-width:480px; line-height:1.65; margin:0; }


.contact-form-section { padding:3rem 0; }
.contact-form-section h2 { font-size:1.3rem; font-weight:700; color:#0d2118; margin:0 0 1.5rem; }
.contact_form { display:flex; flex-direction:column; gap:1rem; }
.contact_form .form-field-wrapper { display:flex; flex-direction:column; gap:.4rem; }
.contact_form .form-input, .contact_form textarea {
  width:100%; background:#f8faf8 !important; border:1.5px solid rgba(26,60,46,.12) !important;
  border-radius:8px !important; padding:.75rem 1rem !important; font-size:.9rem !important;
  color:#0d2118 !important; transition:border-color .2s !important;
}
.contact_form .form-input:focus, .contact_form textarea:focus {
  outline:none !important; border-color:rgba(26,60,46,.4) !important;
}
.contact_form textarea { min-height:110px; resize:vertical; }

.contact-info-panel {
  padding:3rem 2.5rem; background:#0d2118; border-radius:14px;
  align-self:start; margin-top:3rem;
}
.contact-info-panel h3 { font-size:1.1rem; font-weight:700; color:#fff; margin:0 0 1.5rem; }
.contact-info-item { display:flex; align-items:center; gap:.9rem; margin-bottom:1.1rem; }
.contact-info-item-icon {
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,241,170,.08); border:1px solid rgba(255,241,170,.15);
  border-radius:8px; flex-shrink:0; color:#fff1aa; font-size:.9rem;
}
.contact-info-item-text strong { display:block; font-size:.85rem; color:#fff; margin-bottom:.15rem; }
.contact-info-item-text span { font-size:.82rem; color:rgba(255,255,255,.55); }

/* FAQ section */
.section-faq { padding:4rem 0; }
.faq-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; margin-top:2.5rem; }
.faq-item { padding:1.5rem; background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:10px; }
.faq-item h3 { font-size:.92rem; font-weight:700; color:#0d2118; margin:0 0 .6rem; }
.faq-item p  { font-size:.85rem; color:#4a5c54; line-height:1.65; margin:0; }
@media(max-width:767px){ .contact-split{grid-template-columns:1fr;} .faq-grid{grid-template-columns:1fr;} }

/* ── News / insights page ───────────────────────────────── */
.section-news-hero { background:#0d2118; padding:5rem 0 4rem; position:relative; overflow:hidden; }
.section-news-hero::before {
  content:''; position:absolute; top:-20%; right:-5%; width:55%; height:140%;
  background:radial-gradient(ellipse,rgba(255,241,170,.05) 0%,transparent 65%); pointer-events:none;
}
.news-hero-inner { position:relative; z-index:1; }
.news-hero-label { font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,241,170,.5); display:block; margin-bottom:.75rem; }
.news-hero-heading { font-size:clamp(1.8rem,3vw,2.6rem); font-weight:700; color:#fff; margin:0 0 1rem; }
.news-hero-sub { font-size:1rem; color:rgba(255,255,255,.5); max-width:480px; line-height:1.65; margin:0; }

/* ── Responsive sub-service col cards ───────────────────── */
.column.w-col { transition:transform .25s ease,background .25s ease; border-radius:8px; padding:1.2rem 1rem; }
.column.w-col:hover { background:rgba(26,60,46,.05); transform:translateY(-5px); }
.column.w-col:hover h3.heading-2 { color:#0d6b3c; }

/* ── Penetration Testing — methodology steps ────────────── */
.pt-steps {
  display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
  background:rgba(26,60,46,.08); border:1px solid rgba(26,60,46,.08);
  border-radius:12px; overflow:hidden;
}
.pt-step {
  background:#fff; padding:1.75rem 1.35rem; position:relative; transition:background .25s;
}
.pt-step:hover { background:#f4faf6; }
.pt-step::after {
  content:''; position:absolute; top:0; left:0; width:12px; height:12px;
  border-top:1.5px solid rgba(13,107,60,.5); border-left:1.5px solid rgba(13,107,60,.5);
  opacity:0; transition:opacity .25s;
}
.pt-step:hover::after { opacity:1; }
.pt-step-num { font-size:2.2rem; font-weight:800; color:rgba(13,107,60,.1); line-height:1; margin-bottom:.75rem; }
.pt-step h3 { font-size:.88rem; font-weight:700; color:#0d2118; margin:0 0 .5rem; }
.pt-step p  { font-size:.8rem; color:#4a5c54; line-height:1.6; margin:0; }
@media(max-width:991px){ .pt-steps{grid-template-columns:repeat(3,1fr);} }
@media(max-width:479px){ .pt-steps{grid-template-columns:1fr;} }

/* ── Compliance & Risk — frameworks grid ────────────────── */
.cr-frameworks {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1rem;
}
.cr-framework-card {
  background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:10px;
  padding:1.5rem 1.35rem; transition:border-color .2s,box-shadow .2s,transform .25s;
}
.cr-framework-card:hover {
  border-color:rgba(13,107,60,.3); box-shadow:0 6px 24px rgba(26,60,46,.08); transform:translateY(-3px);
}
.cr-framework-name {
  font-size:.78rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  color:#0d6b3c; margin-bottom:.6rem; padding-bottom:.6rem; border-bottom:1px solid rgba(26,60,46,.08);
}
.cr-framework-card p { font-size:.83rem; color:#4a5c54; line-height:1.6; margin:0; }
@media(max-width:767px){ .cr-frameworks{grid-template-columns:repeat(2,1fr);} }
@media(max-width:479px){ .cr-frameworks{grid-template-columns:1fr;} }

/* ── Incident Response — timeline phases ────────────────── */
.ir-timeline {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.06);
  border-radius:12px; overflow:hidden;
}
.ir-phase {
  background:rgba(255,255,255,.03); padding:2rem 1.75rem;
  transition:background .25s; position:relative;
}
.ir-phase:hover { background:rgba(255,255,255,.06); }
.ir-phase::after {
  content:''; position:absolute; top:0; left:0; width:14px; height:14px;
  border-top:1.5px solid rgba(255,241,170,.7); border-left:1.5px solid rgba(255,241,170,.7);
  opacity:0; transition:opacity .25s;
}
.ir-phase:hover::after { opacity:1; }
.ir-phase-time {
  font-size:.65rem; font-weight:800; letter-spacing:.15em; text-transform:uppercase;
  color:#fff1aa; margin-bottom:.6rem; padding-bottom:.6rem; border-bottom:1px solid rgba(255,255,255,.07);
}
.ir-phase h3 { font-size:1.1rem; font-weight:700; color:#fff; margin:0 0 1rem; }
.ir-phase ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.45rem; }
.ir-phase li { font-size:.83rem; color:rgba(255,255,255,.55); line-height:1.45; padding-left:1rem; position:relative; }
.ir-phase li::before { content:"—"; position:absolute; left:0; color:rgba(255,241,170,.35); }
@media(max-width:767px){ .ir-timeline{grid-template-columns:1fr;} }

/* ── Training — delivery format cards ───────────────────── */
.tr-formats {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
}
.tr-format-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,241,170,.1);
  border-radius:12px; padding:2rem; transition:background .25s,border-color .25s;
}
.tr-format-card:hover { background:rgba(255,255,255,.07); border-color:rgba(255,241,170,.25); }
.tr-format-icon { font-size:1.75rem; margin-bottom:1rem; display:block; }
.tr-format-card h3 { font-size:1rem; font-weight:700; color:#fff; margin:0 0 .6rem; }
.tr-format-card > p { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.65; margin:0; }
.tr-format-card ul { list-style:none; padding:0; margin:1rem 0 0; display:flex; flex-direction:column; gap:.4rem; }
.tr-format-card li { font-size:.8rem; color:rgba(255,255,255,.45); }
.tr-format-card li::before { content:"→ "; color:#fff1aa; }
@media(max-width:767px){ .tr-formats{grid-template-columns:1fr;} }
h3.heading-2 { font-size:1.05rem; font-weight:700; color:#1a3c2e; margin:.7rem 0 .5rem; transition:color .2s; }

/* ── Product page shared ─────────────────────────────────── */
.product-feature-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem;
}
.product-feature-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,241,170,.1);
  border-radius:12px; padding:2rem; transition:background .25s,border-color .25s;
}
.product-feature-card:hover { background:rgba(255,255,255,.07); border-color:rgba(255,241,170,.25); }
.product-feature-card h3 { font-size:1rem; font-weight:700; color:#fff; margin:0 0 .75rem; }
.product-feature-card > p { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.65; margin:0 0 1rem; }
.product-feature-card ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.35rem; border-top:1px solid rgba(255,255,255,.07); padding-top:.85rem; }
.product-feature-card li { font-size:.78rem; color:rgba(255,255,255,.45); padding-left:1rem; position:relative; }
.product-feature-card li::before { content:"-> "; color:#fff1aa; position:absolute; left:0; }
@media(max-width:767px){ .product-feature-grid{grid-template-columns:1fr;} }

.product-problem-split { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; }
.product-problem-right { display:flex; flex-direction:column; gap:1rem; }
.product-problem-card { background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:10px; padding:1.35rem 1.5rem; border-left:3px solid #0d6b3c; }
.product-problem-card h3 { font-size:.9rem; font-weight:700; color:#0d2118; margin:0 0 .4rem; }
.product-problem-card p  { font-size:.83rem; color:#4a5c54; line-height:1.6; margin:0; }
@media(max-width:767px){ .product-problem-split{grid-template-columns:1fr;gap:2rem;} }

.product-demo-wrap { display:grid; grid-template-columns:1fr 1.4fr; gap:3.5rem; align-items:center; }
.product-demo-screen-wrap { position:relative; }
.product-demo-badge { position:absolute; bottom:-1rem; right:0; font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; background:rgba(255,241,170,.1); border:1px solid rgba(255,241,170,.2); color:#fff1aa; padding:.35rem .85rem; border-radius:999px; }
@media(max-width:767px){ .product-demo-wrap{grid-template-columns:1fr;gap:2rem;} }

.product-screen { background:#1a2e23; border-radius:10px; overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.08); }
.product-screen-bar { background:#0d1f15; padding:10px 16px; display:flex; align-items:center; gap:1rem; border-bottom:1px solid rgba(255,255,255,.06); }
.product-screen-dots { display:flex; gap:6px; }
.product-screen-dots span { width:10px; height:10px; border-radius:50%; }
.product-screen-dots span:nth-child(1){background:#ff5f57;}
.product-screen-dots span:nth-child(2){background:#febc2e;}
.product-screen-dots span:nth-child(3){background:#28c840;}
.product-screen-url { flex:1; background:rgba(255,255,255,.05); border-radius:4px; padding:4px 12px; font-size:11px; color:rgba(255,255,255,.3); font-family:monospace; }
.product-screen-body { display:flex; height:300px; }
.product-screen-nav { width:160px; background:rgba(0,0,0,.3); border-right:1px solid rgba(255,255,255,.06); padding:16px 12px; display:flex; flex-direction:column; gap:8px; }
.psn-item { height:10px; border-radius:4px; background:rgba(255,255,255,.07); }
.psn-item.active { background:rgba(255,241,170,.25); width:80%; }
.psn-item.sub { width:60%; opacity:.5; margin-left:12px; }
.product-screen-content { flex:1; padding:18px; display:flex; flex-direction:column; gap:12px; overflow:hidden; }
.psc-header { display:flex; justify-content:space-between; align-items:center; }
.psc-title { height:12px; width:160px; background:rgba(255,255,255,.12); border-radius:4px; }
.psc-btn { height:22px; width:72px; background:rgba(255,241,170,.18); border-radius:4px; }
.psc-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.psc-stat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); border-radius:6px; padding:10px 8px; }
.psc-stat-num { height:16px; width:44px; background:rgba(255,241,170,.2); border-radius:3px; margin-bottom:5px; }
.psc-stat-label { height:7px; width:70%; background:rgba(255,255,255,.07); border-radius:3px; }
.psc-table { display:flex; flex-direction:column; gap:5px; flex:1; }
.psc-row { height:28px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.05); border-radius:5px; display:flex; align-items:center; padding:0 10px; gap:10px; }
.psc-row.crit { border-left:2px solid #ef4444; }
.psc-row.high { border-left:2px solid #f97316; }
.psc-row.med  { border-left:2px solid #eab308; }
.psc-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.psc-line { height:7px; border-radius:3px; background:rgba(255,255,255,.09); }
.psc-line.lg { flex:1; }
.psc-line.sm { width:54px; }
.psc-line.xs { width:36px; }

.product-checks-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.product-checks-card { background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:10px; padding:1.5rem; transition:border-color .2s,box-shadow .2s; }
.product-checks-card:hover { border-color:rgba(13,107,60,.25); box-shadow:0 4px 20px rgba(26,60,46,.07); }
.product-checks-category { font-size:.75rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#0d6b3c; margin-bottom:.85rem; padding-bottom:.75rem; border-bottom:1px solid rgba(26,60,46,.08); }
.product-checks-card ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.4rem; }
.product-checks-card li { font-size:.78rem; color:#4a5c54; line-height:1.4; padding-left:.9rem; position:relative; }
.product-checks-card li::before { content:"·"; position:absolute; left:0; color:rgba(13,107,60,.5); }
@media(max-width:767px){ .product-checks-grid{grid-template-columns:1fr;} }
@media(min-width:768px) and (max-width:991px){ .product-checks-grid{grid-template-columns:repeat(2,1fr);} }

.product-modules-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.product-module-card { background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:12px; padding:1.75rem; transition:border-color .25s,box-shadow .25s,transform .25s; }
.product-module-card:hover { border-color:rgba(13,107,60,.3); box-shadow:0 8px 32px rgba(26,60,46,.08); transform:translateY(-4px); }
.product-module-icon { font-size:1.5rem; margin-bottom:1rem; display:block; }
.product-module-card h3 { font-size:.92rem; font-weight:700; color:#0d2118; margin:0 0 .55rem; }
.product-module-card > p { font-size:.82rem; color:#4a5c54; line-height:1.65; margin:0 0 .85rem; }
.product-module-card ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.3rem; border-top:1px solid rgba(26,60,46,.06); padding-top:.75rem; }
.product-module-card li { font-size:.76rem; color:#5a7065; }
.product-module-card li::before { content:"-> "; color:#0d6b3c; }
@media(max-width:991px){ .product-modules-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:479px){ .product-modules-grid{grid-template-columns:1fr;} }

.product-workflow { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.product-workflow-step { background:#fff; border:1px solid rgba(26,60,46,.1); border-radius:10px; padding:1.5rem; }
.product-workflow-num { font-size:2rem; font-weight:800; color:rgba(13,107,60,.1); line-height:1; margin-bottom:.75rem; }
.product-workflow-step h3 { font-size:.88rem; font-weight:700; color:#0d2118; margin:0 0 .5rem; }
.product-workflow-step p  { font-size:.8rem; color:#4a5c54; line-height:1.6; margin:0; }
@media(max-width:767px){ .product-workflow{grid-template-columns:1fr;} }
@media(min-width:768px) and (max-width:991px){ .product-workflow{grid-template-columns:repeat(2,1fr);} }

.product-integrations { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; }
.product-integration-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,241,170,.1); border-radius:10px; padding:1.25rem; text-align:center; transition:background .25s,border-color .25s; }
.product-integration-card:hover { background:rgba(255,255,255,.08); border-color:rgba(255,241,170,.25); }
.product-integration-icon { font-size:1.5rem; margin-bottom:.75rem; display:block; }
.product-integration-card h4 { font-size:.82rem; font-weight:700; color:#fff; margin:0 0 .4rem; }
.product-integration-card p  { font-size:.75rem; color:rgba(255,255,255,.45); line-height:1.55; margin:0; }
@media(max-width:991px){ .product-integrations{grid-template-columns:repeat(3,1fr);} }
@media(max-width:479px){ .product-integrations{grid-template-columns:1fr;} }



/* ── Contact page v3 ────────────────────────────────────── */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details-col { padding-top: .25rem; }

.contact-detail-list {
  display: flex; flex-direction: column;
  border: 1px solid rgba(26,60,46,.1);
  border-radius: 10px; overflow: hidden;
  margin-bottom: 1.5rem;
}
.contact-detail-row {
  display: flex; align-items: baseline;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid rgba(26,60,46,.08);
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #8aa09a;
  width: 90px; flex-shrink: 0;
}
.contact-detail-value {
  font-size: .88rem; color: #0d2118; font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
a.contact-detail-value:hover { color: #0d6b3c; }

.contact-incident-box {
  background: #0d2118; border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.contact-incident-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #fff1aa; margin-bottom: .5rem;
}
.contact-incident-box p {
  font-size: .85rem; color: rgba(255,255,255,.6);
  line-height: 1.6; margin: 0;
}

@media (max-width: 767px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
