:root{
  --brand: #1f73b7;
  --brand-dark: #165c93;

  --slate-900: #0f172a;
  --slate-800: #1f2937;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;

  --bg: #ffffff;
  --bg-soft: #f8fafc;

  --line: rgba(15, 23, 42, 0.10);
  --shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 10px 26px rgba(2, 6, 23, 0.06);

  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;

  --ease: cubic-bezier(.2,.8,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(31,115,183,0.08), transparent 55%),
    radial-gradient(800px 500px at 92% 12%, rgba(31,115,183,0.05), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.srOnly{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}
.reveal.isVisible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ transition:none; opacity:1; transform:none; }
  *{ scroll-behavior:auto !important; }
}

/* Topbar */
.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; padding: 10px 0;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 900;
  color: var(--slate-700);
}
.topbar__left{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.topbar__link{ font-size: 13px; color: var(--slate-600); font-weight: 800; }
.topbar__link:hover{ color: var(--slate-900); }
.topbar__link--cta{ color: var(--brand); }

/* Header */
.header{
  position: sticky; top:0; z-index:20;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; 
  align-items:center; 
  min-height: 10x;      /* Ensures taller header */
  gap: 20px;
}


/* Bigger logo */
.brand{ display:flex; align-items:center; }
.brand__logo{
  height: 110px;        /* MUCH bigger */
  width: auto;
  object-fit: contain;
  display:block;
}


/* Nav */
.nav{ position:relative; }
.nav__toggle{
  display:none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  cursor:pointer;
}
.nav__toggleLine{
  display:block; width: 18px; height:2px;
  background: var(--slate-900);
  margin: 4px 0;
  opacity: 0.9;
}
.nav__menu{
  display:flex; align-items:center; gap: 10px;
  list-style:none; padding:0; margin:0;
}
.nav__link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight: 900;
  font-size: 13px;
  color: var(--slate-700);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}
.nav__link:hover{
  color: var(--slate-900);
  background: rgba(15, 23, 42, 0.04);
}
.nav__ctaRow{ display:flex; gap:10px; margin-left: 6px; }

/* Dropdown */
.nav__dropdown{ position:relative; }
.nav__dropdownBtn{ border: 0; background: transparent; cursor: pointer; }
.chev{ font-size: 12px; opacity: 0.8; }

.nav__dropdownPanel{
  position:absolute; top: 50px; left: 0;
  min-width: 300px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  display:none;
}
.nav__dropdownPanel.isOpen{ display:block; }

.dropdown__item{
  display:flex; flex-direction:column;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}
.dropdown__item:hover{
  background: rgba(31,115,183,0.06);
  border-color: rgba(31,115,183,0.14);
}
.dropdown__title{ font-weight: 900; font-size: 13px; color: var(--slate-900); }
.dropdown__desc{ font-size: 12px; color: var(--slate-600); margin-top: 2px; }
.dropdown__divider{ height:1px; background: var(--line); margin: 8px 0; }
.dropdown__item--highlight{
  background: rgba(31,115,183,0.08);
  border-color: rgba(31,115,183,0.16);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31,115,183,0.28);
  background: linear-gradient(135deg, rgba(31,115,183,0.15), rgba(31,115,183,0.08));
  color: var(--slate-900);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(31,115,183,0.40);
  box-shadow: var(--shadow);
}
.btn:active{ transform: translateY(0); }

.btn--ghost{
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255,255,255,0.8);
  box-shadow: none;
}
.btn--ghost:hover{
  border-color: rgba(31,115,183,0.28);
  background: rgba(31,115,183,0.06);
}

/* Hero */
.hero{ padding: 48px 0 20px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  color: var(--slate-700);
  font-weight: 900;
  font-size: 13px;
}
.hero__headline{
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.hero__sub{
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.65;
  max-width: 60ch;
}
.hero__actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 18px; }

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.metaCard{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  padding: 12px 12px;
  box-shadow: var(--shadow-soft);
}
.metaCard__title{ font-weight: 900; font-size: 13px; color: var(--slate-900); }
.metaCard__text{ margin-top: 6px; color: var(--slate-600); font-size: 12px; line-height: 1.55; }

.hero__controls{ display:flex; gap: 10px; margin-top: 18px; }
.dot{
  width: 10px; height:10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.20);
  background: rgba(15,23,42,0.06);
  cursor:pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}
.dot:hover{ transform: scale(1.1); }
.dot.isActive{
  background: rgba(31,115,183,0.70);
  border-color: rgba(31,115,183,0.85);
}

.hero__visual{ display:flex; flex-direction:column; gap: 10px; }
.heroCard{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.95);
}
.heroCard__badge{
  padding: 12px 14px;
  font-weight: 900;
  font-size: 13px;
  color: var(--slate-700);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
}
.heroCard__imageWrap{ height: 300px; position:relative; overflow:hidden; }
.heroCard__image{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.04);
  transition: transform 700ms var(--ease), opacity 450ms var(--ease);
}
.heroCard__imageOverlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 45%, rgba(15,23,42,0.10) 100%);
  pointer-events:none;
}
.heroCard__foot{
  padding: 14px;
  transition: transform 450ms var(--ease), opacity 450ms var(--ease);
}
.heroCard__footTitle{ font-weight: 900; letter-spacing: -0.2px; color: var(--slate-900); }
.heroCard__footText{ margin-top: 6px; color: var(--slate-600); font-size: 13px; line-height: 1.6; }

.hero__note{
  color: var(--slate-500);
  font-size: 12px;
  line-height: 1.5;
}

/* Sections */
.section{ padding: 58px 0; }
.section--alt{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{ margin-bottom: 18px; }
.section__title{ margin:0; font-size: 26px; letter-spacing:-0.3px; color: var(--slate-900); font-weight: 900; }
.section__desc{ margin: 8px 0 0; color: var(--slate-600); max-width: 78ch; line-height: 1.7; }

/* CTA Band */
.ctaBand{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(31,115,183,0.06);
  padding: 26px 0;
}
.ctaBand__inner{ display:flex; align-items:center; justify-content:space-between; gap: 18px; flex-wrap:wrap; }
.ctaBand__title{ margin:0; font-size: 20px; letter-spacing:-0.2px; color: var(--slate-900); font-weight: 900; }
.ctaBand__desc{ margin: 8px 0 0; color: var(--slate-600); line-height: 1.7; max-width: 70ch; }
.ctaBand__actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* Grids */
.grid4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

/* Cards */
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(31,115,183,0.20);
}
.card__icon{ font-size: 20px; }
.card__title{ margin: 10px 0 0; font-size: 16px; letter-spacing: -0.2px; color: var(--slate-900); font-weight: 900; }
.card__text{ margin: 8px 0 0; color: var(--slate-600); line-height: 1.7; font-size: 13px; }
.card__link{ display:inline-block; margin-top: 10px; color: var(--brand); font-weight: 900; font-size: 13px; }
.card__link:hover{ color: var(--brand-dark); }

.list{ margin: 10px 0 0; padding-left: 18px; color: var(--slate-600); font-size: 13px; line-height: 1.8; }

/* Selector */
.selector{
  border: 1px solid rgba(31,115,183,0.18);
  background: rgba(31,115,183,0.06);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}
.selector__title{ font-weight: 900; letter-spacing: -0.2px; color: var(--slate-900); }
.selector__desc{ margin: 6px 0 0; color: var(--slate-600); }
.selector__row{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
select, input, textarea{
  width: 100%;
  max-width: 420px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.14);
  background: rgba(255,255,255,0.96);
  color: var(--slate-900);
  outline: none;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
select:focus, input:focus, textarea:focus{
  border-color: rgba(31,115,183,0.45);
  box-shadow: 0 0 0 4px rgba(31,115,183,0.14);
}
.selector__result{
  margin-top: 12px;
  color: var(--slate-800);
  font-size: 13px;
  line-height: 1.7;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.95);
  display:none;
}
.selector__result.isShown{ display:block; }

.miniHint{
  color: var(--slate-600);
  font-weight: 700;
  font-size: 13px;
}

/* Service accordion sections */
.service{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
  margin-top: 14px;
}
.service__head{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.98);
  border: 0;
  cursor: pointer;
  text-align:left;
}
.service__head:hover{
  background: rgba(31,115,183,0.04);
}
.service__left{ display:flex; flex-direction:column; gap: 4px; }
.service__badge{
  display:inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31,115,183,0.20);
  background: rgba(31,115,183,0.08);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.service__title{
  font-weight: 900;
  font-size: 18px;
  color: var(--slate-900);
}
.service__sub{
  color: var(--slate-600);
  font-weight: 700;
  font-size: 13px;
}
.service__right{ display:flex; align-items:center; gap: 10px; }
.service__hint{ color: var(--slate-600); font-weight: 800; font-size: 13px; }
.service__chev{
  font-size: 16px;
  transition: transform 260ms var(--ease);
  color: var(--slate-700);
}
.service.isOpen .service__chev{ transform: rotate(180deg); }

.service__body{
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  animation: bodyIn 300ms var(--ease) both;
}
@keyframes bodyIn{
  from{ opacity:0; transform: translateY(-6px); }
  to{ opacity:1; transform: translateY(0); }
}
.service__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.service__block{
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 16px;
  background: rgba(248,250,252,1);
  padding: 14px;
}
.service__block h3{
  margin:0;
  font-size: 14px;
  font-weight: 900;
  color: var(--slate-900);
}
.service__block ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--slate-600);
  line-height: 1.85;
  font-size: 13px;
  font-weight: 600;
}
.service__ctaRow{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Panels */
.panel{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.95);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.panel--media{ padding: 0; overflow:hidden; }
.panel__img{
  width:100%;
  height: 200px;
  object-fit: cover;
  display:block;
  border-bottom: 1px solid rgba(15,23,42,0.10);
}
.panel__content{ padding: 16px 18px 18px; }
.panel__title{ margin:0; font-size: 16px; letter-spacing: -0.2px; color: var(--slate-900); font-weight: 900; }
.panel__text{ margin: 8px 0 0; color: var(--slate-600); line-height: 1.75; }

.bullets{ margin: 12px 0 0; padding-left: 18px; color: var(--slate-600); line-height: 1.9; }
.checklist{ list-style:none; padding:0; margin: 12px 0 0; }
.checklist li{ display:flex; align-items:center; gap:10px; padding: 6px 0; color: var(--slate-700); font-weight: 800; }
.check{
  display:inline-flex; align-items:center; justify-content:center;
  width: 22px; height:22px; border-radius: 999px;
  background: rgba(31,115,183,0.12);
  border: 1px solid rgba(31,115,183,0.20);
  color: var(--brand);
  font-weight: 900;
}
.miniCallout{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(31,115,183,0.06);
  border: 1px solid rgba(31,115,183,0.14);
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 13px;
}

/* Trust */
.trustStrip{
  display:flex; flex-wrap:wrap; gap: 10px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-soft);
}
.trustStrip__item{
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(15,23,42,0.16);
  background: rgba(248,250,252,1);
  color: var(--slate-700);
  font-size: 12px;
  font-weight: 900;
}
.proofList{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }
.proofTag{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.96);
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 800;
}
.quote{
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(31,115,183,0.18);
  background: rgba(31,115,183,0.06);
  color: var(--slate-800);
  line-height: 1.7;
  font-size: 13px;
}
.quote__by{ margin-top: 8px; color: var(--slate-600); font-weight: 900; font-size: 12px; }

/* Contact */
.form{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.95);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.formRow{ display:flex; flex-direction:column; gap: 8px; margin-bottom: 12px; }
label{ font-size: 13px; color: var(--slate-700); font-weight: 900; }
textarea{ max-width: 100%; }
.formNote{ margin: 10px 0 0; color: var(--slate-500); font-size: 12px; line-height: 1.6; }

.contactCard{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.95);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.contactCard__title{ margin:0; font-size: 16px; letter-spacing:-0.2px; color: var(--slate-900); font-weight: 900; }
.contactCard__text{ margin: 8px 0 0; color: var(--slate-600); line-height:1.75; }
.contactCard__items{ margin-top: 14px; display:flex; flex-direction:column; gap: 12px; }
.contactItem__label{
  font-size: 12px; color: var(--slate-500);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contactItem__value{ margin-top: 4px; color: var(--slate-900); font-weight: 900; }
.contactCard__hint{
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(31,115,183,0.06);
  border: 1px solid rgba(31,115,183,0.14);
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.65;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(248,250,252,1);
}
.footer__inner{ display:flex; align-items:flex-start; justify-content:space-between; gap: 16px; }
.footer__brandRow{ display:flex; gap: 12px; align-items:flex-start; }
.footer__logo{ height: 44px; width:auto; object-fit:contain; }
.footer__brand{ font-weight: 900; color: var(--slate-900); }
.footer__small{ margin-top: 6px; color: var(--slate-600); font-size: 12px; line-height: 1.6; }
.footer__right a{ color: var(--slate-700); font-weight: 900; }
.footer__right a:hover{ color: var(--brand-dark); }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__meta{ grid-template-columns: 1fr; }
  .grid4{ grid-template-columns: 1fr 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .service__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .topbar__right{ display:none; }
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute; right:0; top: 70px;
    width: min(92vw, 420px);
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav__menu.isOpen{ display:flex; }
  .nav__ctaRow{ flex-direction:column; margin-left:0; }
  .nav__dropdownPanel{ position: static; box-shadow:none; margin-top: 6px; }
  .grid4{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  select, input, textarea{ max-width: 100%; }
.brand__logo{ height: 72px; }
}

/* Add these styles to the existing CSS file */

/* Service page specific styles */
.hero-service {
  padding: 30px 0 20px;
}

.service-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(31,115,183,0.12);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.service-hero__title {
  font-size: clamp(38px, 5vw, 52px);
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin: 10px 0 20px;
}

.service-hero__subtitle {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 70ch;
}

.feature-image {
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-image__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.feature-image__caption {
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid var(--line);
  color: var(--slate-600);
  font-size: 14px;
}

.service-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.service-detail-card__title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--slate-900);
}

.service-detail-card__list {
  margin: 0;
  padding-left: 20px;
  color: var(--slate-600);
  line-height: 1.8;
}

.service-detail-card__list li {
  margin-bottom: 8px;
}

.team-card {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--brand);
}

.team-card__name {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 900;
}

.team-card__title {
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}

.team-card__bio {
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-card {
  padding: 30px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--slate-600);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-block {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(31,115,183,0.08), rgba(31,115,183,0.02));
}

.cta-block__title {
  font-size: 28px;
  margin: 0 0 10px;
  font-weight: 900;
}

.cta-block__text {
  color: var(--slate-600);
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px;
}

.benefit-card p {
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: white;
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease);
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.featured {
  border: 2px solid var(--brand);
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.package-title {
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--slate-900);
}

.package-price {
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 14px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.package-features li {
  padding: 8px 0;
  color: var(--slate-600);
  border-bottom: 1px solid var(--line);
}

.package-features li:last-child {
  border-bottom: none;
}

/* Lifecycle grid */
.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.lifecycle-phase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.lifecycle-phase h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--brand);
}

.lifecycle-phase p {
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* Card links */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Responsive additions */
@media (max-width: 980px) {
  .benefits-grid,
  .lifecycle-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .benefits-grid,
  .lifecycle-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-image__img {
    height: 300px;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .package-card.featured:hover {
    transform: translateY(-4px);
  }
  
  .cta-block {
    padding: 24px;
  }
}