@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f2f2f2;
  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --text: #0a0a0a;
  --text-muted: #555555;
  --border: #d0d0d0;
  --accent-rgb: 230, 57, 70;
  --bg-rgb: 255, 255, 255;
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  --heading-weight: 700;
  --body-weight: 400;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--text);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nav-brand-name {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--text);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: 'KAIROS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 15vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-text { color: var(--bg); }

.hero-badge {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--bg);
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1 .accent-word { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(0.6) contrast(1.1);
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 2px solid var(--accent);
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  min-height: 52px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--bg);
  color: var(--bg);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--bg);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
  position: relative;
  padding-left: 56px;
}

.section-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 6px;
  background: var(--accent);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Section with diagonal accent lines */
.section--shapes {
  position: relative;
}

.section--shapes::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(var(--accent-rgb), 0.08) 20px,
    rgba(var(--accent-rgb), 0.08) 26px
  );
  pointer-events: none;
  z-index: 0;
}

.section--shapes > * { position: relative; z-index: 1; }

.section--surface {
  background: var(--surface);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 40px;
  border: 2px solid var(--text);
  border-radius: 0;
  transition: var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
  position: relative;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.service-card-content { min-width: 0; }

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--transition);
  margin-bottom: 20px;
}

.service-card:hover .service-card-img {
  filter: grayscale(0);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card-badge {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 10px;
  margin-bottom: 12px;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.team-grid::-webkit-scrollbar { display: none; }

.team-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border: 2px solid var(--text);
  border-radius: 0;
  transition: var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-card:hover {
  border-color: var(--accent);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--transition);
}

.team-card:hover .team-card-photo {
  filter: grayscale(0);
}

.team-card-no-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  text-transform: uppercase;
}

.team-card-info {
  padding: 20px 16px;
}

.team-card-info h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--text);
  border-radius: 0;
  transition: border-color var(--transition);
}

.gallery-item:hover {
  border-color: var(--accent);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.1);
  transition: filter var(--transition), transform var(--transition);
  background: var(--surface);
}

.gallery-item:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--bg);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay p {
  font-size: 0.8rem;
  line-height: 1.4;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--text);
  color: var(--bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'KAIROS';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--heading-font);
  font-size: 12vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .btn-primary { background: var(--accent); border-color: var(--accent); }
.cta-section .btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.3); color: var(--bg); }
.cta-section .btn-outline:hover { border-color: var(--bg); }

/* ============================================
   UTP / ADVANTAGES
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.advantage-card {
  padding: 48px 32px;
  border: 2px solid var(--text);
  position: relative;
  transition: var(--transition);
}

.advantage-card:hover { border-color: var(--accent); }

.advantage-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 2px solid var(--text);
  transition: border-color var(--transition);
}

.contact-item:hover { border-color: var(--accent); }

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  font-size: 1.2rem;
}

.contact-item h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.contact-item p,
.contact-item a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--accent); }

/* ============================================
   MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  border: 2px solid var(--text);
  margin-top: 48px;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(1);
  transition: filter var(--transition);
}

.map-container:hover iframe { filter: grayscale(0); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: var(--bg);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--bg); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================
   PAGE HERO (for subpages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-title);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: 15vw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  position: relative;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-block {
  padding: 48px;
  border: 2px solid var(--text);
  position: relative;
}

.reviews-block::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--heading-font);
  font-size: 6rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}

.reviews-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

/* ============================================
   COUNTERS SECTION
   ============================================ */
.counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--text);
}

.counter-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 2px solid var(--text);
}

.counter-item:last-child { border-right: none; }

.counter-value {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================
   TEXT SAFETY
   ============================================ */
.service-card,
.team-card,
.hero h1,
.section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .counters-row { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-photo { order: -1; }

  .hero-photo img {
    aspect-ratio: 4/3;
  }

  .hero-photo::before { display: none; }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero h1 { font-size: 2.2rem; }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn { width: 100%; text-align: center; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; padding-left: 48px; }

  .services-grid { grid-template-columns: 1fr; }

  .service-card {
    grid-template-columns: auto 1fr;
    padding: 24px;
    gap: 16px;
  }

  .service-card-number { font-size: 2.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .team-card { flex: 0 0 180px; }

  .contact-list { grid-template-columns: 1fr; }

  .advantages-grid { grid-template-columns: 1fr; }

  .counters-row { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 32px 16px; }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(even) { border-right: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }

  .page-hero { padding: 120px 0 60px; }

  .map-container { height: 280px; }

  .btn { min-height: 48px; padding: 14px 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stat-number { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .service-card-number { font-size: 2rem; }
  .counter-value { font-size: 2rem; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-brand-name { font-size: 1.2rem; }
}
