/* ============================================================
   Office 365 Import – Shared Stylesheet
   Microsoft Fluent UI Inspired Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --red:       #F25022;
  --blue:      #00A4EF;
  --green:     #7FBA00;
  --yellow:    #FFB900;
  --gray:      #737373;
  --gray-light:#F5F5F5;
  --gray-mid:  #E8E8E8;
  --dark:      #1A1A1A;
  --text:      #2C2C2C;
  --text-muted:#6B6B6B;
  --white:     #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: all 0.22s ease;

  --nav-h: 68px;
  --font: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
ul { list-style: none; padding: 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 { font-weight: 700; line-height: 1.22; color: var(--dark); }
h1,.h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2,.h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); }
h3,.h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4,.h4 { font-size: 1.15rem; }
p  { color: var(--text-muted); }

.text-red    { color: var(--red) !important; }
.text-blue   { color: var(--blue) !important; }
.text-green  { color: var(--green) !important; }
.text-yellow { color: var(--yellow) !important; }

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-sub { max-width: 580px; font-size: 1.05rem; color: var(--text-muted); }
.section-sub.mx-auto { margin-left: auto; margin-right: auto; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── Divider ── */
.ms-divider {
  display: flex; gap: 0; width: 48px; height: 4px; margin-bottom: 20px;
}
.ms-divider span { flex: 1; }
.ms-divider .d1 { background: var(--red); }
.ms-divider .d2 { background: var(--green); }
.ms-divider .d3 { background: var(--yellow); }
.ms-divider .d4 { background: var(--blue); }

/* ── MS Squares decorative ── */
.ms-squares {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  width: 28px; height: 28px; flex-shrink: 0;
}
.ms-squares span { border-radius: 2px; }
.ms-squares .sq1 { background: var(--red); }
.ms-squares .sq2 { background: var(--green); }
.ms-squares .sq3 { background: var(--yellow); }
.ms-squares .sq4 { background: var(--blue); }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
}
.site-nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.1rem; color: var(--dark);
  white-space: nowrap;
}
.nav-brand .brand-word-red  { color: var(--red); }
.nav-brand .brand-word-blue { color: var(--blue); }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  padding: 6px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--dark); background: var(--gray-light); }
.nav-links a.active { color: var(--red); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

@media(max-width:991px){
  .nav-toggle { display: flex; }
  .nav-links, .nav-actions {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-mid);
    padding: 16px 24px; flex-direction: column; align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav-links.open, .nav-actions.open { display: flex; }
  .nav-actions.open { top: auto; border: none; padding-top: 0; }
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-ms {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.875rem;
  padding: 11px 24px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-ms:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-orange {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn-orange:hover { background: #d63e12; border-color: #d63e12; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(242,80,34,0.35); color: #fff; }

.btn-secondary {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.btn-secondary:hover { background: #0088cc; border-color: #0088cc; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,164,239,0.35); color: #fff; }

.btn-outline {
  background: transparent; color: var(--dark); border-color: var(--gray-mid);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }

.btn-white {
  background: #fff; color: var(--red); border-color: #fff;
}
.btn-white:hover { background: #f7f7f7; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); color: var(--red); }

.btn-ghost {
  background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); color: #fff; }

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.ms-card {
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  /*height: 100%;*/
}
.ms-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.ms-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.icon-red    { background: rgba(242,80,34,0.1); color: var(--red); }
.icon-blue   { background: rgba(0,164,239,0.1); color: var(--blue); }
.icon-green  { background: rgba(127,186,0,0.12); color: var(--green); }
.icon-yellow { background: rgba(255,185,0,0.12); color: #c9940a; }
.icon-purple { background: rgba(107,70,193,0.1); color: #6b46c1; }
.icon-teal   { background: rgba(0,164,174,0.1); color: #00a4ae; }

/*.ms-card h4 { margin-bottom: 8px; }
.ms-card p { font-size: 0.9rem; margin: 0; }*/

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #fff 0%, #fdf5f3 35%, #f0faff 70%, #f5fff0 100%);
  padding: 80px 0 70px;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,164,239,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 10% 80%, rgba(242,80,34,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,80,34,0.08); border: 1px solid rgba(242,80,34,0.2);
  border-radius: 999px; padding: 4px 14px;
  font-size: 0.75rem; font-weight: 600; color: var(--red);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; font-weight: 800; }
.hero .lead { font-size: 1.1rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap;}
/*.hero-stat-row { display: flex; gap: 36px; flex-wrap: wrap; }*/
.hero-stat { text-align: center; }
.hero-stat .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-stat .stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.hero-stat .stat-num span { color: var(--red); }

.hero-visual {
  position: relative; z-index: 1;
}
.hero-window {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 2px 0 var(--gray-mid);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
.hero-window-bar {
  background: var(--gray-light); padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--gray-mid);
}
.w-dot { width: 10px; height: 10px; border-radius: 50%; }
.wd-r { background: #ef4444; } .wd-y { background: #f59e0b; } .wd-g { background: #22c55e; }
.w-title { font-size: 0.72rem; color: var(--gray); margin: 0 auto; font-weight: 500; }
.hero-window-body { padding: 20px; }
.prog-item { margin-bottom: 20px; }
.prog-label { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 600; margin-bottom: 5px; }
.prog-track { height: 7px; background: var(--gray-light); border-radius: 99px; overflow: hidden; }

.pf-red { background: linear-gradient(90deg, var(--red), #ff7a4d); width: 88%; }
.pf-blue { background: linear-gradient(90deg, var(--blue), #4dc8f5); width: 72%; }
.pf-green { background: linear-gradient(90deg, var(--green), #a8d800); width: 95%; }
.pf-yellow { background: linear-gradient(90deg, var(--yellow), #ffd84d); width: 60%; }
/*.prog-fill { height: 100%; border-radius: 99px; }*/
.prog-fill { height:100%;width:0;border-radius:50px;transition:width 2.5s ease-in-out;}
.hw-status {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  background: rgba(127,186,0,0.08); border: 1px solid rgba(127,186,0,0.25);
  border-radius: 8px; margin-top: 4px;
}
.hw-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.75)} }
.hw-text { font-size: 0.75rem; font-weight: 600; color: #4a7c00; }
.hw-count { font-size: 0.7rem; color: var(--gray); margin-left: auto; }

.float-badge {
  position: absolute; background: #fff; border: 1px solid var(--gray-mid);
  border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; z-index: 2;
}
.fb1 { top: -20px; right: -16px; animation: fb-float 5s ease-in-out infinite; }
.fb2 { bottom: -20px; left: -20px; animation: fb-float 7s ease-in-out infinite reverse; }
@keyframes fb-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══════════════════════════════════════════════
   TRUST LOGOS
══════════════════════════════════════════════ */
.trust-strip {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 28px 0;
}
.trust-label { font-size: 0.72rem; font-weight: 600; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.trust-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.trust-logo { font-family: var(--font); font-weight: 700; font-size: 1rem; color: #aaa; opacity: 0.7; transition: var(--transition); cursor: default; }
.trust-logo:hover { opacity: 1; color: var(--gray); }

/* ══════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════ */
.features-grid { }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.step-card {
  position: relative; text-align: center; padding: 36px 24px;
}
.step-card::after {
  content: ''; position: absolute;
  top: 40px; left: calc(50% + 40px); right: calc(-50% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--gray-mid), transparent);
  pointer-events: none;
}
.step-card:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.3rem; font-weight: 800; color: #fff;
}
.sn-1 { background: linear-gradient(135deg, var(--red), #ff7a4d); }
.sn-2 { background: linear-gradient(135deg, var(--blue), #4dc8f5); }
.sn-3 { background: linear-gradient(135deg, var(--green), #a8d800); }
.sn-4 { background: linear-gradient(135deg, var(--yellow), #ffd84d); }

/* ══════════════════════════════════════════════
   TABS (Download)
══════════════════════════════════════════════ */
.ms-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--gray-mid); margin-bottom: 32px; }
.ms-tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border: none; background: none; cursor: pointer;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition);
}
.ms-tab-btn:hover { color: var(--dark); }
.ms-tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.ms-tab-pane { display: none; }
.ms-tab-pane.active { display: block; }

/* ══════════════════════════════════════════════
   GRADIENT SECTIONS
══════════════════════════════════════════════ */
.bg-gradient-red {
  background: linear-gradient(135deg, #F25022 0%, #d63e12 40%, #b83000 100%);
}
.bg-gradient-blue {
  background: linear-gradient(135deg, #00A4EF 0%, #0088cc 50%, #005fa3 100%);
}
.bg-gradient-ms {
  background: linear-gradient(135deg, #F25022 0%, #00A4EF 50%, #7FBA00 100%);
}
.bg-soft { background: var(--gray-light); }
.bg-soft-blue { background: linear-gradient(135deg, #f0faff, #fff); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonial-card {
  background: #fff; border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-quote { font-size: 1.5rem; color: var(--red); line-height: 1; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.875rem; }
.author-role { font-size: 0.75rem; color: var(--text-muted); }
.star-row { color: var(--yellow); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ══════════════════════════════════════════════
   PRICING CARDS
══════════════════════════════════════════════ */
.pricing-card {
  background: #fff; border: 2px solid var(--gray-mid);
  border-radius: var(--radius-xl); padding: 36px;
  transition: var(--transition); height: 100%; position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(242,80,34,0.15);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pricing-price { font-size: 3.2rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; color: var(--red); }
.pricing-price sub { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; margin-bottom: 10px; color: var(--text-muted);
}
.pricing-features li .pf-check { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }
.pricing-features li .pf-x { color: #ccc; flex-shrink: 0; margin-top: 2px; }
.pricing-divider { border-color: var(--gray-mid); margin: 24px 0; }

/* ══════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--gray-mid); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(242,80,34,0.3); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font); font-size: 0.935rem; font-weight: 600; color: var(--dark);
  cursor: pointer; transition: var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  background: var(--gray-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; transition: var(--transition); color: var(--gray);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-icon { background: rgba(242,80,34,0.1); color: var(--red); transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--red); }

/* ══════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════ */
.comp-table-wrap { border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { background: var(--gray-light); padding: 14px 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 1px solid var(--gray-mid); }
.comp-table th.hl { background: rgba(242,80,34,0.06); color: var(--red); }
.comp-table th.hg {background: rgba(157, 242, 34, 0.06);color: #099E44;}
.comp-table td { padding: 13px 20px; font-size: 0.875rem; border-bottom: 1px solid rgba(0,0,0,0.04); vertical-align: middle; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover { background: rgba(0,0,0,0.015); }
.comp-table td.hl { background: rgba(242,80,34,0.03); font-weight: 600; }
.comp-table td.hg { background: rgba(157, 242, 34, 0.06); font-weight: 600; }
.tc-yes { color: var(--green); font-size: 1rem; }
.tc-no  { color: #ddd; font-size: 1rem; }
.tc-partial { color: #099E44; font-size: 0.8rem; }

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.ms-form .form-label { font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.ms-form .form-control, .ms-form .form-select {
  border: 1px solid var(--gray-mid); border-radius: var(--radius);
  padding: 11px 14px; font-family: var(--font); font-size: 0.9rem;
  transition: var(--transition); background: #fff;
}
.ms-form .form-control:focus, .ms-form .form-select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(242,80,34,0.12); outline: none;
}
.ms-form textarea { resize: vertical; min-height: 130px; }

/* ══════════════════════════════════════════════
   DOWNLOAD PAGE
══════════════════════════════════════════════ */
.dl-platform {
  background: #fff; border: 2px solid var(--gray-mid);
  border-radius: var(--radius-xl); padding: 36px;
  text-align: center; transition: var(--transition);
}
.dl-platform:hover { border-color: var(--red); box-shadow: var(--shadow-lg); }
.dl-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
.dl-version { font-size: 0.75rem; color: var(--gray); }
.sys-req-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; font-size: 0.875rem; }
.req-icon { color: var(--blue); flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.step-install {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: #fff; border: 1px solid var(--gray-mid);
  border-radius: var(--radius); margin-bottom: 10px;
}
.install-num {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; font-weight: 800; font-size: 0.85rem;
}

/* ══════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════ */
.page-header {
  padding: 64px 0 56px;
  background: linear-gradient(135deg, #fdf5f3 0%, #f0faff 60%, #f5fff0 100%);
  border-bottom: 1px solid var(--gray-mid); position: relative; overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0,164,239,0.06), transparent);
  pointer-events: none;
}
.page-header h1 { font-weight: 800; }
.page-header .breadcrumb { background: none; padding: 0; margin-bottom: 12px; }
.page-header .breadcrumb-item { font-size: 0.8rem; color: var(--text-muted); }
.page-header .breadcrumb-item a { color: var(--red); }
.page-header .breadcrumb-item.active { color: var(--text-muted); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-mid); }

/* ══════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════ */
.page-404 { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: linear-gradient(135deg, #fff 0%, #fdf5f3 50%, #f0faff 100%); }
.err-code { font-size: clamp(6rem, 18vw, 14rem); font-weight: 800; line-height: 1; }
.err-code .c-r { color: var(--red); }
.err-code .c-b { color: var(--blue); }
.err-code .c-g { color: var(--green); }
.err-code .c-y { color: var(--yellow); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer { background: #1A1A1A; color: rgba(255,255,255,0.7); padding: 56px 0 28px; }
.footer-brand { font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-desc { font-size: 0.85rem; line-height: 1.65; }
.footer-heading { font-family: var(--font); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 36px 0 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; transition: var(--transition);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-legal a { color: rgba(255,255,255,0.4); margin-left: 16px; font-size: 0.78rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════
   BADGE / TRUST
══════════════════════════════════════════════ */
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gray-mid); border-radius: 8px; padding: 8px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-muted); background: #fff;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE SPECIFICS
══════════════════════════════════════════════ */
.team-card {
  text-align: center; padding: 32px 20px;
  background: #fff; border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.3rem; color: #fff;
}
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Stat Block ── */
.stat-block { text-align: center; padding: 32px 20px; }
.stat-block .stat-big { font-size: 2.8rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.stat-block p { font-size: 0.875rem; margin: 0; }

/* ── Mission Cards ── */
.mission-card {
  padding: 32px; border-left: 4px solid var(--red);
  background: #fff; border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.mission-card.alt { border-left-color: var(--blue); }

/* ══════════════════════════════════════════════
   UTILITIES / HELPERS
══════════════════════════════════════════════ */
.rounded-ms { border-radius: var(--radius); }
.rounded-ms-lg { border-radius: var(--radius-lg); }
.shadow-soft { box-shadow: var(--shadow-sm); }
.shadow-ms   { box-shadow: var(--shadow); }
.shadow-ms-lg{ box-shadow: var(--shadow-lg); }

/* Scroll fade-up animations */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }

/* ── Responsive tweaks ── */
@media(max-width:767px){
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 44px 0; }
  .hero { padding: 52px 0 44px; }
  .hero-visual { margin-top: 40px; }
  /*.hero-stat-row { gap: 20px; }*/
  .step-card::after { display: none; }
  .pricing-card { margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media(max-width:576px){
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .cta-btn-group { flex-direction: column; align-items: center; }
}

@media(min-width: 991px){
.w-lg-75{
  width: 75%;
}
}