/* ===== ARVIS DIGITAL – SHARED STYLESHEET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fdfbf8;
  --peach: #fde3c9;
  --orange: #ff851b;
  --blue: #7295f1;
  --navy: #1a2550;
  --gray: #555;
  --light: #f4f4f4;
  --white: #fff;
  --dark: #0e1530;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--cream); color: #333; overflow-x: hidden; }
@media (max-width: 900px) { body { padding-bottom: 56px; } } /* clearance for mobile sticky CTA bar */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fff; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { font-size: 14px; }

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
  gap: 8px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; display: block; }
/* When logo image fails to load, show text fallback */
.logo img.logo-broken, .logo img[src=''] {
  display: none;
}
.logo img.logo-broken ~ .logo-fallback, .logo .logo-fallback-show {
  display: flex !important;
}
.logo-fallback {
  display: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
  padding: 2px 0;
}
.logo-fallback span { color: var(--orange); }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav > a, .dropdown > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 9px;
  border-radius: 4px;
  transition: color .2s;
  letter-spacing: .4px;
  white-space: nowrap;
  display: block;
}
nav > a:hover, .dropdown > a:hover { color: var(--orange); }
.nav-active { color: var(--orange) !important; }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 250px;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  color: var(--navy);
  border-bottom: 1px solid #f0f0f0;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--peach); color: var(--orange); }
.nav-phone { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--orange); font-size: 13px; white-space: nowrap; }
.nav-phone i { margin-right: 5px; }
.hamburger { display: none; font-size: 24px; cursor: pointer; color: var(--navy); border: none; background: none; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 13px 30px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; text-decoration: none; transition: all .3s; cursor: pointer; border: none; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #e06b00; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,133,27,.35); }
.btn-outline-orange { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline-orange:hover { background: var(--orange); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--navy); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #5678d4; }

/* ===== SECTION COMMON ===== */
section { padding: 70px 40px; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-title p { font-size: 15px; color: var(--gray); max-width: 660px; margin: 0 auto; line-height: 1.7; }
.section-title .line { width: 60px; height: 4px; background: var(--orange); border-radius: 2px; margin: 14px auto 0; }
.section-title.left-align { text-align: left; }
.section-title.left-align .line { margin-left: 0; }
.max-w { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a2550 0%, #2c3e8c 60%, #3a5bd4 100%);
  color: #fff;
  padding: 70px 40px 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(24px, 3.5vw, 46px); font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: #b8cafe; max-width: 680px; margin: 0 auto 24px; line-height: 1.7; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 14px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* ===== HERO HOME ===== */
.hero {
  background: linear-gradient(135deg, #1a2550 0%, #2c3e8c 60%, #3a5bd4 100%);
  color: #fff;
  padding: 80px 40px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 300px; }
.hero-text h1 { font-size: clamp(26px, 3.5vw, 46px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero-text h1 span { color: var(--orange); }
.hero-text p { font-size: 15.5px; line-height: 1.8; color: #c8d4f8; margin-bottom: 30px; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { flex: 1; min-width: 280px; text-align: center; }
.hero-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.hero-badges { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 7px 18px; font-size: 13px; font-family: 'Montserrat', sans-serif; font-weight: 600; color: #fff; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--orange); padding: 24px 40px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat { text-align: center; color: #fff; }
.stat .num { font-size: 32px; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.stat .label { font-size: 13px; font-weight: 600; opacity: .9; }

/* ===== CARDS ===== */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card-grid-6 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.service-card { background: var(--peach); border-radius: 16px; padding: 32px 28px; transition: transform .3s, box-shadow .3s; border-bottom: 4px solid transparent; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-bottom-color: var(--orange); }
.service-icon { width: 56px; height: 56px; background: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon i { color: #fff; font-size: 22px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.svc-thumb { margin: -32px -28px 24px -28px; height: 180px; overflow: hidden; border-radius: 16px 16px 0 0; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.service-card:hover .svc-thumb img { transform: scale(1.05); }

.why-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 30px 22px; text-align: center; transition: transform .3s, background .3s; }
.why-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.16); }
.why-card i { font-size: 34px; color: var(--orange); margin-bottom: 16px; display: block; }
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.why-card p { font-size: 13.5px; color: #b8c8e8; line-height: 1.7; }
/* why-card on light backgrounds (not inside .dark-section) */
section:not(.dark-section) .why-card { background: #fff; border-color: #eee; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
section:not(.dark-section) .why-card:hover { background: var(--peach); border-color: var(--orange); }
section:not(.dark-section) .why-card h4 { color: var(--navy); }
section:not(.dark-section) .why-card p { color: var(--gray); }


.ind-card { background: #fff; border-radius: 12px; padding: 24px 16px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.06); transition: all .3s; }
.ind-card:hover { background: var(--orange); transform: translateY(-4px); }
.ind-card i { font-size: 30px; color: var(--orange); margin-bottom: 10px; display: block; transition: color .3s; }
.ind-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); transition: color .3s; }
.ind-card:hover i, .ind-card:hover h4 { color: #fff; }

.feature-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .3s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card i { font-size: 28px; color: var(--orange); margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== ABOUT SPLIT ===== */
.split { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }
.split-img { flex: 1; min-width: 280px; }
.split-img img { border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.split-content { flex: 1; min-width: 280px; }
.split-content h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--navy); margin-bottom: 16px; line-height: 1.3; }
.split-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.check-list { list-style: none; margin: 16px 0 24px; }
.check-list li { padding: 7px 0; font-size: 14.5px; color: var(--gray); display: flex; align-items: flex-start; gap: 10px; }
.check-list li i { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.process-step { text-align: center; padding: 32px 20px; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,.07); position: relative; border-top: 4px solid var(--orange); transition: transform .3s; }
.process-step:hover { transform: translateY(-5px); }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Montserrat', sans-serif; box-shadow: 0 4px 14px rgba(255,133,27,.4); }
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.06); overflow: hidden; }
.faq-q { padding: 20px 24px; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; transition: background .2s; }
.faq-q:hover { background: var(--cream); }
.faq-toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--peach); color: var(--orange); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-toggle { background: var(--orange); color: #fff; }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14.5px; color: var(--gray); line-height: 1.8; border-top: 1px solid #f0f0f0; }
.faq-item.open .faq-a { display: block; padding-top: 14px; }

/* ===== TESTIMONIALS ===== */
.testi-card { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border-left: 4px solid var(--orange); }
.stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; }
.testi-card p { font-size: 14px; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testi-author { font-weight: 700; color: var(--navy); font-family: 'Montserrat', sans-serif; font-size: 14px; }

/* ===== CONTACT ===== */
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-item i { color: var(--orange); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-item .text { font-size: 14px; line-height: 1.7; }
.contact-item .text strong { display: block; color: var(--navy); margin-bottom: 2px; font-family: 'Montserrat', sans-serif; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 8px;
  border: 1.5px solid #ddd; background: #fff; color: #333;
  font-size: 14px; font-family: 'Open Sans', sans-serif; outline: none; transition: border .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== TEAM ===== */
.team-card { text-align: center; }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 32px; font-weight: 800; color: #fff; font-family: 'Montserrat', sans-serif; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ===== BLOG ===== */
.blog-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); transition: transform .3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-thumb { height: 200px; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 48px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-tag { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: #999; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.read-more { color: var(--orange); font-weight: 700; font-size: 13px; font-family: 'Montserrat', sans-serif; display: inline-flex; align-items: center; gap: 5px; }

/* ===== PORTFOLIO ===== */
.portfolio-card { background: linear-gradient(135deg, var(--navy) 0%, #2c3e8c 100%); color: #fff; border-radius: 16px; padding: 30px 20px; text-align: center; transition: transform .3s, box-shadow .3s; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .3px; display: flex; flex-direction: column; align-items: center; gap: 12px; box-shadow: 0 4px 20px rgba(26,37,80,.2); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255,133,27,.3); background: linear-gradient(135deg, var(--orange) 0%, #e06b00 100%); }
.portfolio-card i { font-size: 32px; color: rgba(255,255,255,.85); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: #8899cc; padding: 50px 40px 20px; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto 36px; }
.footer-col h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px; }
.footer-col p { font-size: 13.5px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #8899cc; font-size: 13.5px; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-logo img { height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -0.5px; margin-bottom: 14px; display: inline-block; }
.footer-logo-text span { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: background .2s; }
.footer-social a:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; text-align: center; font-size: 13px; max-width: 1100px; margin: 0 auto; }
.footer-bottom a { color: var(--orange); }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 0; }
.float-btn { display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: #fff; font-size: 12px; font-weight: 700; font-family: 'Montserrat', sans-serif; text-decoration: none; cursor: pointer; border: none; transition: padding-right .3s; white-space: nowrap; }
.fb-contact { background: var(--orange); }
.fb-phone { background: #4267B2; }
.fb-whatsapp { background: #25D366; }
.float-btn i { font-size: 16px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy), #2c3e8c); color: #fff; padding: 60px 40px; text-align: center; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 16px; color: #b8cafe; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== DARK SECTION ===== */
.dark-section { background: var(--navy); color: #fff; }
.dark-section .section-title h2 { color: #fff; }
.dark-section .section-title p { color: #a0aed0; }

/* ===== TOOLS/LOGOS ROW ===== */
.tools-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.tool-badge { background: #fff; border-radius: 10px; padding: 10px 20px; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,.07); }

/* ===== BREADCRUMB ===== */
.inner-breadcrumb { background: #f0f0f0; padding: 10px 40px; font-size: 13px; }
.inner-breadcrumb a { color: var(--orange); }
.inner-breadcrumb span { margin: 0 6px; color: #999; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */

/* ── Tablet + Mobile Nav (≤900px) ── */
@media (max-width: 900px) {
  header { padding: 10px 16px; }
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: #fff;
    padding: 70px 20px 20px;
    box-shadow: -4px 0 20px rgba(0,0,0,.18);
    gap: 4px;
    overflow-y: auto;
    z-index: 998;
  }
  nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: #f8f8f8; border-radius: 8px; margin-top: 4px; margin-bottom: 4px; }
  .hamburger { display: block; z-index: 999; }

  /* Topbar */
  .topbar { padding: 7px 16px; font-size: 12px; gap: 4px; }
  .topbar > div:first-child { font-size: 11px; }

  /* Sections */
  section { padding: 50px 16px; }
  .page-hero { padding: 50px 16px 40px; }

  /* Hero */
  .hero { padding: 40px 16px 40px; gap: 30px; }
  .hero-text { min-width: 100%; }
  .hero-image { min-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-badges { justify-content: center; }

  /* Stats bar: 2×2 grid on tablet */
  .stats-bar { padding: 20px 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  /* Cards */
  .card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .card-grid-6 { grid-template-columns: repeat(2, 1fr); }

  /* Process steps */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-step::after { display: none; }

  /* Split layout */
  .split { flex-direction: column; gap: 30px; }
  .split-img, .split-content { min-width: 100%; }

  /* Footer */
  footer { padding: 40px 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  /* Float buttons → hide on mobile; replaced by sticky bar */
  .float-btns { display: none; }

  /* Topbar breadcrumb */
  .inner-breadcrumb { padding: 10px 16px; }
  .form-group-row { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { padding: 40px 16px; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  .topbar { display: none; } /* hide topbar on tiny screens - too crowded */

  /* Hero */
  .hero { padding: 36px 16px 36px; }
  .hero-text h1 { font-size: clamp(24px, 6vw, 32px); }
  .hero-badges { gap: 8px; }
  .badge { padding: 6px 12px; font-size: 12px; }

  /* Stats: still 2×2 but tighter */
  .stats-bar { gap: 14px; padding: 20px 14px; }
  .stat .num { font-size: 26px; }

  /* Service cards */
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }

  /* Industry grid: 2 cols on small mobile */
  .card-grid-6 { grid-template-columns: repeat(2, 1fr); }

  /* Process: single col on phones */
  .process-steps { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: 13.5px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; font-size: 13.5px; }

  /* Form */
  .form-group-row { grid-template-columns: 1fr; }

  /* Portfolio cards: 2-col grid */
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Contact: stacked flex */
  .contact-btn-row { flex-direction: column; }
}

/* ── Very small phones (≤400px) ── */
@media (max-width: 400px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .hero-text h1 { font-size: clamp(22px, 7vw, 30px); }
}

/* ===== MOBILE STICKY CTA BAR ===== */
/* Shows on mobile (≤900px) to replace the floating button bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
@media (min-width: 901px) {
  .mobile-cta-bar { display: none !important; }
}
.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-decoration: none;
}
.mobile-cta-bar a i { font-size: 18px; }
.mcta-call { background: #4267B2; }
.mcta-wa { background: #25D366; }
.mcta-contact { background: var(--orange); }


/* ===== TEAM AVATARS ===== */
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 28px;
  font-weight: 800; color: #fff; margin: 0 auto 14px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== BUTTON VARIANTS ===== */
.btn-outline-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; font-size: 14px;
  border: 2px solid var(--orange); color: var(--orange);
  transition: background .2s, color .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ===== FORM SELECT ===== */
.form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-size: 14px; font-family: 'Open Sans', sans-serif;
  color: #555; background: #fafafa; appearance: none; cursor: pointer;
  outline: none; transition: border-color .2s;
}
.form-group select:focus { border-color: var(--orange); }

/* ===== NUMBERED LISTS IN CONTENT ===== */
.max-w ol {
  padding-left: 24px;
}
.max-w ol li {
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CONTACT ITEM TEXT ===== */
.contact-item .text strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
}
.contact-item .text a {
  color: var(--orange);
  font-weight: 600;
}
