/* Maple Tree BD - Modern Static Site */

:root{
  --bg: #ffffff;
  --surface: rgba(255,255,255,1);
  --surface-2: #f7f7f8;
  --text: rgba(17,24,39,1);
  --muted: rgba(55,65,81,1);
  --muted-2: rgba(107,114,128,1);
  --brand: #d10f2f;
  --brand-2: #ff3b5c;
  --danger: #d10f2f;
  --border: rgba(17,24,39,.12);
  --shadow: 0 18px 40px rgba(17,24,39,.10);
  --shadow-soft: 0 12px 28px rgba(17,24,39,.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1280px;
  --header-h: 74px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(209,15,47,.12), transparent 62%),
    radial-gradient(900px 520px at 88% 12%, rgba(255,59,92,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 55%, #ffffff 100%);
  overflow-x:hidden;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit}

.container{
  width:min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  margin-inline:auto;
}

.section{
  padding:84px 0;
}
.section.tight{padding:56px 0}

.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.02em;
}

.h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  margin:18px 0 14px;
  letter-spacing:-.02em;
}
.h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height:1.14;
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.h3{
  font-size:20px;
  line-height:1.25;
  margin:0 0 8px;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; max-width:64ch}
.small{color:var(--muted-2); font-size:14px; line-height:1.6}

.grid{display:grid; gap:18px}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid.cols-4{grid-template-columns:repeat(4, minmax(0,1fr))}
.grid.cols-6{grid-template-columns:repeat(6, minmax(0,1fr))}

@media (max-width: 980px){
  .grid.cols-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid.cols-6{grid-template-columns:repeat(3, minmax(0,1fr))}
}
@media (max-width: 720px){
  .section{padding:64px 0}
  .grid.cols-3,.grid.cols-2{grid-template-columns:1fr}
  .grid.cols-4{grid-template-columns:1fr}
  .grid.cols-6{grid-template-columns:2fr 2fr}
}

.card{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,247,248,1) 100%);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  padding:18px;
}
.card.hover{
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card.hover:hover{
  transform: translateY(-3px);
  border-color: rgba(17,24,39,.18);
  background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,245,246,1) 100%);
}

.icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background: #fff;
  border:1px solid var(--border);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  cursor:pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(17,24,39,.18); background: var(--surface-2)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  border-color: rgba(209,15,47,.35);
  background: linear-gradient(90deg, rgba(209,15,47,1), rgba(255,59,92,1));
  color:#ffffff;
}
.btn.primary:hover{border-color: rgba(209,15,47,.55)}
.btn.ghost{background:transparent}
.btn.sm{padding:10px 12px; border-radius:11px; font-size:14px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--border);
  background: #fff;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  height:var(--header-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.78);
  border-bottom:1px solid rgba(17,24,39,.08);
}

.header .inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand .logo{
  width:48px; height:48px;
  border-radius:50%;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}
.brand .text{line-height:1.1}
.brand .text strong{display:block; font-size:14px; letter-spacing:.02em}
.brand .text span{display:block; font-size:12px; color:var(--muted-2)}

.nav{
  display:flex;
  align-items:center;
  gap:4px;
}

.nav a, .nav button{
  font-size:14px;
}

.navlink{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
  background:transparent;
}
.navlink:hover{
  color:var(--text);
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
}
.navlink.active{
  color:var(--text);
  background: rgba(209,15,47,.08);
  border-color: rgba(209,15,47,.18);
}

.dropdown{position:relative}
.dropdown > button{display:inline-flex; align-items:center; gap:8px}
.dropdown > button svg{opacity:.8}

.menu{
  position:absolute;
  top: calc(100% + 10px);
  left:0;
  min-width: 260px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  display:none;
}
.menu a{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 10px;
  border-radius:12px;
  color: var(--muted);
  border:1px solid transparent;
}
.menu a:hover{
  color:var(--text);
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
}
.menu a strong{font-size:14px; color:var(--text)}
.menu a span{font-size:12px; color:var(--muted-2)}
.dropdown.open .menu{display:block}

.header-actions{display:flex; align-items:center; gap:10px}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
}

@media (max-width: 980px){
  .brand{min-width:auto}
  .nav{display:none}
  .burger{display:inline-flex}
}

.mobile-drawer{
  position:fixed;
  inset: 0;
  display:none;
  z-index:60;
}
.mobile-drawer.open{display:block}
.mobile-drawer .backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}
.mobile-drawer .panel{
  position:absolute;
  top: 12px;
  right: 12px;
  width: min(420px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  padding: 12px;
}
.mobile-drawer .panel header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 6px 10px;
}
.mobile-nav a, .mobile-nav button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor:pointer;
}
.mobile-nav a:hover, .mobile-nav button:hover{
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
  color: var(--text);
}
.mobile-sub{
  padding: 0 6px 8px 10px;
  display:none;
}
.mobile-sub a{justify-content:flex-start}
.mobile-item.open + .mobile-sub{display:block}

.hero{
  position:relative;
  padding: 54px 0 70px;
  min-height: 620px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.26) 100%),
    url("../ChatGPT Image Feb 26, 2026, 06_09_30 PM.png");
  background-position: center, 70% center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  filter: saturate(1.05);
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 18%, rgba(209,15,47,.18), transparent 62%),
    radial-gradient(600px 420px at 70% 20%, rgba(255,59,92,.12), transparent 64%);
  z-index:0;
  pointer-events:none;
}

.hero-inner{position:relative; z-index:1}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  align-items:center;
  gap: 28px;
}
.hero-copy{max-width: 720px}
.hero-title{
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}
.accent{color: var(--brand)}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.stats.glass{
  margin-top: 22px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 40px rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats.glass .stat{
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(17,24,39,.08);
}

.hero-media{
  min-height: 520px;
}
.hero-student-wrap{
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  max-width: 820px;
  pointer-events:none;
  z-index: 1;
  overflow: visible;
}
.hero-student{
  position:absolute;
  right: -8vw;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(17,24,39,.18));
  transform: translate3d(120px, 0, 0);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroEnter 4.8s cubic-bezier(.16,1,.3,1) .15s both;
}
@keyframes heroEnter{
  0%{opacity:0; transform: translate3d(120px, 0, 0)}
  100%{opacity:1; transform: translate3d(0, 0, 0)}
}
.hero-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge .flag{font-size: 18px}
.hero-badge strong{display:block; font-size: 14px; line-height: 1.05}
.hero-badge .small{display:block; color: var(--muted-2)}

.hero-leaves{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}
.hero-leaves .leaf{
  position:absolute;
  width: 18px;
  height: 18px;
  border-radius: 6px 14px 6px 14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(209,15,47,.38) 55%, rgba(209,15,47,0) 75%);
  opacity: .55;
  filter: blur(.2px);
  animation: leafFall 10s linear infinite;
}
.hero-leaves .l1{left: 8%; top:-20px; animation-duration: 12s; transform: rotate(18deg)}
.hero-leaves .l2{left: 22%; top:-40px; animation-duration: 14s; opacity:.45; transform: rotate(45deg)}
.hero-leaves .l3{left: 60%; top:-30px; animation-duration: 11s; opacity:.35; transform: rotate(22deg)}
.hero-leaves .l4{left: 74%; top:-50px; animation-duration: 16s; opacity:.40; transform: rotate(55deg)}
.hero-leaves .l5{left: 90%; top:-28px; animation-duration: 13s; opacity:.30; transform: rotate(30deg)}
@keyframes leafFall{
  0%{transform: translate3d(0,0,0) rotate(0deg)}
  100%{transform: translate3d(-40px, 780px,0) rotate(220deg)}
}

@media (prefers-reduced-motion: reduce){
  .hero-leaves .leaf{animation:none}
  .hero-student{animation:none; opacity: 1; transform: translate3d(0,0,0)}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap: 18px}
  .hero-media{display:none}
  .hero-student-wrap{position:relative; width: 100%; height: 440px; margin-top: 6px; z-index: 1}
  .hero-student{right: -70px; bottom: -60px; height: auto; width: min(860px, 120vw)}
}

@media (max-width: 720px){
  .hero{padding: 44px 0 60px}
  .stats.glass{padding: 12px}
  .hero-badge{top: 12px; right: 12px}
  .hero-student-wrap{height: 380px}
  .hero-student{right: -74px; bottom: -56px; width: min(780px, 140vw)}
}
.hero .panel{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,247,248,1));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero .panel .top{
  padding:18px;
  border-bottom:1px solid rgba(17,24,39,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.hero .panel .body{padding:18px}

.hero-art{
  height: 380px;
  background:
    radial-gradient(600px 320px at 18% 25%, rgba(209,15,47,.16), transparent 62%),
    radial-gradient(560px 320px at 70% 20%, rgba(255,59,92,.12), transparent 62%),
    radial-gradient(560px 340px at 55% 70%, rgba(17,24,39,.06), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,1), rgba(247,247,248,1));
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}


.stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.stats .stat{
  padding:14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: #fff;
}
.stats .stat strong{display:block; font-size:18px}
.stats .stat span{display:block; font-size:12px; color:var(--muted-2)}
@media (max-width: 980px){
  .stats{grid-template-columns: repeat(2, minmax(0,1fr))}
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 720px){
  .split{grid-template-columns:1fr}
}

.kicker{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.core-services{
  position:relative;
  overflow:hidden;
}
.core-services::before{
  content:"";
  position:absolute;
  inset:0;
  background: #f9f9f9;
  z-index: 0;
}
.core-services > .container{position:relative; z-index:1}

.core-services .kicker{margin-bottom: 22px}
.core-services .h2{margin:0}
.core-services .lead{max-width: 62ch}

.btn.cs-pill{
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(17,24,39,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(17,24,39,.08);
  transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn.cs-pill:hover{
  background: var(--brand);
  border-color: rgba(209,15,47,.40);
  color: #fff;
  box-shadow: 0 18px 42px rgba(209,15,47,.22);
}
.btn.cs-pill:active{transform: translateY(0px)}
.btn.cs-pill:focus-visible{
  outline: 3px solid rgba(209,15,47,.22);
  outline-offset: 2px;
}

.core-services .grid{gap: 18px}
.core-services .card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.34);
  box-shadow: 0 22px 54px rgba(17,24,39,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
}
.core-services .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.10));
  pointer-events:none;
}
.core-services .card > *{position:relative; z-index:1}

.core-services .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}

.core-services .h3{margin: 10px 0 6px}

.cs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.cs-card{
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s;
  position: relative;
}
.cs-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(209,15,47,0.10);
  border-color: rgba(209,15,47,0.18);
}
.cs-icon-wrap{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cs-icon--red   { background: rgba(209,15,47,0.10);  color: #d10f2f; }
.cs-icon--blue  { background: rgba(37,99,235,0.10);  color: #2563eb; }
.cs-icon--green { background: rgba(22,163,74,0.10);  color: #16a34a; }
.cs-icon--orange{ background: rgba(234,88,12,0.10);  color: #ea580c; }
.cs-icon--purple{ background: rgba(124,58,237,0.10); color: #7c3aed; }
.cs-icon--teal  { background: rgba(13,148,136,0.10); color: #0d9488; }
.cs-card-body{
  flex: 1;
}
.cs-card-body h3{
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.4rem;
}
.cs-card-body p{
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.cs-arrow{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  flex-shrink: 0;
  align-self: center;
  transition: background 0.2s, color 0.2s;
}
.cs-card:hover .cs-arrow{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 900px){ .cs-grid{grid-template-columns: 1fr 1fr} }
@media (max-width: 580px){ .cs-grid{grid-template-columns: 1fr} }

.cs-bottom{
  display:flex;
  justify-content:flex-end;
  margin-top: 16px;
}

.why-section{
  position:relative;
  overflow:hidden;
}
.why-section::before{
  content:"";
  position:absolute;
  inset:-140px -60px;
  background:
    radial-gradient(800px 520px at 18% 25%, rgba(255,168,216,.40), transparent 62%),
    radial-gradient(900px 560px at 80% 22%, rgba(167,139,255,.38), transparent 64%),
    radial-gradient(900px 620px at 50% 110%, rgba(137,196,255,.28), transparent 62%),
    radial-gradient(2px 2px at 18% 28%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(2px 2px at 62% 34%, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(2px 2px at 78% 62%, rgba(255,255,255,.42), transparent 60%),
    radial-gradient(2px 2px at 32% 70%, rgba(255,255,255,.38), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(252,248,255,1));
  z-index:0;
}
.why-section > .container{position:relative; z-index:1}

.why-section .split{
  gap: 22px;
}

.why-section .split > .card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.32);
  box-shadow: 0 28px 70px rgba(17,24,39,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow:hidden;
}

.why-section .split > .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.10));
  pointer-events:none;
}
.why-section .split > .card > *{position:relative; z-index:1}

.why-section .why-mini{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.34);
  box-shadow: 0 18px 46px rgba(17,24,39,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.why-section .why-mini .icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}

.dest-item{
  display:flex;
  align-items:center;
  gap: 12px;
}
.dest-item .flag{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}
.dest-item .flag img{
  display:block;
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.why-section .btn.cs-pill{
  background: rgba(255,255,255,.72);
}
.why-section .btn.cs-pill:hover{
  background: var(--brand);
  border-color: rgba(209,15,47,.40);
  color: #fff;
  box-shadow: 0 18px 42px rgba(209,15,47,.22);
}

@media (max-width: 720px){
  .why-section::before{inset:-160px -20px}
}

/* ── Empower Section ─────────────────────────────────────── */
.empower-section{
  background: #fff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.empower-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23d10f2f' stroke-width='1.5' opacity='0.06'/%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%23d10f2f' stroke-width='0.8' opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
  background-position: right -100px top -100px, left -80px bottom -80px;
  background-repeat: no-repeat;
  background-size: 600px 600px, 400px 400px;
  pointer-events: none;
  z-index: 0;
}
.empower-section > .container{
  position: relative;
  z-index: 1;
}
.empower-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}
.empower-title{
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.empower-sub{
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}
.empower-desc{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.empower-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.empower-card{
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #f0f0f0;
}
.empower-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(209,15,47,0.12);
}
.empower-card--featured{
  border: 2px solid var(--brand);
  box-shadow: 0 8px 32px rgba(209,15,47,0.10);
}
.empower-img-wrap{
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.empower-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.empower-card:hover .empower-img-wrap img{
  transform: scale(1.05);
}
.empower-img-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.empower-card-body{
  padding: 1.6rem 1.8rem 0.5rem;
  flex: 1;
}
.empower-card-body h3{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.empower-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(209,15,47,0.08);
  border-radius: 50%;
  color: var(--brand);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.empower-card-body ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.empower-card-body li{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.empower-card-body li i{
  color: var(--brand);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.empower-card-footer{
  padding: 1.4rem 1.8rem 1.8rem;
}
.empower-btn{
  display: block;
  text-align: center;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.empower-btn:hover{
  background: transparent;
  color: var(--brand);
  transform: translateY(-2px);
}
.empower-card--featured .empower-btn{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 900px){
  .empower-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 600px){
  .empower-grid{grid-template-columns: 1fr}
  .empower-header{margin-bottom: 2rem}
}

/* ── About New Section ───────────────────────────────────── */
.about-new{
  background: #f2f4f8;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-new::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}
.about-new > .container{
  position: relative;
  z-index: 1;
}
.about-card{
  max-width: 1140px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 40px -12px rgba(0, 30, 30, 0.12), 0 8px 24px -6px rgba(20, 40, 40, 0.05);
  padding: 3.5rem 3rem;
  transition: all 0.2s ease;
  margin: 0 auto;
}
.about-card h2{
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #8B0000;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(209,15,47,0.2);
  padding-bottom: 0.75rem;
  display: inline-block;
}
.maple-leaf{
  color: var(--brand);
  margin-right: 8px;
  font-size: 2rem;
  font-weight: 300;
}
.intro-text{
  font-family: var(--font-family);
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--text);
  margin: 1.5rem 0 1.8rem 0;
  font-weight: 350;
  background: #FFF5F5;
  padding: 1.6rem 2rem;
  border-radius: 22px;
  border-left: 5px solid var(--brand);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.02);
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin: 2.2rem 0 2.4rem 0;
  background: #ffffff;
  padding: 0.2rem 0;
}
.service-item{
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.03rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px dashed #FFB3B3;
  padding-bottom: 0.7rem;
}
.service-item i{
  color: var(--brand);
  font-size: 1.2rem;
  width: 1.6rem;
  text-align: center;
}
.desc-block{
  font-family: var(--font-family);
  margin: 1.8rem 0 1.2rem 0;
  color: var(--text);
  line-height: 1.65;
}
.desc-block p{
  font-family: var(--font-family);
  margin-bottom: 1.3rem;
  font-weight: 350;
  font-size: 1.04rem;
}
.icon-bullet{
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 1px;
  margin-right: 0.75rem;
  vertical-align: middle;
}
.two-col-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0 1.8rem;
}
.col-card{
  font-family: var(--font-family);
  background: #FFF8F8;
  padding: 1.8rem 2rem;
  border-radius: 22px;
  box-shadow: 0 5px 12px rgba(209,15,47,0.03);
  border: 1px solid #FFD6D6;
}
.col-card h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.3rem;
  color: #8B0000;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.col-card h3 i{
  color: var(--brand);
  font-size: 1.5rem;
}
.col-card ul{
  list-style: none;
}
.col-card li{
  font-family: var(--font-family);
  margin-bottom: 0.75rem;
  font-weight: 350;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.col-card li i{
  color: var(--brand);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  width: 1.2rem;
}
.contact-row{
  font-family: var(--font-family);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  background: #ffffff;
  border-top: 1px solid #FFB3B3;
  padding-top: 2rem;
  margin-top: 2rem;
  align-items: center;
  font-size: 1rem;
}
.contact-item{
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #8B0000;
  font-weight: 450;
}
.contact-item i{
  font-size: 1.3rem;
  color: var(--brand);
  width: 1.8rem;
}
.contact-item a{
  font-family: var(--font-family);
  text-decoration: none;
  color: #8B0000;
  border-bottom: 1px dotted #FFB3B3;
  transition: border 0.15s;
}
.contact-item a:hover{
  border-bottom: 1px solid var(--brand);
  color: var(--brand);
}
.small-note{
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 2.2rem;
}
hr{
  border: none;
  border-top: 1.5px solid #FFD6D6;
  margin: 1rem 0 0.2rem;
}

@media (max-width: 700px){
  .about-card{padding: 2rem 1.5rem}
  .service-grid{grid-template-columns: 1fr}
  .two-col-layout{grid-template-columns: 1fr}
  .contact-row{flex-direction: column; align-items: flex-start; gap: 1rem}
  .about-new::before{background-attachment: scroll}
}

@media (max-width: 980px){
  .core-services .grid.cols-3{grid-template-columns: repeat(2, minmax(0,1fr))}
}
@media (max-width: 720px){
  .core-services .grid.cols-3{grid-template-columns: 1fr}
  .core-services .kicker{flex-direction:column; align-items:flex-start}
  .cs-bottom{justify-content:flex-start}
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section{
  position: relative;
  background: linear-gradient(135deg, #8B0000 0%, var(--brand) 50%, #c0392b 100%);
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.cta-bg-overlay{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='%23fff' stroke-width='0.8' opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23fff' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
  background-position: right -120px center, left -60px bottom -60px;
  background-repeat: no-repeat;
  background-size: 600px 600px, 400px 400px;
  pointer-events: none;
}
.cta-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text{
  flex: 1;
  min-width: 280px;
}
.cta-tag{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(255,255,255,0.25);
}
.cta-title{
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.cta-lead{
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 1.6rem;
  max-width: 560px;
}
.cta-features{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
}
.cta-features span{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 500;
}
.cta-features i{
  color: #ffd6d6;
  font-size: 0.95rem;
}
.cta-actions{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.cta-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}
.cta-btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.cta-btn-secondary:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

@media (max-width: 700px){
  .cta-inner{flex-direction: column; align-items: flex-start}
  .cta-actions{flex-direction: row; flex-wrap: wrap; width: 100%}
  .cta-btn-primary, .cta-btn-secondary{flex: 1; min-width: 160px}
}

/* ── Latest News Section ─────────────────────────────────── */
.news-section{
  background: #f9f9f9;
  padding: 4.5rem 1.5rem 5rem !important;
}
.news-header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.news-kicker-tag{
  display: inline-block;
  background: rgba(209,15,47,0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.news-title{
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.news-lead{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}
.news-visit-btn{
  white-space: nowrap;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  align-self: center;
}
.news-visit-btn:hover{
  background: transparent;
  color: var(--brand);
}
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.news-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(209,15,47,0.10);
}
.news-card--featured{
  border-top: 3px solid var(--brand);
}
.news-img-wrap{
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.news-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img-wrap img{
  transform: scale(1.06);
}
.news-tag{
  position: absolute;
  top: 12px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
}
.news-body{
  padding: 1.5rem 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-body h3{
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  margin-bottom: 0.65rem;
}
.news-body p{
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}
.news-read-more{
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.news-read-more:hover{
  gap: 0.7rem;
}

@media (max-width: 900px){
  .news-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 580px){
  .news-grid{grid-template-columns: 1fr}
  .news-header{flex-direction: column; align-items: flex-start}
}

/* ── Testimonials Section ────────────────────────────────── */
.testi-section{
  background: linear-gradient(135deg, #fff5f5 0%, #fff 50%, #fff8f0 100%);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.testi-bg-decoration{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Ccircle cx='250' cy='250' r='230' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3Ccircle cx='250' cy='250' r='170' fill='none' stroke='%23d10f2f' stroke-width='0.8' opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Ccircle cx='150' cy='150' r='130' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
  background-position: left -80px center, right -50px bottom -50px;
  background-repeat: no-repeat;
  background-size: 500px 500px, 300px 300px;
  pointer-events: none;
  z-index: 0;
}
.testi-section > .container{
  position: relative;
  z-index: 1;
}
.testi-header{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.testi-kicker-tag{
  display: inline-block;
  background: rgba(209,15,47,0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.testi-title{
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.testi-lead{
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}
.testi-slider{
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.testi-track{
  overflow: hidden;
}
.testi-slide{
  display: none;
}
.testi-slide.active{
  display: block;
  animation: testiFade 0.45s ease;
}
@keyframes testiFade{
  from{opacity:0; transform: translateY(14px)}
  to{opacity:1; transform: translateY(0)}
}
.testi-card{
  background: #fff;
  border-radius: 24px;
  padding: 2.8rem 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 12px rgba(209,15,47,0.05);
  border: 1px solid rgba(209,15,47,0.08);
  position: relative;
}
.testi-quote-icon{
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.testi-text{
  font-size: 1.12rem;
  line-height: 1.75;
  color: #2d2d2d;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-stars{
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.8rem;
  color: #f5a623;
  font-size: 1rem;
}
.testi-author{
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
}
.testi-avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(209,15,47,0.15);
  flex-shrink: 0;
}
.testi-author-info{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testi-author-info strong{
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
}
.testi-author-info span{
  font-size: 0.88rem;
  color: var(--muted);
}
.testi-badge{
  background: rgba(209,15,47,0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  flex-shrink: 0;
}
.testi-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.testi-arrow{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(209,15,47,0.35);
  background: #fff;
  color: var(--brand);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  line-height: 1;
}
.testi-arrow i{
  color: var(--brand);
  font-size: 0.9rem;
  display: block;
}
.testi-arrow:hover{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.08);
}
.testi-arrow:hover i{
  color: #fff;
}
.testi-dots{
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.testi-dot{
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.25s ease;
  padding: 0;
}
.testi-dot.active{
  background: var(--brand);
  width: 26px;
}

@media (max-width: 600px){
  .testi-card{padding: 2rem 1.5rem}
  .testi-text{font-size: 1rem}
}

.slider{
  position:relative;
}
.slider .track{
  display:flex;
  gap: 14px;
  overflow:hidden;
}
.slider .slide{
  min-width: 100%;
}
.slider .controls{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}

.footer{
  border-top: none;
  padding: 56px 0 0;
  background: #111827;
  color: rgba(255,255,255,0.75);
}
.footer .cols{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer h4, .footer strong{
  color: #fff;
}
.footer p, .footer .small{
  color: rgba(255,255,255,0.60);
}
.footer a{color: var(--brand); transition: color 0.15s, opacity 0.15s;}
.footer a:hover{color: #ff4d6d; opacity: 1;}
.footer .brand strong{color: #fff;}
.footer .brand span{color: rgba(255,255,255,0.55);}
.footer .bottom{
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  color: rgba(255,255,255,0.40);
  font-size: 13px;
}
@media (max-width: 980px){
  .footer .cols{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .footer .cols{grid-template-columns:1fr}
  .footer .bottom{flex-direction:column; align-items:flex-start}
}

.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
.field label{font-size:13px; color: var(--muted)}
.field input, .field textarea, .field select{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.14);
  background: #fff;
  color: var(--text);
  outline:none;
}
.field input:focus, .field textarea:focus, .field select:focus{border-color: rgba(209,15,47,.45)}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing: 0;
  overflow:hidden;
  border-radius: 16px;
  border:1px solid rgba(17,24,39,.12);
}
.table th, .table td{
  padding: 12px;
  text-align:left;
  border-bottom: 1px solid rgba(17,24,39,.08);
  color: var(--muted);
  font-size: 14px;
}
.table th{color: var(--text); background: var(--surface-2)}
.table tr:last-child td{border-bottom:0}

.notice{
  border:1px solid rgba(209,15,47,.22);
  background: rgba(209,15,47,.06);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
}

.breadcrumbs{color: var(--muted-2); font-size: 13px}
.breadcrumbs a{color: var(--muted)}
.breadcrumbs a:hover{color: var(--text)}

.page-hero{
  padding: 44px 0 10px;
}

.pills{display:flex; flex-wrap:wrap; gap:10px}
.pill{padding:10px 12px; border-radius:999px; border:1px solid rgba(17,24,39,.14); background: #fff; color: var(--muted); cursor:pointer}
.pill.active{border-color: rgba(209,15,47,.45); background: rgba(209,15,47,.06); color: var(--text)}

.searchbar{
  display:flex; gap:10px; align-items:center;
  border:1px solid rgba(17,24,39,.14);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}
.searchbar input{border:0; background:transparent; color:var(--text); outline:none; width:100%}

.pagination{display:flex; gap:10px; align-items:center; justify-content:center; margin-top: 18px}

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
  z-index:100;
}
.skip-link:focus{left:10px}
