/* ═══════════════════════════════════════════════
   CARE INFOTECH — Premium Design System
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Core Palette */
  --blue-dark:    #070e1f;
  --blue-deep:    #0d1f40;
  --blue-mid:     #1a3a6b;
  --blue-accent:  #2563eb;
  --blue-bright:  #3b82f6;
  --blue-light:   #60a5fa;
  --orange:       #f97316;
  --orange-dark:  #ea6c0a;
  --orange-glow:  rgba(249,115,22,0.35);
  --off-white:    #f0f4fb;
  --gray-light:   #e2e8f4;
  --gray-mid:     #8a96a8;
  --white:        #ffffff;
  --green:        #16a34a;
  --red:          #dc2626;
  --gold:         #fbbf24;
  --ink:          #111827;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #070e1f 0%, #0d2050 55%, #1a3a6b 100%);
  --grad-card:    linear-gradient(145deg, #ffffff 0%, #f0f6ff 100%);
  --grad-orange:  linear-gradient(135deg, #f97316, #fb923c);
  --grad-blue:    linear-gradient(135deg, #2563eb, #3b82f6);
  --grad-section: linear-gradient(180deg, #f0f4fb 0%, #e8edf8 100%);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(10,22,60,0.08);
  --shadow-md:   0 8px 32px rgba(10,22,60,0.13);
  --shadow-lg:   0 20px 60px rgba(10,22,60,0.18);
  --shadow-blue: 0 12px 40px rgba(37,99,235,0.22);
  --shadow-orange: 0 12px 40px rgba(249,115,22,0.28);

  /* Misc */
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

/* ─── Layout ────────────────────────────────────── */
.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Header / Navbar ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 14, 31, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 14, 31, 0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.navbar {
  height: 72px;
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.brand span span,
.footer-brand span span { color: var(--orange); }

.brand-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,0.4), rgba(59,130,246,0.2));
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
}

.nav-links a:not(.btn) {
  padding: 8px 14px;
  border-radius: 8px;
  opacity: 0.82;
  font-size: 0.95rem;
  transition: color var(--transition), opacity var(--transition), background var(--transition);
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn):focus-visible {
  color: var(--orange);
  opacity: 1;
  background: rgba(249,115,22,0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
              border-color var(--transition), color var(--transition),
              box-shadow var(--transition);
}

.btn:hover, .btn:focus-visible { transform: translateY(-3px); }

.btn-small { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }

.btn-orange {
  color: var(--white);
  background: var(--grad-orange);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover, .btn-orange:focus-visible {
  background: linear-gradient(135deg, #ea6c0a, #f97316);
  box-shadow: 0 18px 48px rgba(249,115,22,0.38);
}

.btn-blue {
  color: var(--white);
  background: var(--grad-blue);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover, .btn-blue:focus-visible {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 18px 48px rgba(37,99,235,0.32);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}
.btn-outline:hover, .btn-outline:focus-visible {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.14);
}

.btn-outline-dark {
  color: var(--blue-dark);
  border-color: var(--gray-light);
  background: var(--white);
}
.btn-muted { color: var(--blue-mid); background: var(--gray-light); }
.btn-green { color: var(--white); background: var(--green); }
.full-width { width: 100%; }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 0%, rgba(37,99,235,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(249,115,22,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Animated floating orbs */
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero h1 span { color: var(--orange); }

.hero-text {
  max-width: 580px;
  margin: 26px 0 36px;
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

/* Stats Card */
.stats-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stats-grid div {
  padding: 20px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.stats-grid div:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.stats-grid strong {
  display: block;
  color: var(--orange);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stats-grid span {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22,163,74,0.3);
  color: #4ade80;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── Sections ──────────────────────────────────── */
.section { padding: 100px 0; }

.services-section,
.why-section,
.contact-section {
  background: var(--grad-section);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.why-grid h2,
.contact-copy h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.contact-copy > p {
  margin: 16px auto 0;
  color: #5a6a80;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ─── Services ──────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}

.service-card,
.team-card,
.testimonial-card,
.why-item,
.process-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

.service-card.is-visible,
.team-card.is-visible,
.testimonial-card.is-visible,
.why-item.is-visible,
.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(37,99,235,0.07);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.is-visible:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.15);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  font-size: 1.7rem;
  border: 1px solid rgba(37,99,235,0.1);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 18px;
  color: #5a6a80;
  font-size: 0.93rem;
  line-height: 1.6;
}

.service-card strong {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ─── Team ──────────────────────────────────────── */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.team-card {
  width: min(100%, 390px);
  padding: 40px 36px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(37,99,235,0.07);
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-blue);
}

.team-card.is-visible:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border: 4px solid transparent;
  border-radius: 50%;
  object-fit: cover;
  background: var(--grad-blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.team-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

.role-owner { background: var(--grad-orange); }
.role-tech  { background: var(--grad-blue); }

.team-card p {
  margin: 0;
  color: #5a6a80;
  line-height: 1.75;
  font-size: 0.95rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.tag-row span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue-accent);
  background: #eff6ff;
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(37,99,235,0.12);
}

.profile-meta {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ─── Why Us ─────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,0.9fr);
  gap: 72px;
  align-items: start;
}

.why-list, .process-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.why-item, .process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37,99,235,0.06);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

.why-item.is-visible:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.why-item > span, .process-step > span {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--grad-blue);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}

.why-item h3, .process-step h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.why-item p, .process-step p {
  margin: 0;
  color: #5a6a80;
  font-size: 0.93rem;
}

.process-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(37,99,235,0.07);
}

.process-panel .process-list { margin-top: 20px; }
.process-panel .process-step {
  padding: 14px 0;
  background: transparent;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--gray-light);
}
.process-panel .process-step:last-child { border-bottom: none; }

/* ─── Testimonials ───────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37,99,235,0.07);
  position: relative;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(37,99,235,0.05);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card.is-visible:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  flex: 1;
  margin: 0 0 20px;
  color: #5a6a80;
  font-style: italic;
  line-height: 1.75;
  font-size: 0.97rem;
}

.testimonial-card strong {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ─── Contact Section ────────────────────────────── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(37,99,235,0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(249,115,22,0.05), transparent 60%);
  pointer-events: none;
}

/* Override: single column, centered */
.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.contact-copy {
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

.contact-copy > p { margin: 14px auto 0; max-width: 560px; }

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 40px;
  width: 100%;
  max-width: 820px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37,99,235,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-box span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.1);
}

.info-box p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.97rem;
}

/* ─── Footer ─────────────────────────────────────── */
.site-footer {
  color: var(--white);
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(37,99,235,0.08), transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr;
  gap: 48px;
  padding: 64px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-grid p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 20px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-grid a:not(.brand):hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-bottom {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

/* ─── Toast ─────────────────────────────────────── */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  min-width: min(340px, calc(100vw - 48px));
  max-width: 420px;
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
  font-weight: 800;
  font-size: 0.95rem;
}
.toast.error  { border-left-color: var(--red); }
.toast.show   { transform: translateY(0); opacity: 1; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 80px 0 64px; }
  .hero-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { text-align: left; }
  .contact-grid { gap: 48px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-grid { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container, .navbar, .footer-bottom {
    width: min(100% - 32px, 1140px);
  }

  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    display: grid;
    gap: 4px;
    padding: 16px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a { padding: 14px; border-radius: 8px; color: var(--ink); opacity: 1; }
  .nav-links a:hover { color: var(--orange); }

  .hero h1 { font-size: 2.8rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }

  .service-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .info-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  .section { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
