/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black:      #000000;
  --blue:       #1565C0;
  --blue-mid:   #1976D2;
  --blue-light: #42A5F5;
  --blue-pale:  #E3F2FD;
  --blue-xpale: #F0F7FF;
  --red:        #C62828;
  --red-mid:    #D32F2F;
  --red-light:  #EF5350;
  --red-pale:   #FFEBEE;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #1E293B;
  --text-muted: #64748B;
  --border:     #E2E8F0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.10);
  --radius:     10px;
  --radius-lg:  16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
  padding: 7px 0;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-left a:hover { color: #fff; }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
  color: rgba(255,255,255,0.75);
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 5px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  transition: all 0.2s;
}


/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; 
  font-size: 18px; font-weight: 700; color: var(--black);
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 40px; height: 30px; border-radius: 9px;

  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: white;
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  padding: 7px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  transition: all 0.18s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-mid) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--gray-600); border-radius: 2px; display: block; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-xpale) 0%, #fff 60%);
  border-bottom: 1px solid var(--border);
  padding: 70px 32px 80px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-pale); border: 1px solid #BBDEFB;
  color: var(--blue); border-radius: 100px;
  padding: 5px 14px; font-size: 12.5px; font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); display: inline-block; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.13;
  color: var(--gray-800); margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 .blue { color: var(--blue); }
.hero h1 .red { color: var(--red); }
.hero-desc {
  color: var(--text-muted); font-size: 16px; line-height: 1.75;
  max-width: 460px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: white; padding: 11px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(21,101,192,0.25);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,101,192,0.3); }
.btn-outline {
  background: transparent; color: var(--blue);
  padding: 11px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  border: 1.5px solid var(--blue);
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; cursor: pointer;
}
.btn-outline:hover { background: var(--blue-pale); }
.btn-red {
  background: var(--red); color: white;
  padding: 11px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(198,40,40,0.2);
}
.btn-red:hover { background: var(--red-mid); transform: translateY(-1px); }

/* Hero visual panel */
.hero-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel-header {
  background: var(--blue); padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-panel-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.stat-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: 8px;
  background: var(--gray-50); border: 1px solid var(--border);
}
.stat-icon { font-size: 20px; flex-shrink: 0; }
.stat-info .num { font-size: 20px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-info .lbl { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stat-row.red .stat-info .num { color: var(--red); }

/* ── SECTIONS COMMON ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 80px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--gray-800); margin-bottom: 12px;
  letter-spacing: -0.3px; line-height: 1.2;
}
.section-sub { color: var(--text-muted); font-size: 15.5px; max-width: 540px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── SERVICES ── */
.services-bg { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #BBDEFB; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-pale); border: 1px solid #BBDEFB;
  display: grid; place-items: center;
  font-size: 20px; margin-bottom: 16px; flex-shrink: 0;
}
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-800); }
.service-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.65; margin-bottom: 16px; }
.learn-more {
  color: var(--blue); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.learn-more:hover { gap: 8px; color: var(--red); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--blue); padding: 52px 0;
}
.stats-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-block {
  flex: 1; min-width: 160px; text-align: center; padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-block:last-child { border-right: none; }
.stat-block .num { font-size: 2.6rem; font-weight: 800; color: white; line-height: 1; }
.stat-block .lbl { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.stat-block .num span { font-size: 1.8rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-xpale));
  border: 1px solid #BBDEFB;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.about-feat-list { display: flex; flex-direction: column; gap: 16px; }
.about-feat {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.feat-icon-wrap {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue); display: grid; place-items: center;
  font-size: 15px; flex-shrink: 0;
}
.feat-icon-wrap.red { background: var(--red); }
.feat-text .ft { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.feat-text .fs { font-size: 12.5px; color: var(--text-muted); }

.about-checks { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--gray-600);
}
.check { color: var(--blue); font-size: 15px; margin-top: 1px; flex-shrink: 0; }

/* ── HOW WE WORK ── */
.how-bg { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 20px; position: relative;
  padding-bottom: 28px;
}
.step:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-line {
  width: 2px; flex: 1; background: var(--blue-pale);
  margin: 4px 0; min-height: 24px;
}
.step:last-child .step-line { display: none; }
.step-content { padding-top: 6px; }
.step-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--gray-800); }
.step-content p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.acc-item.open { border-color: #BBDEFB; }
.acc-header {
  padding: 16px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 14px; color: var(--gray-800);
  user-select: none; transition: color 0.2s;
}
.acc-item.open .acc-header { color: var(--blue); }
.acc-arrow { font-size: 18px; transition: transform 0.3s; color: var(--gray-400); font-weight: 300; }
.acc-item.open .acc-arrow { transform: rotate(45deg); color: var(--blue); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 20px; color: var(--text-muted); font-size: 13.5px; line-height: 1.7;
}
.acc-item.open .acc-body { max-height: 200px; padding-bottom: 18px; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
}
.testi-av.red { background: var(--red); }
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 72px 32px; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: white; color: var(--blue);
  padding: 12px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
footer {
  background: var(--gray-800); color: rgba(255,255,255,0.8);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  margin-bottom: 44px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 7px; display: grid; place-items: center;
  color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700;
  transition: all 0.2s;
}
.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.instagram:hover {
    background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
    border-color: #DD2A7B;
    color: #fff;
}

.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #fff;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}
.footer-col h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue-light); }
.newsletter-desc { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 7px; padding: 9px 13px;
  color: white; font-size: 13px; outline: none; font-family: inherit;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--blue-light); }
.newsletter-form button {
  background: var(--blue); color: white; border: none;
  padding: 9px 16px; border-radius: 7px; cursor: pointer;
  font-weight: 600; font-size: 13px; transition: background 0.2s;
  font-family: inherit;
}
.newsletter-form button:hover { background: var(--blue-light); }
#subMsg { font-size: 12px; color: #86EFAC; margin-top: 8px; display: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,0.45);
}

/* ── SERVICE PAGE ── */
.service-hero {
  background: linear-gradient(135deg, var(--blue-xpale), white);
  border-bottom: 1px solid var(--border);
  padding: 60px 32px;
}
.service-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.service-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--gray-800); margin-bottom: 16px; letter-spacing: -0.3px; }
.service-hero p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 28px; max-width: 480px; }
.service-hero-img {
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-xpale));
  border: 1px solid #BBDEFB; border-radius: var(--radius-lg);
  padding: 40px; text-align: center;
  font-size: 80px; line-height: 1;
}
.features-section { padding: 72px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-item {
  padding: 24px; border-radius: var(--radius);
  background: var(--gray-50); border: 1px solid var(--border);
  transition: all 0.22s;
}
.feature-item:hover { background: var(--blue-xpale); border-color: #BBDEFB; }
.feature-item .fi { font-size: 24px; margin-bottom: 10px; }
.feature-item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; color: var(--gray-800); }
.feature-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.benefits-section { background: var(--gray-50); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefit-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item { display: flex; align-items: flex-start; gap: 12px; }
.bcheck { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: white; display: grid; place-items: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.benefit-item h5 { font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
.benefit-item p { font-size: 13px; color: var(--text-muted); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }


.footer-contacts {
  display: flex; flex-direction: column; gap: 8px;
}

@media (min-width: 1400px) {
  .container,
  .nav-inner,
  .topbar-inner,
  .hero-inner {
    max-width: 100%;
    padding-left: 74px;
    padding-right: 74px;
  }
}

/* =========================
   LAPTOP (992px - 1199px)
========================= */
@media (max-width: 1199px) {

  .hero-inner,
  .about-grid,
  .how-grid {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container,
  .nav-inner,
  .topbar-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* =========================
   TABLET (768px - 991px)
========================= */
@media (max-width: 991px) {

  .hero-inner,
  .about-grid,
  .how-grid,
  .service-hero-inner,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
    gap: 30px;
  }

  .hero-panel {
    margin: auto;
    max-width: 600px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px;
  }

  .nav-cta {
    margin-left: 0;
  }

  .topbar {
    display: none;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-panel {
    display: none;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 20px 0;
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  .stats-band {
    padding: 0;
  }


  .cta-band {
    padding: 50px 20px;
  }
}

/* =========================
   SMALL MOBILE (576px)
========================= */
@media (max-width: 576px) {

  .services-grid,
  .testi-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }


  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container,
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card,
  .testi-card,
  .feature-item {
    padding: 20px;
  }

  .btn-primary,
  .btn-outline,
  .btn-white {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-logo {
    font-size: 15px;
  }

  .logo-icon {
    width: 50px;
    height: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
