/* ===== IDYATRACK - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Poppins:wght@300;500;700;800&display=swap');

:root {
  --primary: #f5a623;
  --primary-dark: #d4891a;
  --dark: #0a0d1a;
  --dark2: #0f1428;
  --dark3: #141830;
  --card-bg: #111527;
  --border: rgba(245,166,35,0.2);
  --text: #e8eaf2;
  --text-muted: #8b90a8;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #f5a623 0%, #f7c65b 100%);
  --gradient-dark: linear-gradient(135deg, #0a0d1a 0%, #141830 100%);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 10px 40px rgba(245,166,35,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left a, .topbar-right a { color: var(--text-muted); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--primary); }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 10px; align-items: center; }
.topbar-right a {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}
.topbar-right a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark3);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 60%);
}
.logo-text { color: var(--white); }
.logo-text span { color: var(--primary); }
.logo-sub { font-size: 10px; color: var(--text-muted); font-weight: 400; font-family: 'Inter', sans-serif; display: block; margin-top: -4px; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-radius: 6px;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(245,166,35,0.08);
}
.nav-cta {
  background: var(--gradient) !important;
  color: var(--dark) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(245,166,35,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 12px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.hamburger span { width: 28px; height: 3px; background: var(--text); border-radius: 3px; transition: all 0.3s; }

/* ===== SECTION COMMONS ===== */
.section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(28px,4vw,44px); color: var(--white); margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 600px; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gradient);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(245,166,35,0.4); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}
.btn-white:hover { transform: translateY(-3px); }

/* ===== HERO ===== */
.hero {
  background: var(--dark2);
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245,166,35,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,166,35,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { padding: 60px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 30px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--primary);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(36px,5vw,64px);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.hero-title-highlight {
  color: var(--primary);
  display: block;
  font-size: clamp(40px,6vw,72px);
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin: 20px 0 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat {}
.hero-stat-num {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-globe {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,166,35,0.2) 0%, transparent 60%),
              radial-gradient(circle at 65% 65%, rgba(245,166,35,0.1) 0%, transparent 50%);
  border: 1px solid rgba(245,166,35,0.2);
  position: relative;
  animation: rotate3d 20s linear infinite;
  box-shadow: 0 0 80px rgba(245,166,35,0.15), inset 0 0 60px rgba(245,166,35,0.05);
}
@keyframes rotate3d {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(1); }
}
.hero-globe::before, .hero-globe::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.1);
  animation: orbit 8s linear infinite;
}
.hero-globe::after { inset: -40px; animation-duration: 12s; animation-direction: reverse; }
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-float-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { top: 10%; right: -10px; animation-delay: 0s; }
.hero-float-card:nth-child(3) { bottom: 20%; left: -20px; animation-delay: 1.5s; }
.hero-float-card:nth-child(4) { top: 50%; right: -30px; animation-delay: 3s; }
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-icon { font-size: 20px; }

/* ===== NEW HERO ANIMATION STYLES ===== */
.welcome {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
  display: block;
  font-family: 'Exo 2', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-content .hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
}

.typing {
  display: inline-block;
  color: var(--primary);
  background: linear-gradient(
    90deg,
    var(--primary),
    #ffd700,
    var(--primary)
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.8s ease forwards 0.7s,
             gradientMove 6s linear infinite;
  opacity: 0;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 20ch;
  }
}

@keyframes cursor {

  0% {
    border-color: var(--primary);
  }

  50% {
    border-color: transparent;
  }

  100% {
    border-color: var(--primary);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.features-strip-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.feature-item-icon {
  width: 38px; height: 38px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,166,35,0.4);
  box-shadow: var(--shadow-gold);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--gradient);
  box-shadow: var(--shadow-gold);
}
.service-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== STATS ===== */
.stats-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-label { color: var(--text-muted); font-size: 14px; margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== PORTFOLIO ===== */
.portfolio-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 30px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  color: var(--dark);
  border-color: transparent;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.portfolio-img-container {
  position: relative;
}
.portfolio-img {
  height: 200px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-img-overlay {
  opacity: 1;
}
.portfolio-star {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #6b7280;
}
.portfolio-info {
  padding: 16px;
}
.portfolio-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--dark);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-plan { font-size: 13px; color: var(--primary); font-family: 'Exo 2', sans-serif; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-card h3 { font-size: 20px; color: var(--white); margin-bottom: 20px; }
.pricing-price { margin-bottom: 8px; }
.price-currency { font-size: 20px; color: var(--primary); vertical-align: top; margin-top: 8px; display: inline-block; }
.price-amount {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual {
  position: relative;
  height: 480px;
}
.about-main-img {
  width: 75%;
  height: 360px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.about-main-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.1) 0%, transparent 60%);
}
.about-card-float {
  position: absolute;
  bottom: 30px;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  width: 200px;
  box-shadow: var(--shadow);
}
.about-card-float h4 { font-size: 28px; color: var(--primary); }
.about-card-float p { font-size: 13px; color: var(--text-muted); }
.about-values { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.about-value:hover { border-color: rgba(245,166,35,0.4); transform: translateX(6px); }
.about-value-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-value h4 { font-size: 15px; color: var(--white); margin-bottom: 4px; }
.about-value p { font-size: 13px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-info-card:hover { border-color: rgba(245,166,35,0.4); transform: translateX(6px); }
.contact-info-icon {
  width: 46px; height: 46px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.contact-info-card p { font-size: 15px; color: var(--white); font-weight: 600; }
.working-hours { margin-top: 24px; padding: 20px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; }
.working-hours h4 { color: var(--primary); margin-bottom: 12px; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.working-hours p { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form h3 { font-size: 22px; color: var(--white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark3); }

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--dark2);
  padding: 0;
}
.map-container {
  min-height: 350px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
}
.map-icon { font-size: 48px; }
.map-container h3 {
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
}
.map-container p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
}

/* ===== QUICK CONTACT CARDS ===== */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.quick-contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.quick-contact-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-8px);
}
.quick-contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.quick-contact-card h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 18px;
}
.quick-contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== PRICING NOTE ===== */
.pricing-note {
  background: var(--card-bg);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 16px;
  padding: 28px;
  margin-top: 40px;
  text-align: center;
}
.pricing-note p {
  color: var(--text-muted);
  font-size: 15px;
}
.pricing-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  overflow-x: auto;
  margin-top: 50px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table thead tr {
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  text-align: left;
  padding: 16px 20px;
  color: var(--text-muted);
  font-weight: 600;
}
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
  text-align: center;
}
.comparison-table th:nth-child(3) {
  color: var(--primary);
  background: rgba(245,166,35,0.05);
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-table td {
  padding: 14px 20px;
  color: var(--text-muted);
}
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
  text-align: center;
  color: var(--text);
}
.comparison-table td:nth-child(3) {
  background: rgba(245,166,35,0.03);
}
.comparison-table td.checked {
  color: var(--primary);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.faq-item h4 {
  color: var(--white);
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.service-detail-card.reverse {
  grid-template-columns: 2fr 1fr;
}
.service-detail-icon-box {
  text-align: center;
}
.service-detail-icon-box .icon {
  font-size: 64px;
  margin-bottom: 16px;
}
.service-detail-icon-box h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.service-detail-icon-box .price-tag {
  display: block;
}
.service-detail-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-detail-feature span {
  color: var(--primary);
}
.service-detail-content .btn {
  margin-top: 24px;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.service-detail-card.reverse {
  grid-template-columns: 2fr 1fr;
}
.service-detail-icon-box {
  text-align: center;
}
.service-detail-icon-box .icon {
  font-size: 64px;
  margin-bottom: 16px;
}
.service-detail-icon-box h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.service-detail-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-detail-feature span {
  color: var(--primary);
}
.service-detail-content .btn {
  margin-top: 24px;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-8px);
}
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-card h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== SOLUTIONS TWO COLUMN ===== */
.solutions-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.solutions-text p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.solutions-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutions-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.solutions-benefit .icon {
  font-size: 24px;
  flex-shrink: 0;
}
.solutions-benefit h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}
.solutions-benefit p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}
.solutions-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solutions-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}
.solutions-card:nth-child(2) {
  margin-top: 24px;
}
.solutions-card:nth-child(3) {
  margin-top: -24px;
}
.solutions-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.solutions-card h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
}
.solutions-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}
.footer-box h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-box h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.footer-box h3::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 30px; height: 2px;
  background: var(--primary);
}
.footer-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-box p i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-box ul li {
  margin-bottom: 10px;
}
.footer-box ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-box ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-box ul li a::before {
  content: '›';
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom p strong {
  color: var(--primary);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.whatsapp-float i {
  line-height: 60px;
}

/* ===== RESPONSIVE FOR NEW FOOTER ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark2);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px,5vw,52px); color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--primary); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(245,166,35,0.4); }
.team-avatar {
  width: 80px; height: 80px;
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}
.team-card h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--primary); font-family: 'Exo 2', sans-serif; font-weight: 600; }

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; padding: 0 20px; }
.process-num {
  width: 70px; height: 70px;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.process-step h4 { color: var(--white); font-size: 15px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 18px;
  transition: all 0.3s;
}
.why-card:hover { border-color: rgba(245,166,35,0.4); transform: translateX(6px); }
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-card h4 { color: var(--white); font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(28px,4vw,44px); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--text-muted); font-size: 16px; max-width: 500px; margin: 0 auto 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.stars { color: var(--primary); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: rgba(245,166,35,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.author-name { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); }
.author-title { font-size: 12px; color: var(--primary); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark2);
  z-index: 2000;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-title { font-size: clamp(48px, 5vw, 80px); }
}

/* Tablet Landscape (1280px) */
@media (max-width: 1280px) {
  .container { padding: 0 40px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .services-grid, .portfolio-grid, .pricing-grid, .quick-contact-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .process-steps::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .hero-content { padding: 40px 0; }
  .hero-content .hero-title { font-size: 56px; }
  .service-detail-card, .service-detail-card.reverse { grid-template-columns: 1fr; }
  .solutions-two-column { grid-template-columns: 1fr; }
  .solutions-card:nth-child(2), .solutions-card:nth-child(3) { margin-top: 0; }
}

/* Large Mobile (900px) */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .features-strip-inner { gap: 16px; }
  .service-detail-features { grid-template-columns: 1fr; }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid, .portfolio-grid, .pricing-grid, .quick-contact-grid, .why-grid { grid-template-columns: 1fr; }
  .topbar-left { gap: 12px; font-size: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .features-strip-inner { gap: 20px; }
  .hero-content { padding: 30px 0; }
  .hero-content .hero-title { font-size: 44px; }
  .welcome { font-size: 18px; letter-spacing: 2px; }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .map-container { min-height: 300px; padding: 30px 20px; }
  .map-icon { font-size: 40px; }
  .map-container h3 { font-size: 18px; }
  .contact-form { padding: 30px 24px; }
  .quick-contact-card { padding: 24px; }
  .quick-contact-icon { font-size: 40px; }
  .service-detail-card { padding: 30px; }
  .solutions-cards { grid-template-columns: 1fr; }
  .faq-item { padding: 20px; }
  .pricing-note { padding: 24px; }
}

/* Mobile (600px) */
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid .stat-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-content .hero-title { font-size: 36px; }
  .hero-stat-num { font-size: 24px; }
  .section-title { font-size: 28px; }
  .cta-section { padding: 60px 0; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .mobile-nav a { font-size: 20px; }
  .why-card { padding: 20px; }
  .service-detail-card { padding: 24px; gap: 24px; }
  .service-detail-icon-box .icon { font-size: 48px; }
  .solutions-card { padding: 24px; }
  .solutions-card .icon { font-size: 32px; }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content .hero-title { font-size: 32px; }
  .welcome { font-size: 16px; letter-spacing: 1.5px; }
  .hero-desc { font-size: 14px; }
  .logo-text { font-size: 20px; }
  .logo-sub { font-size: 9px; }
  .nav-inner { height: 64px; }
  .section { padding: 40px 0; }
  .btn { padding: 12px 24px; font-size: 13px; }
  .service-card, .testimonial-card { padding: 24px; }
  .pricing-card { padding: 32px 20px; }
  .footer-container { gap: 32px; padding-bottom: 32px; }
  .map-container { min-height: 280px; padding: 24px 16px; }
  .map-icon { font-size: 36px; }
  .map-container h3 { font-size: 16px; }
  .map-container p { font-size: 13px; }
  .contact-form { padding: 24px 16px; }
  .contact-form h3 { font-size: 18px; }
  .quick-contact-card { padding: 20px; }
  .quick-contact-icon { font-size: 36px; }
  .quick-contact-card h3 { font-size: 16px; }
  .quick-contact-card p { font-size: 13px; }
  .why-card { padding: 18px; }
  .why-icon { width: 40px; height: 40px; font-size: 18px; }
  .why-card h4 { font-size: 14px; }
  .why-card p { font-size: 12px; }
  .faq-item { padding: 18px; }
  .faq-item h4 { font-size: 15px; }
  .faq-item p { font-size: 13px; }
  .pricing-note { padding: 20px; }
  .pricing-note p { font-size: 14px; }
  .service-detail-card { padding: 20px; }
  .service-detail-content p { font-size: 14px; }
  .service-detail-feature { font-size: 13px; }
  .solutions-card { padding: 20px; }
  .solutions-card .icon { font-size: 32px; }
  .solutions-card h4 { font-size: 14px; }
  .solutions-card p { font-size: 12px; }
  .solutions-text p { font-size: 14px; }
  .solutions-benefit h4 { font-size: 14px; }
  .solutions-benefit p { font-size: 12px; }
  .solutions-benefit .icon { font-size: 20px; }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
  .btn, a, button {
    min-height: 44px;
    min-width: 44px;
  }
  .hamburger {
    padding: 12px;
  }
}