
:root{
  --navy:#0F1C2E;
  --teal:#00B4A6;
  --bg:#F6F8FC;
  --text:#0b1220;
  --muted:#6B7280;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui;background:var(--bg);color:var(--text)}
.container{width:min(1120px,92vw);margin:0 auto}
.site-header{position: fixed;top:0;background:rgba(15,28,46,.92);padding:14px 0}
.nav{display:flex;justify-content:space-between;align-items:center}
.brand-logo{height:42px}
.menu a{color:white;text-decoration:none;margin-left:18px;font-weight:600}
.menu-cta{background:var(--teal);color:#05211f!important;padding:8px 14px;border-radius:8px}
.hero{position:relative;min-height:88vh;color:white}
.hero-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(90deg,rgba(15,28,46,.92),rgba(15,28,46,.72),rgba(15,28,46,.55)),
    url("assets/hero-bg.png");
  background-size:cover;background-position: 78% center
}
.hero-inner{position:relative;padding:120px 0}
.hero-copy{max-width:640px}
.hero h1{font-size:56px}
.teal{color:var(--teal)}
.hero-actions a{margin-right:12px}
.btn{display:inline-block;padding:12px 18px;border-radius:10px;font-weight:700;text-decoration:none}
.btn-primary{background:var(--teal);color:#05211f}
.btn-secondary{border:1px solid rgba(255,255,255,.4);color:white}
.trust-row span{margin-right:18px;font-weight:600;opacity:.85}
.section{padding:70px 0}
.section-title{text-align:center;font-size:34px}
.section-subtitle{text-align:center;color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}
.card{background:white;padding:24px;border-radius:14px}
.soft{background:#fff}
.split{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.panel{background:white;padding:28px;border-radius:14px}
.cta-band{background:linear-gradient(135deg,#0B1626,#0F1C2E);color:white;text-align:center;padding:70px 0}
.footer{background:#0B1626;color:white;padding:24px 0;text-align:center}
@media(max-width:900px){.cards{grid-template-columns:1fr 1fr}.split{grid-template-columns:1fr}}
@media(max-width:520px){.cards{grid-template-columns:1fr}}


.brand-logo{height:54px;width:auto;display:block;filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));}
.menu a{letter-spacing:.2px;}
.discipline-row{
  margin-top:22px;
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  align-items:center;
}
.discipline{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.86);
  text-decoration:none;
  font-weight:700;
  padding:8px 10px;
  border-radius:14px;
  transition: background .15s ease, color .15s ease;
}
.discipline:hover{
  background: rgba(255,255,255,.07);
  color:#fff;
}
.disc-ic{
  width:18px;height:18px;
  color: var(--teal);
  display:inline-flex;
}
.disc-ic svg{width:18px;height:18px;display:block}

.stats{
  background:#fff;
  padding:60px 0;
}
.stats-inner{
  display:flex;
  justify-content:space-around;
  text-align:center;
}
.stat strong{
  display:block;
  font-size:42px;
  color:var(--navy);
}
.stat span{
  color:var(--muted);
  font-weight:600;
}
.service-link{
  color:var(--teal);
  font-weight:700;
  text-decoration:none;
}
.service-link:hover{text-decoration:underline;}
@media(max-width:700px){
  .stats-inner{flex-direction:column; gap:24px;}
}

.counter{
  font-variant-numeric: tabular-nums;
  display:block;
}

/* Subtle themed animation elements */
.section{
  position:relative;
  overflow:hidden;
}
.section::before{
  content:"";
  position:absolute;
  left:-20%;
  top:-40%;
  width:520px;
  height:520px;
  background: radial-gradient(circle at 30% 30%, rgba(0,180,166,.18), rgba(0,180,166,0) 60%);
  animation: floatGlow 10s ease-in-out infinite;
  pointer-events:none;
  opacity:.9;
}
.section::after{
  content:"";
  position:absolute;
  right:-18%;
  bottom:-50%;
  width:620px;
  height:620px;
  background: radial-gradient(circle at 70% 70%, rgba(15,28,46,.12), rgba(15,28,46,0) 60%);
  animation: floatGlow2 12s ease-in-out infinite;
  pointer-events:none;
  opacity:.9;
}
@keyframes floatGlow{
  0%,100%{transform: translate(0,0) scale(1);}
  50%{transform: translate(22px,18px) scale(1.05);}
}
@keyframes floatGlow2{
  0%,100%{transform: translate(0,0) scale(1);}
  50%{transform: translate(-20px,-16px) scale(1.04);}
}
.card, .panel{position:relative; z-index:1;}
.card::before, .panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:14px;
  background: linear-gradient(120deg, rgba(0,180,166,.28), rgba(0,180,166,0) 40%, rgba(15,28,46,.12) 80%, rgba(15,28,46,0));
  opacity:0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.card:hover::before, .panel:hover::before{opacity:1;}

/* Projects section */
.projects .project-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
  margin-top:34px;
  position:relative;
  z-index:1;
}
.project-card{
  display:block;
  text-decoration:none;
  color:var(--text);
  background:white;
  border-radius:14px;
  padding:22px;
  box-shadow: 0 10px 26px rgba(15,28,46,.10);
  border: 1px solid rgba(15,28,46,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  position:relative;
  overflow:hidden;
}
.project-card::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, rgba(0,180,166,0), rgba(0,180,166,.18), rgba(0,180,166,0));
  transform: rotate(18deg) translateX(-40%);
  transition: transform .5s ease;
  opacity:.55;
}
.project-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(15,28,46,.14);
}
.project-card:hover::after{transform: rotate(18deg) translateX(35%);}
.project-tag{
  display:inline-block;
  background: rgba(0,180,166,.12);
  color: var(--navy);
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}
.project-title{margin-top:12px;font-weight:900;font-size:18px;}
.project-meta{margin-top:6px;color:var(--muted);font-weight:600;font-size:13px;}
.projects-cta{margin-top:22px;text-align:center; position:relative; z-index:1;}
@media(max-width:900px){.projects .project-grid{grid-template-columns: 1fr 1fr;}}
@media(max-width:520px){.projects .project-grid{grid-template-columns: 1fr;}}

.menu a.active{background:rgba(255,255,255,.08); border-radius:12px;}

/* Bigger animated stats numbers */
.stat strong,
.counter{
  font-size:56px;
  font-weight:900;
}

/* Dark themed middle sections */
.section{
  background: linear-gradient(180deg, rgba(15,28,46,.92), rgba(15,28,46,.85));
  color:white;
}
.section .section-subtitle,
.section p,
.section li,
.section span{
  color: rgba(255,255,255,.82);
}
.card, .panel{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

/* Promo popup */
.promo-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.promo-modal{
  background:#0F1C2E;
  color:white;
  padding:32px;
  border-radius:16px;
  max-width:420px;
  width:90%;
  position:relative;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.promo-modal h3{font-size:26px;margin-top:0}
.promo-form{
  margin-top:18px;
  display:flex;
  gap:10px;
}
.promo-form input{
  flex:1;
  padding:12px;
  border-radius:10px;
  border:none;
}
.promo-form button{
  padding:12px 18px;
  border-radius:10px;
  background:#00B4A6;
  border:none;
  font-weight:800;
}
.promo-close{
  position:absolute;
  top:10px;
  right:12px;
  background:none;
  border:none;
  color:white;
  font-size:26px;
  cursor:pointer;
}

/* Extended team section */
.extended-team{
  text-align:center;
}
.extended-lead{
  font-size:22px;
  font-weight:700;
  max-width:820px;
  margin:20px auto;
}
.extended-text{
  font-size:18px;
  max-width:760px;
  margin:0 auto 26px;
}
.extended-benefits{
  list-style:none;
  padding:0;
  max-width:720px;
  margin:0 auto;
}
.extended-benefits li{
  margin:12px 0;
  font-size:17px;
}

/* Process home */
.process-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:30px;
}
.process-step{
  background:rgba(255,255,255,.06);
  padding:20px;
  border-radius:14px;
  text-align:center;
  width:200px;
}
.process-step span{
  display:inline-block;
  background:#00B4A6;
  color:#05211f;
  width:36px;
  height:36px;
  border-radius:50%;
  line-height:36px;
  font-weight:900;
  margin-bottom:10px;
}
.arrow{
  font-size:28px;
  opacity:.6;
}
.process-cta{
  text-align:center;
  margin-top:28px;
}

/* Simple fade-in animation */
.animate-in{
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp{
  from{opacity:0; transform:translateY(14px);}
  to{opacity:1; transform:none;}
}


/* EXTENDED TEAM BIG HIGHLIGHT */
.extended-team-highlight{
  text-align:center;
  padding:100px 0;
  background: linear-gradient(
    180deg,
    rgba(15,28,46,.98) 0%,
    rgba(15,28,46,.94) 60%,
    rgba(15,28,46,.88) 100%
  );
}

.big-headline{
  font-size:clamp(42px, 6vw, 64px);
  font-weight:900;
  line-height:1.1;
  margin-bottom:26px;
  color:#ffffff;
}

.big-lead{
  font-size:22px;
  font-weight:700;
  max-width:900px;
  margin:0 auto 18px;
  color:rgba(255,255,255,.9);
}

.big-copy{
  font-size:18px;
  max-width:860px;
  margin:0 auto 34px;
  color:rgba(255,255,255,.8);
}

.big-benefits{
  list-style:none;
  padding:0;
  max-width:760px;
  margin:0 auto;
}
.big-benefits li{
  font-size:18px;
  margin:14px 0;
  color:rgba(255,255,255,.85);
  position:relative;
}
.big-benefits li::before{
  content:"✓";
  color:#00B4A6;
  font-weight:900;
  margin-right:10px;
}

/* strong but clean animation */
.animate-in{
  animation: riseFade 1.1s ease both;
}
@keyframes riseFade{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:none;}
}

  to{opacity:1; transform:none;}
}

.site-header{
  position: fixed;
  top:0;
  z-index:999;
  background:#0F1C2E;
}
.site-header a{color:white;}
.site-header .menu-cta{background:#00B4A6;color:#05211f;}

.footer-bottom{background:#0F1C2E;padding:30px 0;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px;}
.footer-grid a{color:rgba(255,255,255,.8);text-decoration:none;}
.footer-grid a:hover{color:#00B4A6;}

/* FAQ blocks */
.faq{
  max-width: 920px;
  margin: 22px auto 0;
  display: grid;
  gap: 12px;
}
.faq details{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px 16px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

/* ===== v13 Header fix: always solid, never transparent ===== */
.site-header{
  background: #0F1C2E !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* ===== v13 FAQ readability ===== */
.faq{gap:16px !important; margin-top:26px !important;}
.faq details{padding:18px 18px !important; border-radius:16px !important;}
.faq summary{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size:18px;
  line-height:1.35;
  padding:2px 0;
}
.faq p{margin-top:12px !important; line-height:1.6; font-size:15.5px;}

/* ===== v13 Section strip: white to transparent ===== */
.strip-top{position:relative; overflow:hidden;}
.strip-top::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:70px;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  pointer-events:none;
}

/* ===== v13 Footer upgrade ===== */
.footer-bottom{background:#0F1C2E;padding:40px 0;}
.footer-grid{display:grid;grid-template-columns:1.4fr 0.8fr 1.3fr;gap:34px;align-items:start;}
.footer-logo{height:38px;width:auto;display:block;margin-bottom:10px;}
.footer-tagline{color:rgba(255,255,255,.78);font-weight:700;}
.footer-col-title{color:#fff;font-weight:900;margin-bottom:12px;}
.footer-links{display:flex;flex-direction:column;gap:12px;}
.footer-links a{color:rgba(255,255,255,.78);text-decoration:none;font-weight:700;}
.footer-links a:hover{color:#00B4A6;}
.footer-contact .contact-line{display:flex;align-items:flex-start;gap:10px;margin:10px 0;color:rgba(255,255,255,.78);font-weight:700;}
.footer-contact .contact-line svg{color:#00B4A6;margin-top:2px;flex:0 0 auto;}
.footer-contact a{color:rgba(255,255,255,.82);text-decoration:none;font-weight:800;}
.footer-contact a:hover{color:#00B4A6;}
.footer-socials{display:flex;gap:12px;margin-top:16px;}
.social-ic{width:40px;height:40px;border-radius:12px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:rgba(255,255,255,.90);text-decoration:none;border:1px solid rgba(255,255,255,.10);}
.social-ic:hover{background:rgba(0,180,166,.14);border-color:rgba(0,180,166,.30);color:#fff;}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr;gap:22px;}}

/* ===== v14 HARD FIX: header always fixed and visible ===== */
.site-header{
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000 !important;
  background: #0F1C2E !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Prevent content hiding behind fixed header */
body{
  padding-top: 78px;
}

/* ===== v15 FAQ font refresh ===== */
.faq summary{
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.2px;
}
.faq p{
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== v15 Artistic subtle pattern background ===== */
.pattern-fade{
  position: relative;
  overflow: hidden;
}
.pattern-fade::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,180,166,.10), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,.06), transparent 50%);
  opacity: .6;
  pointer-events:none;
}

/* ===== v15 Footer size increase ===== */
.footer-bottom{
  padding: 60px 0 !important;
}
.footer-contact .contact-line{
  font-size: 16.5px;
}
.footer-contact .contact-line span,
.footer-contact .contact-line a{
  font-size: 16.5px;
}
.footer-tagline{
  font-size: 15px;
}

/* ===== v16 FAQ dark background with white/grey pattern ===== */
.faq-pattern-dark{
  position: relative;
  background: linear-gradient(180deg, #0F1C2E, #0B1726);
  color: #ffffff;
  overflow: hidden;
}

.faq-pattern-dark::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 18px
    ),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.faq-pattern-dark .section-title,
.faq-pattern-dark .section-subtitle{
  color: #ffffff;
}

.faq-pattern-dark .faq details{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.faq-pattern-dark .faq summary{
  color: #ffffff;
}

.faq-pattern-dark .faq p{
  color: rgba(255,255,255,0.85);
}

/* ===== v17 FAQ artistic zig-zag / stripe background ===== */
.faq-pattern-dark{
  position: relative;
  background: linear-gradient(180deg, #0F1C2E, #0B1726);
  color: #ffffff;
  overflow: hidden;
}

.faq-pattern-dark::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.08) 10%,
      transparent 10%,
      transparent 20%
    ),
    linear-gradient(
      45deg,
      rgba(255,255,255,0.06) 0%,
      rgba(255,255,255,0.06) 10%,
      transparent 10%,
      transparent 20%
    );
  background-size: 60px 60px;
  opacity: 0.55;
  pointer-events: none;
}

.faq-pattern-dark .section-title,
.faq-pattern-dark .section-subtitle{
  color: #ffffff;
}

.faq-pattern-dark .faq details{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.faq-pattern-dark .faq summary{
  color: #ffffff;
}

.faq-pattern-dark .faq p{
  color: rgba(255,255,255,0.88);
}

/* ===== v18 FAQ visible polygon line pattern ===== */
.faq-pattern-dark{
  position: relative;
  background: linear-gradient(180deg, #0E1724, #0A111C);
  color: #ffffff;
  overflow: hidden;
}

.faq-pattern-dark::before{
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(60deg, rgba(255,255,255,0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 140px 140px, 160px 160px, 220px 220px;
  opacity: 0.9;
  pointer-events: none;
}

.faq-pattern-dark::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.0), rgba(0,0,0,0.45));
  pointer-events: none;
}

/* Ensure FAQ cards sit above pattern */
.faq-pattern-dark .container{
  position: relative;
  z-index: 1;
}

/* ===== v19 FAQ VERY visible polygon pattern ===== */
.faq-pattern-dark{
  position: relative;
  background-color: #0B1320;
  color: #ffffff;
  overflow: hidden;
}

.faq-pattern-dark::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'><g fill='none' stroke='white' stroke-opacity='0.25' stroke-width='2'><polyline points='20,350 120,80 260,300 420,60 580,280'/><polyline points='40,60 180,340 320,90 520,360'/><polyline points='10,200 200,120 360,260 560,140'/></g></svg>");
  background-size: 600px 400px;
  background-repeat: repeat;
  pointer-events: none;
}

.faq-pattern-dark::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,19,32,0.0), rgba(11,19,32,0.85));
  pointer-events: none;
}

.faq-pattern-dark .container{
  position: relative;
  z-index: 1;
}

/* ===== v20 Alternate pattern section (different from FAQ) ===== */
.pattern-alt{
  position: relative;
  overflow: hidden;
}
.pattern-alt::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='720' height='480' viewBox='0 0 720 480'><g fill='none' stroke='white' stroke-opacity='0.12' stroke-width='2'><path d='M0 120 L120 0 L240 120 L360 0 L480 120 L600 0 L720 120'/><path d='M0 240 L120 120 L240 240 L360 120 L480 240 L600 120 L720 240'/><path d='M0 360 L120 240 L240 360 L360 240 L480 360 L600 240 L720 360'/></g><g fill='none' stroke='white' stroke-opacity='0.08' stroke-width='1'><path d='M0 60 L720 60'/><path d='M0 180 L720 180'/><path d='M0 300 L720 300'/><path d='M0 420 L720 420'/></g></svg>");
  background-size: 720px 480px;
  background-repeat: repeat;
  pointer-events:none;
}
.pattern-alt > .container{position:relative; z-index:1;}

/* ===== v20 Services in one row (desktop) ===== */
#services .cards{
  display: grid;
  gap: 16px;
}
@media(min-width: 1100px){
  #services .cards{
    grid-template-columns: repeat(6, 1fr);
  }
}
@media(max-width: 1099px){
  #services .cards{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 640px){
  #services .cards{
    grid-template-columns: 1fr;
  }
}
#services .card h3{font-size:16px;}
#services .card p{font-size:13px;}

/* ===== v20 Footer copyright ===== */
.footer-copyright{
  margin-top: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  font-size: 13px;
}

/* ===== v21 Remove animations (esp. Services / left-side effects) ===== */
.animate-in,
.reveal,
.slide-in,
.fade-in,
[data-animate]{
  animation: none !important;
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

#services .cards,
#services .card,
#services .card *{
  animation: none !important;
  transition: none !important;
}

.hero::before,
.hero::after,
.section::before,
.section::after{
  animation: none !important;
}



/* ===== v37 Blog section – dark library / stacked books style ===== */
.blog-section{
  position: relative;
  color: #fff;
  background: #0B0F14;
  overflow: hidden;
}

.blog-section .container{
  position: relative;
  z-index: 1;
}

.blog-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(11,15,20,0.45), rgba(11,15,20,0.9)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'><rect width='1600' height='900' fill='%230b0f14'/><g fill='%23ffffff' opacity='0.08'><rect x='180' y='520' width='220' height='24'/><rect x='210' y='490' width='200' height='22'/><rect x='190' y='460' width='240' height='20'/><rect x='240' y='430' width='180' height='22'/><rect x='260' y='400' width='160' height='20'/><rect x='520' y='560' width='240' height='22'/><rect x='550' y='530' width='210' height='22'/><rect x='530' y='500' width='260' height='20'/><rect x='560' y='470' width='200' height='22'/><rect x='820' y='540' width='260' height='22'/><rect x='860' y='510' width='220' height='20'/><rect x='900' y='480' width='200' height='22'/><rect x='940' y='450' width='180' height='20'/><rect x='1120' y='520' width='260' height='22'/><rect x='1160' y='490' width='220' height='22'/><rect x='1200' y='460' width='200' height='20'/></g><g stroke='%23ffffff' stroke-opacity='0.15' stroke-width='3'><line x1='0' y1='620' x2='1600' y2='620'/></g></svg>");
  background-size: cover;
  background-position: center;
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

@media(max-width:1100px){
  .blog-grid{grid-template-columns: repeat(2,1fr);}
}
@media(max-width:640px){
  .blog-grid{grid-template-columns: 1fr;}
}



/* ===== v21 FAQ: white background + black text + black line pattern ===== */
.faq-pattern-dark{
  background: #ffffff !important;
  color: #0B1320 !important;
}

.faq-pattern-dark::before{
  /* overwrite previous pattern with black line network */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'><g fill='none' stroke='black' stroke-opacity='0.12' stroke-width='2'><polyline points='20,350 120,80 260,300 420,60 580,280'/><polyline points='40,60 180,340 320,90 520,360'/><polyline points='10,200 200,120 360,260 560,140'/></g><g fill='none' stroke='black' stroke-opacity='0.07' stroke-width='1'><path d='M0 100 L600 100'/><path d='M0 300 L600 300'/></g></svg>") !important;
  opacity: 1 !important;
}

.faq-pattern-dark::after{
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.85)) !important;
}

.faq-pattern-dark .section-title,
.faq-pattern-dark .section-subtitle{
  color: #0B1320 !important;
}

.faq-pattern-dark .faq details{
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(11,19,32,0.12) !important;
}

.faq-pattern-dark .faq summary{
  color: #0B1320 !important;
}

.faq-pattern-dark .faq p{
  color: rgba(11,19,32,0.85) !important;
}

/* ===== v22 Services background pattern ===== */
.services-pattern{
  position: relative;
  overflow: hidden;
}
.services-pattern::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'><g fill='none' stroke='%23ffffff' stroke-opacity='0.12' stroke-width='1.5'><path d='M0 300 L160 120 L320 300 L480 120 L640 300 L800 120'/><path d='M0 340 L160 160 L320 340 L480 160 L640 340 L800 160'/></g></svg>");
  background-size: 800px 400px;
  background-repeat: repeat;
  pointer-events:none;
}
.services-pattern > .container{position:relative; z-index:1;}

/* ===== v23 Ultra-wide support (Option 2) ===== */
/* Wider content only on very large screens */
@media (min-width: 1600px){
  .container{
    max-width: 1600px;
  }
}

/* Full-width content sections (Services + Blog) */
#services .container,
#blog .container{
  max-width: none !important;
  width: 100%;
  padding-left: clamp(18px, 3vw, 64px);
  padding-right: clamp(18px, 3vw, 64px);
}

/* Full-width top ribbon (header) */
.site-header .container.nav{
  max-width: none !important;
  width: 100%;
  padding-left: clamp(18px, 3vw, 64px);
  padding-right: clamp(18px, 3vw, 64px);
}

/* Full-width bottom ribbon (footer) */
.footer-bottom .container.footer-grid{
  max-width: none !important;
  width: 100%;
  padding-left: clamp(18px, 3vw, 64px);
  padding-right: clamp(18px, 3vw, 64px);
}

/* ===== v24 Footer layout (multi-column like reference) ===== */
.footer-wide{
  background:#1B1F23;
  padding: 56px 0 28px;
}
.footer-wide-inner{
  max-width: none;
  width: 100%;
  padding-left: clamp(18px, 3vw, 64px);
  padding-right: clamp(18px, 3vw, 64px);
}
.footer-cols{
  display:grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 1.2fr;
  gap: 64px;
  align-items:start;
}
.footer-col-title{
  color:#fff;
  font-weight:900;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-wide a{
  display:block;
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:700;
  font-size: 13px;
  margin: 8px 0;
}
.footer-wide a:hover{color:#00B4A6;}
.footer-text{
  color: rgba(255,255,255,.78);
  font-weight:700;
  font-size: 13px;
  margin: 8px 0;
}

.footer-bottom-row{
  margin-top: 46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.footer-logo-mini{
  height: 26px;
  width:auto;
  display:block;
  opacity: .9;
}
.footer-copy{
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}

/* Responsive */
@media(max-width: 980px){
  .footer-cols{grid-template-columns: 1fr 1fr; gap: 34px;}
}
@media(max-width: 560px){
  .footer-cols{grid-template-columns: 1fr; gap: 24px;}
  .footer-bottom-row{flex-direction:column; align-items:flex-start;}
}

/* ===== v25 Footer adjustments (remove Help, add icons) ===== */
.footer-cols{
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
}
.footer-line{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin: 10px 0;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 13px;
}
.footer-line svg{
  color:#00B4A6;
  margin-top:2px;
  flex: 0 0 auto;
}
.footer-line a{
  display:inline;
  margin:0;
  font-size: 13px;
}

/* ===== v25 Make Services/Blog cards narrower while section stays full-width ===== */
#services .cards,
.blog-grid{
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
@media(min-width: 1800px){
  #services .cards,
  .blog-grid{
    max-width: 1400px;
  }
}

/* ===== v29 Footer copyright at bottom ===== */
.footer-copy-bottom{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}

/* ===== v30 Center copyright ===== */
.footer-copy-bottom{
  text-align: center;
}

/* ===== v30 Tighten footer columns spacing ===== */
.footer-cols{
  gap: 36px; /* reduced from 64px */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== v32 Footer copyright centered at bottom ===== */
.footer-copy-bottom-centered{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}

/* ===== v33 FAQ: Inter font + subtle open animation ===== */
.faq summary,
.faq p{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}

.faq summary{
  font-weight: 650;
  position: relative;
  padding-right: 28px;
}

.faq summary::after{
  content: "▾";
  position: absolute;
  right: 6px;
  top: 2px;
  font-size: 16px;
  line-height: 1;
  color: rgba(11,19,32,0.65);
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::after{
  transform: rotate(180deg);
}

.faq details > *:not(summary){
  animation: faqReveal 200ms ease;
}

@keyframes faqReveal{
  from{opacity:0; transform: translateY(-4px);}
  to{opacity:1; transform: translateY(0);}
}

/* ===== v34 Slightly increase service card size ===== */
#services .card{
  padding: 26px 22px;       /* previously tighter */
  min-height: 220px;        /* adds vertical presence */
}

#services .card h3{
  margin-bottom: 12px;
}

#services .card p{
  margin-top: 6px;
  line-height: 1.55;
}

/* ===== v35 Service cards ~50% taller ===== */
#services .card{
  padding: 36px 26px;       /* increased padding */
  min-height: 320px;        /* ~50% taller than previous */
}

#services .card h3{
  margin-bottom: 16px;
}

#services .card p{
  margin-top: 10px;
  line-height: 1.65;
}

/* ===== v36 Workflow steps wider + hover animation ===== */
#process .steps,
#process .workflow-steps{
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 22px;
}

#process .step,
#process .workflow-step{
  padding: 28px 26px;
  min-height: 190px;
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

#process .step:hover,
#process .workflow-step:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  border-color: rgba(0,180,166,0.45);
}

/* Reduce hover on touch devices */
@media (hover: none){
  #process .step:hover,
  #process .workflow-step:hover{
    transform: none;
    box-shadow: none;
  }
}

/* ===== v37 Process boxes wider ===== */
@media(min-width: 1400px){
  #process .steps,
  #process .workflow-steps{
    grid-template-columns: repeat(3, minmax(340px, 1fr));
    gap: 28px;
  }
}

@media(min-width: 1900px){
  #process .steps,
  #process .workflow-steps{
    grid-template-columns: repeat(3, minmax(380px, 1fr));
  }
}

#process .step,
#process .workflow-step{
  padding: 34px 30px;
  min-height: 220px;
}

/* ===== v38 Blog background: use real image and make it visible ===== */
.blog-section{
  background-color:#0B0F14;
}
.blog-section::before{
  /* visible image with controlled overlay */
  background-image:
    linear-gradient(180deg, rgba(11,15,20,0.18), rgba(11,15,20,0.78)),
    url("assets/blog-bg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  opacity: 1 !important;
}

/* ===== v38 Why Choose Us layout ===== */
.why-split .container{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.why-split .section-title,
.why-split h2{
  margin-top: 0;
}

.why-split ul,
.why-split .why-list{
  margin: 0;
  padding-left: 18px;
}

.why-split li{
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  margin: 12px 0;
}

@media(max-width: 900px){
  .why-split .container{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .why-split li{font-size: 16px;}
}

/* ===== v39 Blog: full-width dark library image ===== */
.blog-section{
  position: relative;
  overflow: hidden;
}
.blog-section::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(11,15,20,0.10), rgba(11,15,20,0.78)),
    url("assets/blog-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: contrast(1.05) saturate(1.05);
  opacity: 1;
  pointer-events:none;
}
.blog-section .container{position:relative; z-index:1;}

/* ===== v39 Why Choose Us: bigger left title + bigger bullets ===== */
.why-split .section-title,
.why-split h2{
  font-size: clamp(44px, 3.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.why-split li{
  font-size: clamp(22px, 1.35vw, 30px);
  line-height: 1.55;
  font-weight: 800;
  margin: 16px 0;
}

/* ===== v41 Blog section full-width library background ===== */
.blog-section{
  position: relative;
  width: 100%;
  color: #fff;
  overflow: hidden;
}

.blog-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10,15,20,0.25), rgba(10,15,20,0.85)),
    url("assets/blog-library.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.blog-section .container{
  position: relative;
  z-index: 1;
}

/* ===== v42 Force Blog background to uploaded library image ===== */
.blog-section::before{
  background-image:
    linear-gradient(180deg, rgba(10,15,20,0.25), rgba(10,15,20,0.85)),
    url("assets/blog-library.jpg") !important;
}

/* If any legacy .blog-bg element exists, neutralize it */
.blog-section .blog-bg{
  display:none !important;
}

/* ===== v43 Blog section: use generated dark library background ===== */
.blog-section{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blog-section::before{
  background-image:
    linear-gradient(180deg, rgba(8,12,18,0.10), rgba(8,12,18,0.78)),
    url("assets/blog-library-generated.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* ===== v44 Blog background fix: apply image to section (full width) ===== */
#blog.blog-section{
  background:
    linear-gradient(180deg, rgba(8,12,18,0.10), rgba(8,12,18,0.78)),
    url("assets/blog-library-generated.png") center/cover no-repeat !important;
}

/* Disable any blog-section ::before background layers */
#blog.blog-section::before{
  background-image: none !important;
  content: none !important;
}

/* ===== v46 Blog background (AI library) ===== */
#blog.blog-section{
  background:
    linear-gradient(180deg, rgba(8,12,18,0.12), rgba(8,12,18,0.78)),
    url("assets/blog-library-ai.png") center/cover no-repeat !important;
}

/* ===== v46 Blog cards – glass/dark, inspired by reference ===== */
.blog-grid{
  gap: 22px;
}

.blog-card{
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: rgba(10, 12, 16, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

/* subtle smoky texture inside cards */
.blog-card::before{
  content:"";
  position:absolute;
  inset:-30px;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.16), rgba(255,255,255,0.00) 55%),
    radial-gradient(circle at 70% 55%, rgba(255,255,255,0.10), rgba(255,255,255,0.00) 60%);
  opacity: 0.55;
  pointer-events:none;
}

.blog-card *{position: relative; z-index: 1;}

.blog-meta{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.blog-meta::before{
  content:"—";
  opacity: 0.7;
}

.blog-card h3{
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.blog-card p{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  margin: 0 0 16px;
}

.blog-card .btn,
.blog-card .read-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 800;
  text-decoration:none;
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.38);
  border-color: rgba(0,180,166,0.42);
}

.blog-card:hover .btn,
.blog-card:hover .read-more{
  border-color: rgba(0,180,166,0.42);
}

/* ===== v47 Blog background: clean library image (no text) ===== */
#blog.blog-section{
  background:
    linear-gradient(180deg, rgba(8,12,18,0.10), rgba(8,12,18,0.78)),
    url("assets/blog-library-bg-v47.png") center/cover no-repeat !important;
}

/* Blog cards: remove link underlines + make titles white */
.blog-card,
.blog-card:hover{
  text-decoration: none !important;
}

.blog-card h3{
  color: #fff !important;
}

.blog-card a,
.blog-card a:visited{
  text-decoration: none !important;
  color: inherit;
}

.blog-card a:hover{
  text-decoration: none !important;
}

/* ===== v49 Services: match 3D Modeling card link style across all service cards ===== */
#services .service-link{
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

#services .service-link:hover{
  text-decoration: none;
  filter: brightness(1.05);
}

/* ===== v49 Why Choose Us layout: title left, bullets right card ===== */
#why .container.split.why-swap{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

#why .why-left{
  background: transparent;
  border: none;
  padding: 0;
}

#why .why-left h2{
  margin: 0;
}

#why .why-right{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#why .why-right ul{
  margin: 0;
  padding-left: 18px;
}

#why .why-right li{
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1.6;
  font-weight: 800;
  margin: 12px 0;
}

@media (max-width: 900px){
  #why .container.split.why-swap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===== v50 Why Choose Us: align & match Delivered styling ===== */
#why .why-left{
  display: flex;
  align-items: center;          /* vertical center relative to right card height */
  justify-content: flex-start;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 100%;
}

#why .why-left h2{
  font-size: 56px;              /* match .hero h1 */
  color: var(--teal);           /* match .teal (Delivered) */
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.05;
}

/* Change font style inside right card */
#why .why-right{
  font-family: "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

#why .why-right li{
  font-family: "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  font-weight: 700;
}

/* ===== v51 Why Choose Us: match font to service title + min-height alignment + staggered bullets ===== */
#why .why-right,
#why .why-right li{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}

#why .why-right li{
  font-weight: 800 !important;
  letter-spacing: -0.2px;
}

/* Stronger min-height alignment for left title */
#why .why-left{
  min-height: 260px; /* keeps visual alignment stable */
}

/* Staggered bullet animation: slide in from left one-by-one */
#why .why-right li{
  opacity: 0;
  transform: translateX(-14px);
  animation: whyBulletIn 420ms ease forwards;
}

#why .why-right li:nth-child(1){ animation-delay: 60ms; }
#why .why-right li:nth-child(2){ animation-delay: 160ms; }
#why .why-right li:nth-child(3){ animation-delay: 260ms; }
#why .why-right li:nth-child(4){ animation-delay: 360ms; }
#why .why-right li:nth-child(5){ animation-delay: 460ms; }
#why .why-right li:nth-child(6){ animation-delay: 560ms; }
#why .why-right li:nth-child(7){ animation-delay: 660ms; }

@keyframes whyBulletIn{
  from{ opacity: 0; transform: translateX(-14px); }
  to{ opacity: 1; transform: translateX(0); }
}

/* Avoid motion for reduced-motion users */
@media (prefers-reduced-motion: reduce){
  #why .why-right li{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== v52 Scroll-triggered Why bullets (only when in view) ===== */
#why .why-right li{
  opacity: 1;
  transform: none;
  animation: none;
}

/* Start hidden until triggered */
#why.why-anim-ready .why-right li{
  opacity: 0;
  transform: translateX(-14px);
}

/* Animate only when section is in view */
#why.why-anim-ready.in-view .why-right li{
  animation: whyBulletIn 420ms ease forwards;
}
#why.why-anim-ready.in-view .why-right li:nth-child(1){ animation-delay: 60ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(2){ animation-delay: 160ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(3){ animation-delay: 260ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(4){ animation-delay: 360ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(5){ animation-delay: 460ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(6){ animation-delay: 560ms; }
#why.why-anim-ready.in-view .why-right li:nth-child(7){ animation-delay: 660ms; }

@media (prefers-reduced-motion: reduce){
  #why.why-anim-ready .why-right li{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ===== v52 Footer copyright under Terms of Service ===== */
.tos-copy{
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.35;
}

/* ===== v53 Header nav updates + Why left title no card ===== */
#why .why-left{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}

/* ===== v53 Why bullets: match extended-team advantage bullets ===== */
#why .why-right,
#why .why-right li{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
}

#why .why-right li{
  font-weight: 750 !important;
  font-size: clamp(20px, 1.25vw, 28px) !important;
  line-height: 1.6 !important;
  letter-spacing: -0.1px;
}

html{ scroll-behavior: smooth; }

/* ===== v54 FIX: Remove title card behind Why Choose Us ===== */
#why .why-left,
#why .panel.why-left,
#why .why-title-only,
#why .panel.why-title-only{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}

/* ===== v54 FIX: Why bullets font style + size ===== */
#why .why-right ul li,
#why .why-bullets-card ul li,
#why .why-right-card ul li{
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  line-height: 1.55 !important;
  letter-spacing: -0.15px !important;
  color: rgba(255,255,255,0.92) !important;
}
@media (max-width: 900px){
  #why .why-right ul li,
  #why .why-bullets-card ul li,
  #why .why-right-card ul li{
    font-size: 20px !important;
  }
}

/* ===== v55 FAQ/Blog pages + view more buttons ===== */
.section-head{
  margin-bottom: 22px;
}
.page-title{
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
  margin: 0 0 8px;
}
.page-subtitle{
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-weight: 650;
}

#faq-page .page-subtitle{
  color: rgba(11,19,32,0.72);
}

.faq-more-wrap,
.blog-more-wrap{
  margin-top: 18px;
}

.btn-ghost{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

#faq .btn-ghost{
  background: rgba(11,19,32,0.06);
  border-color: rgba(11,19,32,0.14);
  color: rgba(11,19,32,0.9);
}

#faq .btn-ghost:hover,
.btn-ghost:hover{
  border-color: rgba(0,180,166,0.42);
}

/* ===== v56 Center view-all buttons ===== */
.faq-more-wrap,
.blog-more-wrap{
  display:flex;
  justify-content:center;
}

/* ===== v57 Why bullets: match advantage list format ===== */
#why .why-right ul{
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

#why .why-right li{
  position: relative;
  padding-left: 34px !important;
  margin: 14px 0 !important;
  font-weight: 800 !important;
  letter-spacing: -0.1px !important;
}

#why .why-right li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  font-weight: 900;
}

/* ===== v58 Blog page: clean layout (no library bg / no dark overlay box) ===== */
#blog-page .section-subtitle{
  color: rgba(11,19,32,0.72);
}

/* Ensure blog cards render consistently on the blog page */
#blog-page .blog-card{
  background: rgba(10,12,16,0.92);
  border: 1px solid rgba(255,255,255,0.14);
}

/* ===== v59 Blog page rebuilt from Services template ===== */
#blog-page{
  background: transparent;
}
#blog-page .section-subtitle{
  color: rgba(11,19,32,0.72);
}

/* ===== v60 Blog page: ensure no background image/overlay + cards visible ===== */
#blog-page{
  background: transparent;
}
#blog-page::before,
#blog-page::after{
  content: none !important;
  display: none !important;
}

/* Make cards behave consistently in grid */
#blog-page .blog-card{
  display: block;
}
#blog-page .blog-card h3{
  color: #fff !important;
}
#blog-page .section-subtitle{
  color: rgba(11,19,32,0.72);
}

/* ===== v61 Blog page: ensure articles visible + footer at bottom ===== */
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main{
  flex: 1 0 auto;
}
footer{
  margin-top: auto;
}

/* Blog page link styling */
#blog-page a{
  text-decoration: none !important;
  color: inherit;
}
#blog-page .blog-card h3{
  color: #fff !important;
}

/* ===== v64 Process page layout (new) ===== */
#process-page .process-layout{
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 34px;
  align-items: start;
}
#process-page .process-aside{
  position: sticky;
  top: 110px;
}
#process-page .process-lede{
  color: rgba(11,19,32,0.72);
  font-weight: 650;
  margin: 10px 0 18px;
}
#process-page .process-metrics{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
#process-page .metric{
  background: rgba(11,19,32,0.04);
  border: 1px solid rgba(11,19,32,0.10);
  border-radius: 16px;
  padding: 14px 14px;
  display:flex;
  gap: 10px;
  align-items: center;
}
#process-page .metric-num{
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.4px;
}
#process-page .metric-label{
  font-weight: 800;
  color: rgba(11,19,32,0.86);
}
#process-page .process-note{
  margin-top: 16px;
  background: rgba(11,19,32,0.04);
  border: 1px solid rgba(11,19,32,0.10);
  border-radius: 16px;
  padding: 16px 16px;
}
#process-page .process-note h3{ margin: 0 0 10px; }
#process-page .process-note ul{ margin: 0; padding-left: 18px; }
#process-page .timeline{
  position: relative;
  padding-left: 28px;
}
#process-page .timeline::before{
  content:"";
  position:absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(11,19,32,0.12);
}
#process-page .tl-item{ position: relative; margin: 0 0 18px; }
#process-page .tl-dot{
  position:absolute;
  left: 1px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
#process-page .tl-card{
  background: rgba(10,12,16,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 20px 20px;
  margin-left: 18px;
}
#process-page .tl-card h3{ margin: 0 0 10px; color: #fff; }
#process-page .tl-card p{ margin: 0 0 12px; color: rgba(255,255,255,0.84); }
#process-page .tl-tags{ display:flex; flex-wrap: wrap; gap: 8px; }
#process-page .tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  font-size: 12px;
}
#process-page .process-checklist{ margin-top: 30px; }
#process-page .check-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
#process-page .check-card{
  background: rgba(11,19,32,0.04);
  border: 1px solid rgba(11,19,32,0.10);
  border-radius: 18px;
  padding: 18px;
}
#process-page .check-card h3{ margin: 0 0 10px; }
#process-page .check-card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(11,19,32,0.80);
  font-weight: 650;
  line-height: 1.7;
}
@media (max-width: 980px){
  #process-page .process-layout{ grid-template-columns: 1fr; }
  #process-page .process-aside{ position: static; }
  #process-page .check-grid{ grid-template-columns: 1fr; }
}

/* ===== v66 Process text color fixes ===== */
#process-page .process-lede,
#process-page .metric-label,
#process-page .process-metrics,
#process-page .process-metrics *{
  color: #ffffff !important;
}

/* ===== v66 Remove timeline dots ===== */
#process-page .tl-dot{
  display: none !important;
}
#process-page .timeline{
  padding-left: 0 !important;
}
#process-page .tl-card{
  margin-left: 0 !important;
}

/* ===== v66 Center 'What we need from you' section ===== */
#process-page .process-checklist{
  text-align: center;
}
#process-page .check-grid{
  justify-items: center;
}
#process-page .check-card{
  text-align: left;
  max-width: 420px;
  width: 100%;
}

/* ===== v67 Remove At a glance sidebar ===== */
#process-page .process-layout{
  grid-template-columns: 1fr !important;
}

#process-page .process-aside{ display:none !important; }

/* ===== v68 Quote page ===== */
#quote-page .quote-grid{
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 26px;
  align-items: start;
}
#quote-page .quote-card{
  background: rgba(10,12,16,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 24px;
}
#quote-page .quote-aside{
  position: sticky;
  top: 110px;
}
#quote-page .aside-card{
  background: rgba(11,19,32,0.04);
  border: 1px solid rgba(11,19,32,0.10);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}
#quote-page .aside-card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(11,19,32,0.80);
  font-weight: 650;
  line-height: 1.7;
}
#quote-page .form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#quote-page .form-grid-4{
  grid-template-columns: repeat(3, minmax(0,1fr));
}
#quote-page .field{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
#quote-page label{
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}
#quote-page .req{ color: var(--teal); }
#quote-page input,
#quote-page textarea{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}
#quote-page input:focus,
#quote-page textarea:focus{
  border-color: rgba(0,180,166,0.55);
}
#quote-page .divider{
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 18px 0;
}
#quote-page .upload-box{
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  padding: 18px;
  position: relative;
}
#quote-page .file-input{
  position:absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
#quote-page .upload-title{
  color: rgba(255,255,255,0.88);
  font-weight: 850;
}
#quote-page .upload-link{
  color: var(--teal);
}
#quote-page .upload-hint{
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
}
#quote-page .file-list{
  margin-top: 12px;
  color: rgba(255,255,255,0.80);
  font-weight: 650;
  font-size: 14px;
}
#quote-page .form-actions{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 16px;
}
#quote-page .form-error{
  margin-top: 12px;
  color: rgba(255,120,120,0.95);
  font-weight: 800;
}
/* Modal */
.modal{ display:none; }
.modal.is-open{ display:block; }
.modal .modal-backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
}
.modal .modal-card{
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: min(720px, calc(100vw - 28px));
  background: rgba(10,12,16,0.98);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
}
.modal .modal-close{
  position:absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 8px 10px;
  color: #fff;
  cursor: pointer;
}
.modal .modal-body{
  margin-top: 10px;
  color: rgba(255,255,255,0.84);
  line-height: 1.6;
}
@media (max-width: 980px){
  #quote-page .quote-grid{ grid-template-columns: 1fr; }
  #quote-page .quote-aside{ position: static; }
  #quote-page .form-grid{ grid-template-columns: 1fr; }
  #quote-page .form-grid-4{ grid-template-columns: 1fr 1fr; }
}
