/* ============================================================
   RESET & TOKENS
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #2c3578;
  --navy-dark:  #1a2047;
  --navy-mid:   #3d52b8;
  --navy-light: #6278d4;
  --blue-tint:  #a8b8f8;
  --white:      #ffffff;
  --off-white:  #f5f6fb;
  --gray-100:   #f0f1f8;
  --gray-200:   #e2e4ef;
  --gray-300:   #c8cbe0;
  --text:       #1c1e30;
  --text-muted: #64748b;
  --radius:     6px;
  --shadow-sm:  0 2px 12px rgba(44,53,120,.08);
  --shadow:     0 4px 28px rgba(44,53,120,.12);
  --shadow-md:  0 8px 48px rgba(44,53,120,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: .9rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--navy-mid);
}

.section-body {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 88px 0; }

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

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.topbar-contacts a:hover { color: var(--white); }

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-socials a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: color .2s;
}
.topbar-socials a:hover { color: var(--white); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.navbar-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--navy); border-bottom-color: var(--navy); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
  padding: 0 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  border-bottom: 1px solid var(--gray-200);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--navy); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('images/12234.png');
  background-size: cover;
  background-position: center 30%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(26,32,71,.92) 0%,
    rgba(26,32,71,.72) 55%,
    rgba(26,32,71,.30) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 96px 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-tint);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.stat-divider { border-right: 1px solid var(--gray-200); }
.stat-divider:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-content .section-title { margin-bottom: 18px; }
.about-content .section-body  { margin-bottom: 28px; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--text);
}
.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section { background: var(--navy); }

.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-label { color: rgba(255,255,255,.5); }
.services-header .section-title { color: var(--white); margin-bottom: 14px; }
.services-header .section-body  { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; }

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

.service-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 32px 26px;
  transition: all .28s;
}
.service-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-tint);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: .86rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue-tint);
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section { background: var(--white); }

.why-header {
  text-align: center;
  margin-bottom: 56px;
}
.why-header .section-title { margin-bottom: 14px; }
.why-header .section-body  { max-width: 620px; margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 36px 22px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: all .28s;
}
.why-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-4px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-mid);
  margin: 0 auto 20px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
}

.why-card p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section { background: var(--off-white); }

.team-header {
  text-align: center;
  margin-bottom: 56px;
}
.team-header .section-title { margin-bottom: 14px; }
.team-header .section-body  { max-width: 640px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s;
}
.team-card:hover { transform: translateY(-7px); }

.team-card-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: top center;
}

.team-card-body { padding: 26px; }

.team-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin-bottom: 12px;
  letter-spacing: .02em;
}

.team-card-body p {
  font-size: .87rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.faq-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.faq-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.faq-content .section-title { margin-bottom: 32px; }

.accordion-item { border-bottom: 1px solid var(--gray-200); }

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  gap: 12px;
  transition: color .2s;
}
.accordion-toggle:hover { color: var(--navy); }
.accordion-toggle.open  { color: var(--navy); }

.accordion-toggle i {
  font-size: .75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .3s;
}
.accordion-toggle.open i { transform: rotate(180deg); color: var(--navy); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s ease;
}
.accordion-body.open { max-height: 220px; }

.accordion-body p {
  padding-bottom: 20px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   CTA / CONSULTANCY
============================================================ */
.cta-section { background: var(--off-white); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cta-content .section-title { margin-bottom: 18px; }
.cta-content .section-body  { margin-bottom: 28px; }

.cta-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ============================================================
   CLIENTS SECTION
============================================================ */
.clients-section { background: var(--white); }

.clients-header {
  text-align: center;
  margin-bottom: 52px;
}
.clients-header .section-title { margin-bottom: 12px; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  filter: grayscale(100%) opacity(.55);
  transition: filter .3s;
}
.client-logo:hover { filter: grayscale(0%) opacity(1); }

.client-logo img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  background: var(--navy-dark);
  color: var(--white);
}

.contact-section .section-label { color: rgba(255,255,255,.45); }
.contact-section .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-intro {
  font-size: .93rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin: 14px 0 32px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--blue-tint);
}

.ci-text {
  font-size: .89rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
}
.ci-text strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  margin-bottom: 3px;
}

.contact-map-outer {
  display: flex;
  flex-direction: column;
}

.contact-map-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-map-title i {
  color: var(--blue-tint);
  font-size: 1rem;
}

.contact-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  min-height: 340px;
}

.contact-map-caption {
  margin-top: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-map-caption i { color: var(--blue-tint); font-size: .75rem; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 0;
  color: rgba(255,255,255,.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-wrap {
  background: var(--white);
  display: inline-flex;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 18px;
}
.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: all .2s;
}
.footer-socials a:hover { background: var(--navy-mid); color: var(--white); }

footer h4 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-links i { font-size: .6rem; color: var(--blue-tint); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.footer-contact-list i {
  color: var(--blue-tint);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--white); }

.razertech-badge img {
  height: 36px;
  opacity: .85;
  transition: opacity .2s;
}
.razertech-badge img:hover { opacity: 1; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: calc(28px + 2cm);
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .3s;
  z-index: 100;
  border: none;
  box-shadow: 0 4px 18px rgba(44,53,120,.4);
  font-size: .85rem;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--navy-dark); }

/* ============================================================
   RESPONSIVE — 1100px (tablet landscape)
============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .clients-grid  { grid-template-columns: repeat(4, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — 800px (tablet portrait / large phone)
============================================================ */
@media (max-width: 800px) {
  section { padding: 60px 0; }

  .topbar-contacts .tb-loc { display: none; }

  .navbar-links,
  .navbar-cta-wrap { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 540px; }
  .hero-content { padding: 64px 0; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid      { grid-template-columns: 1fr; }
  .faq-image     { position: static; }
  .cta-grid      { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid     { grid-template-columns: 1fr; }
  .contact-map-wrap { min-height: 280px; }
  .clients-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   RESPONSIVE — 520px (small phones)
============================================================ */
@media (max-width: 520px) {
  .container { padding: 0 20px; }
  section    { padding: 52px 0; }

  .stats-bar { padding: 36px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { border-right: none; border-bottom: 1px solid var(--gray-200); padding-bottom: 20px; }
  .stat-divider:nth-child(odd)  { border-right: 1px solid var(--gray-200); }
  .stat-divider:nth-child(even) { border-bottom: 1px solid var(--gray-200); }
  .stat-divider:nth-last-child(-n+2) { border-bottom: none; }

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

  .about-image img  { height: 280px; }
  .faq-image img    { height: 240px; }
  .cta-image img    { height: 280px; }
  .team-card-img    { height: 260px; }
  .team-grid        { max-width: 100%; }

  /* Footer nav lists: 2 columns */
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }
  .footer-links i { display: none; }
  .footer-bottom  { justify-content: center; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 390px (iPhone 14 / 15, Pixel 7, Galaxy S23)
   Covers 375px iPhone SE / 11 Pro and up
============================================================ */
@media (max-width: 390px) {
  .container { padding: 0 16px; }
  section    { padding: 44px 0; }

  /* Topbar: show only email + socials */
  .topbar-contacts .tb-email { display: none; }
  .topbar-inner { justify-content: space-between; }

  /* Navbar */
  .navbar-inner  { padding: 10px 16px; }
  .navbar-logo img { height: 44px; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-content { padding: 52px 0; }
  .hero h1      { font-size: 1.75rem; margin-bottom: 16px; }
  .hero-sub     { font-size: .88rem; margin-bottom: 26px; }
  .btn          { padding: 12px 22px; font-size: .75rem; }

  /* Stats */
  .stats-bar  { padding: 28px 0; }
  .stat-number { font-size: 2rem; }
  .stat-label  { font-size: .78rem; }

  /* About */
  .about-image img { height: 230px; }
  .checklist li    { font-size: .88rem; }

  /* Services */
  .service-card { padding: 24px 20px; }

  /* Why */
  .why-card { padding: 26px 16px; }

  /* Team */
  .team-card-img  { height: 230px; }
  .team-card-body { padding: 20px; }

  /* FAQ */
  .faq-image img { height: 200px; }
  .accordion-toggle { font-size: .88rem; }

  /* CTA */
  .cta-image img { height: 230px; }

  /* Clients */
  .client-logo img { max-height: 44px; }

  /* Contact */
  .contact-map-wrap { min-height: 220px; }
  .ci-icon { width: 36px; height: 36px; min-width: 36px; font-size: .8rem; }

  /* Footer */
  .stats-bar   { padding: 28px 0; }
  .footer-brand p { max-width: 100%; }
  .footer-grid    { gap: 22px; }
  .footer-bottom  { font-size: .72rem; gap: 4px; }

  /* Mobile menu */
  .mobile-menu { padding: 0 16px; }
}
