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

:root {
  --color-bg: #0a0a1a;
  --color-bg-dark: #060612;
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-border: rgba(255, 255, 255, 0.08);
  --color-white: #ffffff;
  --color-text: #e0e0e0;
  --color-text-muted: #a0a0b0;
  --color-purple: #792ac9;
  --color-purple-light: #792ac9;
  --color-purple-dark: #5e1fa0;
  --color-pink: #bb3c78;
  --color-gradient-start: #792ac9;
  --color-gradient-end: #bb3c78;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  color: var(--color-white);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(187, 60, 120, 0.3);
}

.btn-outline {
  background: transparent;
  border: none;
  color: var(--color-gradient-start);
}

.btn-outline .btn-text {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-outline svg {
  stroke: var(--color-gradient-end);
}

.btn-outline:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 28px;
  width: auto;
}

.logo-build {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-white);
  margin-left: 6px;
  position: relative;
  top: 2px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-purple-light);
  border-radius: 1px;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: var(--color-bg);
  background-image: url('../assets/images/hero-bg.png');
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: auto 92%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--color-bg) 35%, rgba(10,10,26,0.4) 60%, transparent 75%),
    radial-gradient(ellipse 600px 400px at 70% 40%, rgba(121, 42, 201, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 60%, rgba(187, 60, 120, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px 80px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
}

.hero-content {
  max-width: 540px;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  display: none;
}

.hero-image {
  display: none;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  position: relative;
  z-index: 2;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-surface-border);
  border-bottom: 1px solid var(--color-surface-border);
}

.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--color-surface-border);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(121, 42, 201, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(121, 42, 201, 0.06);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-purple-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  text-align: center;
  display: block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SERVICES (SECTION 3)
   ============================================ */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(121, 42, 201, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(121, 42, 201, 0.3);
  background: rgba(121, 42, 201, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-purple-light);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-purple-light);
  transition: opacity 0.3s ease;
}

.service-link:hover {
  opacity: 0.8;
}

/* ============================================
   PORTFOLIO (SECTION 4)
   ============================================ */
.portfolio {
  background: var(--color-bg-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
}

.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: 8px;
  margin-bottom: 12px;
}

.portfolio-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.portfolio-tag {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   PROCESS / HOW WE WORK (SECTION 5)
   ============================================ */
.process {
  background: var(--color-bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: 8px;
  position: relative;
  transition: border-color 0.3s ease;
}

.process-step:hover {
  border-color: rgba(121, 42, 201, 0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-purple-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(121, 42, 201, 0.3);
  background: rgba(121, 42, 201, 0.06);
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-purple-light);
  fill: none;
  stroke-width: 1.5;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ============================================
   WHY US (SECTION 6)
   ============================================ */
.why-us {
  background: var(--color-bg-dark);
}

.why-us .section-heading {
  text-align: left;
}

.why-us .section-eyebrow {
  text-align: left;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-us-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-top: -24px;
}

.why-us-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-point {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-point:nth-child(1) {
  border-right: 1px solid var(--color-surface-border);
  border-bottom: 1px solid var(--color-surface-border);
}

.why-point:nth-child(2) {
  border-bottom: 1px solid var(--color-surface-border);
}

.why-point:nth-child(3) {
  border-right: 1px solid var(--color-surface-border);
}


.why-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(121, 42, 201, 0.3);
  background: rgba(121, 42, 201, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-point-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-purple-light);
  fill: none;
  stroke-width: 1.5;
}

.why-point-text h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ============================================
   TESTIMONIALS (SECTION 7)
   ============================================ */
.testimonials {
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-surface-border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-icon {
  display: none;
}

.testimonial-quote {
  position: relative;
  font-size: 64px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 40px;
  overflow: visible;
}

.testimonial-quote::before {
  content: '\201C';
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-surface-border);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}

.author-role {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   CTA BANNER (REUSABLE)
   ============================================ */
.cta-banner {
  background: var(--color-bg);
  padding: 40px;
  overflow: hidden;
}

.cta-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  background-color: var(--color-bg-dark);
  background-repeat: no-repeat;
  background-position: 75% center;
  background-size: 60% auto;
  border: 1px solid var(--color-surface-border);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 430px;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 30% 50%, rgba(121, 42, 201, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  padding: 56px 80px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-banner-heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.cta-gradient-word {
  background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner-sub {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 320px;
}

.cta-btn {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
}

.cta-banner-img-col {
  display: none;
}


/* ============================================
   FOOTER (REUSABLE)
   ============================================ */
.site-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-surface-border);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px 40px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--color-surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.footer-socials a:hover {
  border-color: var(--color-purple-light);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.5;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--color-surface-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-white);
}

/* ============================================
   RESPONSIVE , TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }

  .nav-list {
    gap: 24px;
  }

  .nav-link {
    font-size: 14px;
  }

  /* Hide section background image, show img tag instead */
  .hero {
    background-image: none;
  }

  .hero::before {
    background:
      radial-gradient(ellipse 400px 300px at 60% 40%, rgba(121, 42, 201, 0.1) 0%, transparent 70%);
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 32px;
    padding: 40px 0 0 24px;
    min-height: calc(100vh - var(--header-height));
  }

  .hero-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-description {
    font-size: 15px;
  }

  .stats-container {
    padding: 32px 24px;
    gap: 16px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 13px;
  }

  .section-container {
    padding: 64px 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid .footer-col:nth-child(n+4) {
    grid-column: span 1;
  }
}

/* ============================================
   RESPONSIVE , TABLET PORTRAIT (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--color-surface-border);
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .nav-link {
    font-size: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    text-align: center;
    min-height: unset;
    justify-items: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    /* max-width: 480px; */
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 32px 24px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
  }

  .section-container {
    padding: 56px 24px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-us .section-heading,
  .why-us .section-eyebrow {
    text-align: center;
  }

  .why-us-body {
    text-align: center;
    margin-top: 0;
  }

  .why-us-points {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE , PHONE (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }

  .logo-img {
    height: 22px;
  }

  .logo-build {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-container {
    padding: 24px 16px 0;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 14px 24px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item::after {
    display: none !important;
  }

  .stat-number {
    font-size: 28px;
  }

  .section-container {
    padding: 48px 16px;
  }

  .section-heading {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .why-us-points {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: span 1;
  }

}

@media (max-width: 1024px) {
  .cta-banner {
    padding: 24px;
  }
  .cta-banner-inner {
    background-size: 52% auto;
  }
  .cta-banner-content {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 16px;
  }
  .cta-banner-inner {
    background-image: none !important;
    min-height: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .cta-banner-content {
    padding: 36px 28px 36px;
  }
  .cta-banner-img-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    align-self: stretch;
  }
  .cta-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 12px;
  }
  .cta-banner-inner {
    grid-template-columns: 1fr;
  }
  .cta-banner-content {
    padding: 28px 20px 20px;
  }
  .cta-banner-img-col {
    height: 200px;
  }
  .cta-banner-img {
    height: 200px;
    width: auto;
    margin: 0 auto;
  }
}
