/* =======================================
   HOMEPAGE HERO CAROUSEL
   ======================================= */
/* ===== Hero framed box ===== */
.hero-wrap{padding:48px 20px;}
.hero-frame{
  max-width:1000px; height:420px; margin:0 auto;
  border-radius:14px; box-shadow:0 18px 45px rgba(0,0,0,.12);
  overflow:hidden; position:relative; background:#fff;
}
.hero-stack{position:relative; width:100%; height:100%;}
.slide{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
  opacity:0; /* cross-fade */
  animation:fadeSlide 35s infinite ease-in-out; /* 5 slides x 7s */
  animation-delay:var(--base);
  padding:40px;
}
.slide h1{
  font-size:clamp(24px,3.6vw,40px); font-weight:800; margin:0 0 22px;
  opacity:0; transform:translateY(8px);
  animation:fadeUp 35s infinite ease-out;
  animation-delay:calc(var(--base) + .6s);
}
.hero-btn{
  background:#fff; color:#111; padding:12px 28px; border-radius:10px;
  font-weight:700; text-decoration:none; box-shadow:0 6px 18px rgba(0,0,0,.12);
  transition:transform .25s ease, box-shadow .25s ease;
  opacity:0; transform:translateY(10px);
  animation:fadeUp 35s infinite ease-out;
  animation-delay:calc(var(--base) + 1.2s);
}
.hero-btn:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.16);}

/* Cross-fade timing: ~2s fade-in, 5s stay, .5s fade-out */
@keyframes fadeSlide{
  0%{opacity:0}
  5%{opacity:1}
  75%{opacity:1}     /* stays visible ~5s after full reveal */
  90%{opacity:0}
  100%{opacity:0}
}
/* Staggered text/button entrance each slide */
@keyframes fadeUp{
  0%, calc((var(--base) + 0s) / 35s * 100%){opacity:0; transform:translateY(10px)}
  /* active window for element */
  5%, 20%{opacity:1; transform:translateY(0)}
  75%{opacity:1}
  90%{opacity:0}
  100%{opacity:0}
}

/* ===== Color themes ===== */
.lavender{background:#E6E6FA;} .mustard   h1{color:#FBC02D;}
.green{background:#34C759;}    .red       h1{color:#FF3B30;}
.yellow{background:#FBC02D;}   .gtext     h1{color:#1E7D22;}
.white{background:#FFFFFF;}    .lavtext   h1{color:#7D5BA6;}
.orange{background:#FF9500;}   .blue      h1{color:#007AFF;}

/* Buttons auto-contrast on dark bg */
.green .hero-btn, .orange .hero-btn{background:#fff; color:#111;}
.white .hero-btn{background:#111; color:#fff;}
.yellow .hero-btn{background:#1E7D22; color:#fff;}
.lavender .hero-btn{background:#fff; color:#111;}

/* Responsive */
@media (max-width:640px){
  .hero-frame{height:360px;}
  .hero-btn{padding:11px 22px; border-radius:8px;}
}

/* Carousel animation */
@keyframes slideShow {
  0%, 16%   { transform: translateX(0%); }
  20%, 36%  { transform: translateX(-100%); }
  40%, 56%  { transform: translateX(-200%); }
  60%, 76%  { transform: translateX(-300%); }
  80%, 96%  { transform: translateX(-400%); }
  100%      { transform: translateX(0%); }
}


/* ================================
   HOW WE WORK (4D)
   ================================ */
/* ================================
   HOW WE WORK (4D) SPLIT SLIDES
   ================================ */
/* ================================
   How We Work? — Fullscreen Panels
   ================================ */
.workfull{
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  max-height: 100vh;         /* fullscreen area */
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Each full-viewport panel */
.wf-panel{
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  padding: clamp(20px, 4vw, 48px);
  background: #fff;
}

/* Split grid */
.wf-grid{
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1.1fr; /* left | divider | right */
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

/* Left content */
.wf-left{
  display: flex; flex-direction: column; gap: 14px;
}
.wf-left h2{
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: .2px;
}
.wf-left h3{
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 800;
}
.wf-lead{
  color:#444; font-size: clamp(16px, 1.8vw, 18px); line-height:1.6;
}
.wf-points{
  margin: 6px 0 0; padding: 0 0 0 18px;
  color:#444; line-height:1.7; font-size: 15.5px;
}
.wf-tags{
  display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:8px 0 0;
}
.wf-tags li{
  list-style:none; padding:8px 12px; border-radius:10px;
  background:#F2EDFF; color:#6F55AD; font-weight:700; font-size:13px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06) inset;
}

/* Vertical divider */
.wf-divider{
  width:2px; height: 72%;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.02));
  border-radius: 2px;
}

/* Right image */
.wf-right{
  display:flex; justify-content:center; align-items:center;
}
.wf-right img{
  width: 100%; max-width: 560px; height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
  transform: translateZ(0);
}

/* Subtle entrance (no JS) */
.wf-panel{
  opacity: 0; transform: translateY(10px);
  animation: wfFadeUp .8s ease forwards;
}
.wf-panel:nth-child(1){ animation-delay: .05s; }
.wf-panel:nth-child(2){ animation-delay: .15s; }
.wf-panel:nth-child(3){ animation-delay: .25s; }
.wf-panel:nth-child(4){ animation-delay: .35s; }
.wf-panel:nth-child(5){ animation-delay: .45s; }

@keyframes wfFadeUp{
  to{ opacity:1; transform:none; }
}

/* Sticky title feel (optional): keep big title visible momentarily */
.workfull .wf-panel:first-child .wf-right img{ max-width: 520px; }

/* Mobile */
@media (max-width: 900px){
  .wf-grid{ grid-template-columns: 1fr; }
  .wf-divider{ display:none; }
  .wf-right{ margin-top: 10px; }
  .wf-panel{ padding: 28px 18px; }
  .wf-right img{ max-width: 92%; }
  .workfull{ border-radius: 12px; }
}

/* ================================
   OUR TOOLS SECTION
   ================================ */
.tools-wrap {
  padding: 80px 20px;
  text-align: center;
  background: #fafafa;
}

.tools-wrap h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.tools-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.tools-grid i {
  font-size: 46px;
  color: #333;
  filter: grayscale(1) opacity(.7);
  transition: all .3s ease;
  cursor: default;
}

.tools-grid i:hover {
  filter: none;
  color: inherit;       /* keeps brand color from FA */
  transform: translateY(-6px) scale(1.1);
}

/* Responsive */
@media (max-width: 640px) {
  .tools-grid {
    gap: 20px;
  }
  .tools-grid i {
    font-size: 34px;
  }
}


/* ============================
   HOME: Who We Are (about-wrap)
   ============================ */

:root{
  /* OWS palette */
  --ow-red:   #E53935;   /* O */
  --ow-green: #2E7D32;   /* W */
  --ow-blue:  #2F80ED;   /* S / site hover */
  --ow-yellow:#FBC02D;   /* Digital / active underline */
  --ink-1: #111;
  --ink-2: #444;
  --ink-3: #666;
  --card: #fff;
  --line: #eee;
}

.about-wrap{
  padding: clamp(40px, 6vw, 72px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.about-head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto clamp(24px, 3.2vw, 36px);
  padding: 0 20px;
}
.about-head h2{
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--ink-1);
}
.about-lead{
  margin: 0;
  color: var(--ink-3);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
}

/* Cards grid */
.about-grid{
  width:min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

/* Card base */
.about-card{
  --accent: var(--ow-blue);        /* default; overridden below via nth-child */
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  padding: clamp(18px, 2.2vw, 26px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  isolation: isolate;
}
/* subtle tinted header band */
.about-card::before{
  content:"";
  position:absolute; inset:0 0 auto 0;
  height: 6px;
  border-radius: var(--radius-2) var(--radius-2) 0 0;
  background: var(--accent);
}

/* Accents per column (O/W/S colors) */
.about-card:nth-child(1){ --accent: var(--ow-red); }
.about-card:nth-child(2){ --accent: var(--ow-green); }
.about-card:nth-child(3){ --accent: var(--ow-blue); }

.about-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: #e6e6e6;
}

/* Headings & text */
.about-card h3{
  margin: 4px 0 8px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink-1);
}
.about-card p{
  margin: 0 0 10px;
  color: var(--ink-3);
  line-height: 1.65;
}

/* Bullet list with colored markers (no icons/emojis) */
.about-points{
  list-style: none;
  margin: 0; padding: 0;
}
.about-points li{
  position: relative;
  padding-left: 18px;
  margin: 7px 0;
  color: var(--ink-2);
  font-weight: 500;
}
.about-points li::before{
  content:"";
  position:absolute; left:0; top:.58em;
  width:8px; height:8px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,0,0,.04);
}

/* Hide any leftover emoji containers from old markup */
.about-emoji{ display:none !important; }

/* CTA pair, matched to site buttons */
.about-cta{
  display:flex; justify-content:center; gap:14px;
  margin-top: clamp(22px, 3vw, 32px);
  padding: 0 20px;
}
.about-cta .btn-primary,
.about-cta .btn-ghost{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  border-radius: 12px;
  padding: 12px 18px;
  border:2px solid transparent;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.about-cta .btn-primary{
  background: var(--ow-blue);
  color:#fff;
  box-shadow: 0 10px 22px rgba(47,128,237,.25);
}
.about-cta .btn-primary:hover{ transform: translateY(-2px); }
.about-cta .btn-ghost{
  background:#fff;
  color: var(--ink-1);
  border-color:#ddd;
}
.about-cta .btn-ghost:hover{
  border-color:#bbb;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px){
  .about-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-cta{ flex-direction: column; }
}

.about-card:nth-child(1){ background: linear-gradient(180deg, #fff 0%, #fff5f5 100%); }
.about-card:nth-child(2){ background: linear-gradient(180deg, #fff 0%, #f4fff5 100%); }
.about-card:nth-child(3){ background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%); }


/* ============================
   Responsive fixes: Who We Are
   ============================ */

/* Tablets */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr; /* 2 cards side by side */
    gap: 20px;
  }
  .about-card {
    padding: 20px;
  }
  .about-head {
    padding: 0 10px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr; /* stack single column */
    gap: 16px;
  }
  .about-card {
    padding: 18px;
  }
  .about-card h3 {
    font-size: 18px;
  }
  .about-card p,
  .about-points li {
    font-size: 15px;
    line-height: 1.6;
  }
  .about-cta {
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .about-cta .btn-primary,
  .about-cta .btn-ghost {
    width: 10
