/* ============================================
   DESIGN SYSTEM — CSS Variables
   ============================================ */
:root {
  /* BRAND */
  --primary: #ea6506;
  --primary-hover: #d15805;
  --primary-light: rgba(234, 101, 6, 0.08);
  --primary-shadow: rgba(234, 101, 6, 0.25);

  /* TEXT */
  --text-primary: #030a11;
  --text-secondary: rgba(3, 10, 17, 0.65);
  --text-tertiary: rgba(3, 10, 17, 0.45);
  --text-accent: #64748b;

  /* BACKGROUNDS */
  --bg-white: #ffffff;
  --bg-gray: #f8fafc;
  --bg-peach: #fff7ed;
  --bg-sky: #f0f9ff;
  --bg-dark: #020024;

  /* DARK SECTION TEXT */
  --dark-text: #eef5fc;
  --dark-subtext: rgba(238, 245, 252, 0.7);
  --dark-border: rgba(238, 245, 252, 0.1);
  --dark-card: rgba(238, 245, 252, 0.05);

  /* BORDERS */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;

  /* SUCCESS */
  --success: #10b981;

  /* SHADOWS */
  --shadow-sm: 0 2px 8px rgba(3, 10, 17, 0.08);
  --shadow-md: 0 12px 24px rgba(3, 10, 17, 0.12);
  --shadow-navbar: 0 4px 20px rgba(3, 10, 17, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tag-dark {
  color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn-full {
  width: 100%;
}

.play-icon {
  font-size: 0.75rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 1000;
  background: var(--bg-white);
  border-radius: 50px;
  padding: 0.4rem 1.5rem;
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.5rem;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-hover);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--bg-white);
  padding: 10rem 0 5rem;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  color: var(--text-primary);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(234, 101, 6, 0.35);
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-social a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.hero-social a:hover {
  color: var(--primary);
}

.hero-social .dot {
  opacity: 0.5;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.25rem;
  animation: float 6s ease-in-out infinite;
  /* margin-top: 1rem; */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ============================================
   CHALLENGES
   ============================================ */
.challenges {
  background: var(--bg-peach);
  padding: 3.5rem 0;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.challenge-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
}

.challenge-card.wide {
  grid-column: span 1;
}

.challenge-card.full {
  grid-column: 1 / -1;
}

.challenge-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.challenge-icon svg {
  width: 100%;
  height: 100%;
}

.challenge-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.challenge-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Desktop: Row 1 = 3 cards, Row 2 = 2 wider, Row 3 = 1 full */
@media (min-width: 769px) {
  .challenges-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .challenge-card {
    grid-column: span 2;
  }

  .challenge-card.wide {
    grid-column: span 3;
  }

  .challenge-card.full {
    grid-column: 1 / -1;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg-white);
  padding: 3.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-accent);
  background: var(--bg-gray);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.service-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-features h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  margin-bottom: 0.75rem;
}

.service-features ul {
  margin-bottom: 0.75rem;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.service-timeline {
  margin-bottom: 1.25rem;
}

.service-timeline p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.service-price {
  border: 2px solid var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 1rem;
  margin-top: auto;
}

.service-details {
  display: block;
  text-align: center;
  color: var(--text-accent);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.75rem;
  transition: color 0.2s;
}

.service-details:hover {
  color: var(--primary);
}

.services-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.services-footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* ============================================
   WHAT YOU GET
   ============================================ */
.whatyouget {
  background: var(--bg-gray);
  padding: 3rem 0;
  text-align: center;
}

.benefits-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.benefit-item:hover {
  background: var(--primary-light);
}

.check {
  color: var(--success);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   WHY CHOOSE ME
   ============================================ */
.whychoose {
  background: var(--bg-gray);
  padding: 3.5rem 0;
}

.whychoose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.whychoose-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.whychoose-left p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--primary);
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.free-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  background: var(--bg-gray);
  padding: 3.5rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.project-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-demo-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--bg-white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.live-demo-badge:hover {
  background: var(--primary);
  color: #fff;
}

.project-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-accent);
  background: var(--bg-gray);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}

.project-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.project-body>p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-metrics {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.metric {
  flex: 1;
  background: var(--bg-gray);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.metric span {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.project-tech {
  font-size: 0.8rem;
  color: var(--text-accent);
  margin-bottom: 1.25rem;
  margin-top: auto;
}

/* Project Buttons Modifier */
.project-body .btn {
  font-size: 0.85rem;
  align-self: center;
}

.project-body .btn-primary {
  background: #f58434;
  /* Lighter shade of primary */
  border-color: #f58434;
}

.project-body .btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ============================================
   TECH STACK (Marquee)
   ============================================ */
.techstack {
  background: var(--bg-white);
  padding: 2.5rem 0 2rem;
}

.marquee-wrapper {
  overflow: hidden;
  margin-top: 1rem;
  padding: 0.25rem 0;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: var(--bg-gray);
  border: 1px solid var(--border-light);
  color: var(--text-accent);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS (Auto-scroll)
   ============================================ */
.testimonials {
  background: var(--bg-gray);
  padding: 3.5rem 0;
}

.testimonial-marquee {
  overflow: hidden;
  margin-top: 1.25rem;
  padding: 0.5rem 0;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: testimonialScroll 40s linear infinite reverse;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

.stars {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 0.75rem;
}

.testimonial-card strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.testimonial-card .role {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-card .company {
  display: block;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--bg-peach);
  padding: 2.5rem 0;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-inner>p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-email {
  font-size: 0.95rem;
  color: var(--text-accent);
}

.cta-email a {
  color: var(--text-accent);
  transition: color 0.2s;
}

.cta-email a:hover {
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  padding: 2.5rem 0 0;
  color: var(--dark-subtext);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand>p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  font-size: 0.85rem;
  color: var(--dark-subtext);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--primary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: var(--dark-subtext);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 0.75rem;
}

.footer-legal a {
  color: var(--dark-subtext);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--primary);
}

.footer-legal span {
  opacity: 0.4;
}

/* ============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .whychoose-left h2 {
    font-size: 2rem;
  }

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

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

  .project-card {
    max-width: none;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 1.5rem;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .navbar.menu-open .nav-cta {
    display: block;
    text-align: center;
    position: absolute;
    top: calc(100% + 230px);
    left: 1.5rem;
    right: 1.5rem;
    border-radius: 8px;
  }

  /* Hero */
  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero-img {
    max-width: 320px;
  }

  /* Challenges */
  .challenges-grid {
    grid-template-columns: 1fr !important;
  }

  .challenge-card,
  .challenge-card.wide,
  .challenge-card.full {
    grid-column: span 1 !important;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why Choose */
  .whychoose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .whychoose-left h2 {
    font-size: 1.75rem;
  }

  .whychoose-left p {
    max-width: none;
  }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    max-width: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .cta-inner h2 {
    font-size: 1.75rem;
  }

  .testimonial-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }
}