:root{
--primary: #FFC107;          /* Grynow gold */
  --accent:  #FF8A00;          /* warm orange */
  --primary-dark: #212121;     /* strong text / headings */
  --accent-blue: #1A73E8;      /* subtle secondary */
  --bg: #FFFFFF;               /* page background */
  --bg-soft: #F8F9FA;          /* sections / cards */
  --card: #FFFFFF;
  --muted: #6C6C6C;
  --border: #D0D0D0;
--radius: 14px;
--glass: rgba(0,0,0,0.04);
--gradient: linear-gradient(90deg, var(--primary), var(--accent));
--shadow-soft: 0 4px 18px rgba(0,0,0,0.06);
--shadow-subtle: 0 2px 10px rgba(0,0,0,0.04);
--max-width: 1200px;
--nav-height: 76px;
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset & base */

*, *::before, *::after {
    box-sizing: border-box;
}

html, body { height: 100%; }
body {
margin: 0;
background: var(--bg);
color: var(--primary-dark);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 16px;
line-height: 1.35;
}

/* Page wrapper */
.wrap {
width: 100%;
max-width: var(--max-width);
margin: 0 auto;
padding: 16px 14px;
}

/* Header */
.site-header {
width: 100%;
margin: 0;
padding: 12px 18px;
background: rgba(0,0,0,0.02);
border: 1px solid var(--border);
border-radius: var(--radius);
backdrop-filter: blur(8px);
box-shadow: var(--shadow-soft);
position: relative;
}

.nav-inner{
height: var(--nav-height);
display: flex;
align-items: center;
gap: 16px;
justify-content: space-between;
}

/* Brand */
.brand{
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--primary-dark);
}
.logo{
width: 54px;
height: 54px;
border-radius: 12px;
display: grid;
place-items: center;
background: var(--gradient);
box-shadow: 0 8px 30px rgba(255,193,7,0.08);
transform: rotate(-8deg);
}
.wordmark .name{ font-weight: 800; font-size: 16px; letter-spacing: 0.2px; }
.wordmark .tag{ font-size: 12px; color: var(--muted); font-weight: 600; }

/* Nav */
nav.main-nav{ display:flex; align-items:center; gap:20px; }
nav.main-nav ul{ display:flex; gap:14px; align-items:center; list-style:none; margin:0; padding:0; }
nav.main-nav a{
color: var(--primary-dark);
text-decoration: none;
padding: 8px 10px;
border-radius: 10px;
font-weight: 600;
font-size: 14px;
}
nav.main-nav a:hover{
background: rgba(0,0,0,0.03);
transform: translateY(-2px);
transition: all .18s ease;
}

/* Utilities */
.utilities{ display:flex; gap:10px; align-items:center; }
.cta{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:12px;
background:var(--gradient);
color:var(--primary-dark);
font-weight:800;
box-shadow:0 8px 24px rgba(255,138,0,0.06);
text-decoration:none;
}
.cta .pulse{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.95); box-shadow:0 6px 18px rgba(255,193,7,0.12); }

.icon-btn{ display:inline-grid; place-items:center; width:46px; height:46px; border-radius:10px; background:transparent; border:1px solid rgba(0,0,0,0.06); cursor:pointer; transition:transform .18s, box-shadow .18s; }
.icon-btn:hover{ transform:translateY(-4px); box-shadow:var(--shadow-subtle); }
.hamburger{ display:none; background:transparent; border:0; padding:6px; border-radius:8px; cursor:pointer; }

/* Mobile panel */
.mobile-panel{
position:absolute;
left:12px;
right:12px;
top:calc(var(--nav-height) + 8px);
background:var(--bg-soft);
border-radius:12px;
padding:16px;
display:none;
flex-direction:column;
gap:12px;
z-index:20;
box-shadow:var(--shadow-soft);
}
.mobile-panel.open{ display:flex; }
.mobile-panel a{ padding:12px; border-radius:10px; color:var(--primary-dark); text-decoration:none; }

/* Accessibility focus */
:focus-visible { outline: 3px solid rgba(255,193,7,0.14); outline-offset: 3px; }
a:focus, button:focus { outline: 3px solid rgba(255,193,7,0.14); outline-offset: 3px; }

/* HERO (layout kept intact) */
.hero {
width:100%;
margin:48px 0;
padding:40px 32px;
display:flex;
gap:48px;
align-items:center;
border-radius:var(--radius);
background:linear-gradient(180deg,var(--bg),var(--bg));
box-shadow:none;
}

.hero-content {
flex:1.2;
min-width:0;
}

.hero-content h1 {
font-size:56px;
line-height:1.06;
margin:0 0 18px 0;
color:var(--primary-dark);
font-weight:800;
word-break:break-word;
}

.hero-content p {
color:var(--muted);
margin:0 0 22px 0;
max-width:640px;
font-size:17px;
line-height:1.5;
}

.hero-buttons {
margin-top:8px;
display:flex;
gap:20px;
align-items:center;
}

/* highlighted word */
.gradient{
background:var(--gradient);
-webkit-background-clip:text;
color:transparent;
font-weight:900;
}

/* hero CTAs */
.hero-buttons{
margin-top:24px;
display:flex;
gap:18px;
}
.primary-btn, .secondary-btn{
padding:14px 26px;
border-radius:14px;
text-decoration:none;
font-weight:800;
font-size:15px;
}
.primary-btn{
background:var(--gradient);
color:var(--primary-dark);
box-shadow:0 12px 30px rgba(255,138,0,0.08);
}
.secondary-btn{
background:transparent;
border:2px solid rgba(0,0,0,0.06);
color:var(--primary-dark);
}

/* stats */
.stats{ display:flex; gap:26px; margin-bottom: 56px; margin-top:36px; align-items:center; }
.stat-box h3{
font-size:32px;
margin:0;
background:var(--gradient);
-webkit-background-clip:text;
color:transparent;
font-weight:800;
}
.stat-box p{ margin:4px 0 0; color:var(--muted); font-size:13px; }

/* HERO GRAPHIC */
.hero-graphic{
flex:1;
position:relative;
display:flex;
align-items:center;
justify-content:center;
min-height:220px;
}

/* decorative blob (kept subtle) */
.blob{
position:absolute;
width:360px;
height:360px;
border-radius:50%;
background:var(--gradient);
filter:blur(70px);
opacity:0.28;
z-index:1;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}

/* Lottie container (simple rule) */
.hero-lottie{
position:relative;
z-index:2;
width:100%;
max-width:480px;
height:auto;
display:block;
}

/* small cards */
.card{
background:var(--card);
border-radius:12px;
padding:18px;
box-shadow:var(--shadow-subtle);
border:1px solid var(--border);
}

/* ================= SERVICES ================= /
/ services */
.services-section{margin-top: 80px;
    margin-bottom: 80px;}
.section-head{text-align:center;margin-bottom:28px}
.section-head h2{font-size:32px;margin:0 0 8px;font-weight:900;color:var(--primary-dark)}
.section-head .lead{margin:0 auto;max-width:720px;color:var(--muted);font-size:15px}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 12px;        /* FIX for Android spacing */
    box-sizing: border-box; /* Prevents right-side sticking */
}
.service-card{display:flex;flex-direction:column;gap:14px;padding:20px;border-radius:12px;transition: transform .22s ease, box-shadow .22s ease; border:1px solid rgba(0,0,0,0.04); background:var(--card); min-height:230px; color:var(--primary-dark)}
.service-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    transition: transform .22s ease, box-shadow .22s ease;
    border: 1px solid rgba(0,0,0,0.04);
    background: var(--card);
    color: var(--primary-dark);
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}

/* ICON FIX */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: linear-gradient(180deg, rgba(255,193,7,0.12), rgba(255,138,0,0.06));
    box-shadow: 0 8px 22px rgba(255,193,7,0.04);

    margin: 0 auto !important;   /* center the whole container */
}

.service-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}


.service-card h3{margin:0;font-size:18px;font-weight:800}
.service-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.45;flex:1}


/* responsive service grid */
@media (max-width:1100px){
.services-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:700px){
.services-grid{ grid-template-columns: 1fr; }
.service-card{ min-height: auto; }
.section-head h2{ font-size:28px; }
}

/* ===== consolidated responsive (put at the BOTTOM) ===== */
@media (max-width:900px){
.hero{
flex-direction:column !important;
text-align:center !important;
padding:20px !important;
gap:18px !important;
}

.hero-content{
width:100% !important;
max-width:100% !important;
display:block !important;
}

.hero .hero-buttons{
display:flex !important;
justify-content:center !important;
align-items:center !important;
width:100% !important;
gap:14px !important;
margin:12px 0 !important;
flex-wrap:wrap !important;
}

.hero .hero-buttons > *{
min-width:140px;
flex:0 1 auto;
margin:0 !important;
}

.hamburger{ display:inline-flex; }
nav.main-nav{ display:none; }

.mobile-panel{ left:12px; right:12px; top:calc(var(--nav-height) + 12px); }

.logo{ width:48px; height:48px; }
.site-header{ padding:10px 12px; }
.wrap{ padding:16px; }
.hero-content h1{ font-size:30px; }
.hero-content p{ max-width:100%; }
}

/* small screens */
@media (max-width:420px){
.hero .hero-buttons > *{ min-width:120px; padding:12px 18px; }
.hero-content h1{ font-size:26px; }
.logo{ width:44px; height:44px; }
}

/* Interaction polish */
.stat-box:hover h3{ transform:translateY(-4px); transition:transform .18s; }
.primary-btn:focus, .secondary-btn:focus{ outline:3px solid rgba(255,193,7,0.12); outline-offset:3px; }

/* reduced motion */
@media (prefers-reduced-motion:reduce){
*{ transition:none !important; animation:none !important; }
}

/* fallback for browsers that don't support :focus-visible */
:focus{ outline:transparent; }



.page-wrapper {
    max-width: 900px;
    margin: 24px auto;
    padding: 16px;
    background: #fff;
    border-radius: 20px;

    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    box-sizing: border-box;
    overflow-x: hidden;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.10),
        0 12px 40px rgba(0,0,0,0.15);
}


.card {
    flex: 1 1 calc(50% - 25px);     /* Desktop: 2 equal cards */
    min-width: 260px;               /* Prevents shrinking too small */
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* MOBILE FIX */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    .page-wrapper {
        flex-direction: column;
        padding: 14px;
        gap: 18px;
    }

    .card {
        flex: 1 1 100%;
        width: 100%;
        min-width: unset;
        padding: 16px;
    }
}




/* Container */
.projects-section {
  margin: 90px 20px;                /* spacing above and below */
  text-align: center;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 10px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.auto-slider {
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  margin-bottom: 80px;
  box-sizing: border-box;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;             /* slightly smaller gap for mobile comfort */
  align-items: center;
  will-change: transform;
}

/* SLIDE: mobile-first rules */
.slide {
  flex: 0 0 80vw;        /* each slide = 80% of viewport on mobile */
  min-width: 80vw;
  border-radius: 14px;
  overflow: hidden;          /* clip image to radius */
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 0;
  display: block;
}

/* IMAGE: give explicit height on mobile so it doesn't collapse */
.slide img {
  display: block;
  width: 100%;
  height: 220px;          /* fixed mobile height */
  object-fit: cover;
  border-radius: 0;
  vertical-align: middle;
  transform: translateZ(0);
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .slide { flex: 0 0 360px; min-width: 360px; }
  .slide img { height: 260px; }
}



/* Authority Bar (Hero ke niche) */
.authority-bar {
  width: 100%;
  max-width: var(--max-width);
  margin: 20px auto 40px;

  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-subtle);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Each point */
.authority-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Bullet dot with gradient look */
.authority-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 4px 12px rgba(255,193,7,0.22);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .authority-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 16px 12px;
    gap: 10px 20px;
  }

  .authority-item {
    font-size: 14px;
  }
}




/* Case Studies Section */
.case-studies-section {
  margin: 60px 0 100px;
  text-align: center;
}

.case-studies-section .section-head h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 900;
}

.case-studies-section .section-desc {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
}

/* wrapper: grid on desktop, horizontal scroll on small screens */
.cases-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 10px;
}

/* card */
.case-card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* top */
.case-top .brand {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary-dark);
}
.case-top .objective {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* metrics row */
.metrics {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  align-items: center;
  justify-content: flex-start;
}

.metric {
  flex: 1;
  background: rgba(0,0,0,0.02);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.metric .m-title { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.metric .m-value { font-weight: 800; font-size: 18px; color: var(--primary-dark); }

/* highlighted metric */
.metric.highlight {
  background: linear-gradient(90deg, rgba(255,193,7,0.10), rgba(255,138,0,0.06));
  box-shadow: 0 8px 22px rgba(255,193,7,0.04);
}

/* meta */
.case-meta { font-size: 13px; color: var(--muted); }
.pill {
  display: inline-block;
  background: rgba(0,0,0,0.04);
  padding: 6px 8px;
  border-radius: 999px;
  margin-left: 8px;
  font-weight: 700;
  font-size: 12px;
}

/* footer CTA */
.case-footer { margin-top: 14px; text-align: right; }
.case-cta {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid rgba(0,0,0,0.06);
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

/* MOBILE: change to horizontal scroll-snap */
@media (max-width: 900px) {
  .cases-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .cases-wrapper::-webkit-scrollbar { display: none; }
  .case-card {
    scroll-snap-align: center;
    flex: 0 0 78%;
    min-width: 78%;
    margin: 0;
  }
  .case-footer { text-align: left; margin-top: 12px; }
}

/* small screens fine tuning */
@media (max-width: 420px) {
  .case-card { padding: 14px; }
  .metrics { gap: 8px; }
  .metric .m-value { font-size: 16px; }
}



/* Framework Section */
.framework-section {
  margin: 64px 0;
  color: var(--primary-dark);
}

.framework-head {
  text-align: center;
  margin-bottom: 28px;
}
.framework-head h2 {
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 900;
}
.framework-head .lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Grid: 4 columns on desktop */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin: 16px 0 22px;
}

/* Card */
.fw-card {
  background: var(--card);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0,0,0,0.04);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Number badge */
.fw-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(90deg, rgba(255,193,7,0.12), rgba(255,138,0,0.08));
  color: var(--primary-dark);
  box-shadow: 0 8px 22px rgba(255,193,7,0.04);
  font-size: 16px;
}

/* Title & list */
.fw-title {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  color: var(--primary-dark);
}

.fw-list {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Emphasize first bullet if you want */
.fw-list li { margin-bottom: 6px; }

/* CTA area */
.framework-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* Responsive: collapse to single column on small screens */
@media (max-width: 1000px) {
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .framework-grid {
    display: block;
  }
  .fw-card {
    margin: 0 0 14px;
    min-height: auto;
    padding: 18px;
  }
  .fw-card + .fw-card { margin-top: 12px; }
  .framework-cta { flex-direction: column; gap: 10px; }
}

/* Button styles (reuse your variables) */
.primary-btn {
  background: var(--gradient);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,138,0,0.08);
}
.secondary-btn {
  background: transparent;
  border: 2px solid rgba(0,0,0,0.06);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}




/* Final CTA Section */
.final-cta-section {
  width: 100%;
  margin: 80px 0 40px;
  padding: 0;
}

.final-cta-inner {
  max-width: var(--max-width);   /* MATCH site width */
  width: 100%;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

.final-cta-inner h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.final-cta-inner p {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 26px;
  line-height: 1.55;
}

/* Button */
.final-cta-btn {
  display: inline-block;
  padding: 16px 26px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  background: var(--gradient);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(255,138,0,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.final-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(255,138,0,0.16);
}

/* Mobile adjustments */
@media (max-width: 700px) {
  .final-cta-inner {
    padding: 32px 20px;
  }
  .final-cta-inner h2 {
    font-size: 26px;
  }
  .final-cta-inner p {
    font-size: 15px;
  }
  .final-cta-btn {
    padding: 14px 22px;
    font-size: 16px;
  }
}



/* Logos Container */
/* Container */
.social-proof {
  width: 100%;
  max-width: var(--max-width);
  margin: 40px auto 60px;
  padding: 26px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-subtle);
  text-align: center; /* ensures children text-centred by default */
}

/* Heading + description */
.social-head {
  margin-bottom: 32px;
  display: block;
  width: 100%;
  text-align: center;
}

.social-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--primary-dark);
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.social-desc {
  margin: 0;
  font-size: 16px;        /* smaller description */
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* Brands row (logo boxes) */
.brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Logo card */
.brand-box {
  width: 120px;
  height: 80px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .25s ease;
}

.brand-box img {
  max-height: 40px;
  max-width: 100%;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all .25s ease;
}

.brand-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.brand-box:hover img {
  opacity: 1;
  filter: none;
}

/* Responsive */
@media (max-width: 700px) {
  .social-title { font-size: 15px; }
  .social-desc { font-size: 12px; }
  .brand-box { width: 90px; height: 60px; }
  .brand-box img { max-height: 32px; }
}





:root{
  --max-w: 1200px;
  --accent: #ff2e6d;        /* pink accent */
  --accent-2: #ff9bb3;      /* soft pink */
  --muted: rgba(0,0,0,0.6);
  --card-bg: #fff;
  --soft-bg: #fbfbfc;
  --radius: 12px;
  --shadow-1: 0 6px 20px rgba(16,24,40,0.06);
  --shadow-2: 0 10px 30px rgba(16,24,40,0.08);
}

/* Layout */
.faq-layout {
  max-width: var(--max-w);
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  padding: 0 20px;
}

/* Left - FAQ */
.faq-left { text-align: left; }

.faq-heading {
  font-size: 28px;
  margin: 0 0 18px;
  color: #0a2540;
  font-weight: 800;
  line-height: 1.05;
}

/* Accordion styles */
.accordion { display: flex; flex-direction: column; gap: 14px; }

.acc-item {
  background: linear-gradient(180deg, var(--card-bg), var(--card-bg));
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  border: 1px solid rgba(10,37,64,0.05);
  transition: box-shadow .24s ease, transform .18s ease;
}

/* when open: stronger shadow & subtle lift */
.acc-item.open {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
  border: 1px solid rgba(255,46,109,0.12);
}

/* Button row */
.acc-btn {
  width: 100%;
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #0a2540;
}

/* left icon (circle) */
.acc-icon{
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,155,179,0.12), rgba(255,46,109,0.06));
  color: var(--accent);
  box-shadow: 0 4px 10px rgba(255,46,109,0.06);
}

/* Title text next to icon */
.acc-title { display:inline-block; flex:1; }

/* Panel */
.acc-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height .34s cubic-bezier(.2,.9,.2,1), padding .28s ease;
  background: linear-gradient(180deg, rgba(255,155,179,0.02), transparent);
}
.acc-panel p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* open state */
.acc-item.open .acc-panel {
  max-height: 400px; /* JS will animate to scrollHeight for precise motion */
  padding: 12px 18px 18px;
}

/* Hover states */
.acc-btn:hover .acc-icon { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,46,109,0.08); }
.acc-item:not(.open):hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(8,20,48,0.04); }

/* Right visual */
.faq-right {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,155,179,0.02), rgba(17,24,39,0.01));
  border-radius: 18px;
  border: 1px solid rgba(10,37,64,0.03);
  box-shadow: 0 10px 35px rgba(12,20,40,0.04);
  padding: 18px;
}

.visual-wrap {
  width: 100%;
  max-width: 360px;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 6px 18px rgba(10,20,40,0.04);
  border: 1px solid rgba(10,37,64,0.04);
}

.visual-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* responsive */
@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr 320px; gap: 24px; }
  .faq-right { height: 300px; }
}

@media (max-width: 720px) {
  .faq-layout { grid-template-columns: 1fr; padding: 0 12px; gap: 20px; }
  .faq-right { order: 2; height: 260px; }
  .faq-left { order: 1; }
  .faq-heading { font-size: 20px; }
}
@media (max-width: 700px) {
  .faq-left {
    text-align: center;
  }
}




/* ===== BLOG LIST CSS =====
   Note: this uses your existing :root variables (no re-declaration) */
.blog-list { max-width: var(--max-width,1200px); margin: 40px auto; padding: 0 20px 48px; }
.blog-list-header { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:18px; }
.blog-list-header h2 { margin:0; font-size:20px; color:var(--primary-dark,#0a2540); font-weight:800; }
.blog-list-header p { margin:0;color:var(--muted,#6C6C6C); font-size:14px; }

/* grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* card */
.card {
  background: var(--card, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, #D0D0D0);
  box-shadow: var(--shadow-subtle, 0 2px 10px rgba(0,0,0,0.04));
  display:flex;
  flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 320px;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(8,20,48,0.08); }

.card-link { color:inherit; text-decoration:none; display:flex; flex-direction:column; height:100%; }

.card-media { width:100%; height:150px; overflow:hidden; background:linear-gradient(180deg, rgba(0,0,0,0.02), transparent); }
.card-media img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }

.card-body { padding:16px 16px 18px; display:flex; flex-direction:column; gap:10px; flex:1; }

.card-kicker {
  display:inline-block;
  font-size:12px;
  font-weight:700;
  padding:6px 8px;
  border-radius:999px;
  background: rgba(255,122,0,0.08); /* fallback if no var */
  color: var(--accent, #FF7A00);
  width: fit-content;
}

.card-title { margin:0; font-size:16px; font-weight:800; color:var(--primary-dark,#0a2540); line-height:1.2; }
.card-excerpt { margin:0; color:var(--muted,#6C6C6C); font-size:14px; line-height:1.5; }

.card-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; }

.meta-left { display:flex; gap:8px; align-items:center; color:var(--muted,#6C6C6C); font-size:13px; }
.meta-left img { width:28px; height:28px; border-radius:6px; object-fit:cover; border:1px solid rgba(0,0,0,0.04); }

.read-btn {
  background: none;
  border: 1px solid rgba(0,0,0,0.06);
  padding:8px 12px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  color: var(--accent, #FF7A00);
  transition: background .18s ease, transform .12s ease;
}
.read-btn:hover { background: rgba(255,122,0,0.06); transform: translateY(-2px); }

/* responsive tweaks */
@media (max-width:720px) {
  .card-media { height:140px; }
}
@media (max-width:420px) {
  .card-media { height:120px; }
  .card { min-height:0; }
}




/* End of stylesheet */