/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --orange:        #F4845F;
  --orange-dark:   #e8693e;
  --orange-light:  #FEF0EB;
  --orange-mid:    #F9C5B0;
  --bg:            #FDFAF7;
  --bg-section:    #FDF6F2;
  --black:         #1A1A1A;
  --text:          #333333;
  --muted:         #888888;
  --border:        #EBEBEB;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 56px rgba(0,0,0,0.12);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
}
 
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html { scroll-behavior: smooth; font-size: 16px; }
 
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
 
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
 
/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
 
/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
 
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
 
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
 
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
}
 
/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
 
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(244,132,95,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,132,95,0.45);
}
 
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
 
.btn-ghost {
  background: transparent;
  color: var(--black);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--orange); }
 
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }
 
.btn-full { width: 100%; }
 
/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
 
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
 
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}
 
.logo-dot {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 8px;
  flex-shrink: 0;
}
 
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
 
.navbar__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.navbar__nav a:hover { color: var(--black); }
 
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
 
/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
 
/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 40px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border: none; }
 
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 0;
  background: var(--bg);
  overflow: hidden;
}
 
/* Large decorative blob */
.hero__blob {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: var(--orange-light);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}
 
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
 
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 16px;
}
 
.hero__title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
 
.hero__title span {
  color: var(--orange);
}
 
.hero__desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 36px;
}
 
.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
 
/* Hero visual: phone/laptop mockup card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
 
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
 
.hero__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
 
/* Floating cards on the hero image */
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  animation: float 4s ease-in-out infinite;
}
 
.hero__card--top {
  top: 32px;
  left: -32px;
  animation-delay: 0s;
}
 
.hero__card--bottom {
  bottom: 48px;
  right: -24px;
  animation-delay: 1.5s;
}
 
.hero__card-icon { font-size: 20px; }
.hero__card-val  { font-size: 16px; font-weight: 800; color: var(--black); }
.hero__card-lbl  { font-size: 11px; color: var(--muted); }
 
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
 
/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 48px 0 0;
  padding: 28px 40px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
}
 
.hero__stat {
  flex: 1;
  text-align: center;
}
 
.hero__stat-val {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
 
.hero__stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
 
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
 
/* Partners logos */
.hero__partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 0 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
 
.partner-logo {
  font-size: 15px;
  font-weight: 700;
  color: #BBBBBB;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.partner-logo:hover { color: var(--orange); }
 
/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 96px 0;
  background: var(--bg-section);
}
 
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-mid);
}
 
.service-card--orange {
  background: var(--orange);
  border-color: var(--orange);
}
 
.service-card--orange .service-card__title,
.service-card--orange .service-card__link {
  color: var(--white);
}
 
.service-card--orange .service-card__desc {
  color: rgba(255,255,255,0.85);
}
 
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.service-card--orange .service-card__icon {
  background: rgba(255,255,255,0.2);
}
 
.service-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
 
.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
 
.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
 
.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s;
  align-self: flex-start;
}
 
.service-card:hover .service-card__link { letter-spacing: 0.03em; }
 
/* ============================================================
   WHY US SECTION
   ============================================================ */
.whyus {
  padding: 96px 0;
  background: var(--bg);
}
 
.whyus__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
.whyus__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  margin-top: 16px;
}
 
.whyus__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.whyus__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
 
.whyus__item-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.whyus__item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
 
.whyus__item-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
 
/* Why Us visuals */
.whyus__visuals {
  position: relative;
  height: 480px;
}
 
.whyus__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
 
.whyus__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.whyus__img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
 
.whyus__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.whyus__floating-card {
  position: absolute;
  bottom: 60px;
  right: -16px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(244,132,95,0.45);
}
 
.whyus__floating-icon { font-size: 22px; }
.whyus__floating-val  { font-size: 22px; font-weight: 800; line-height: 1; }
.whyus__floating-lbl  { font-size: 12px; opacity: 0.85; margin-top: 2px; }
 
/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  padding: 96px 0;
  background: var(--bg-section);
}
 
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
 
.process-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s;
}
 
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-mid);
}
 
.process-step__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-mid);
  line-height: 1;
  letter-spacing: -0.02em;
}
 
.process-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
 
.process-step__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
 
.process-step__img {
  width: 100%;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--orange-light);
}
 
.process-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
/* Process team banner */
.process__team {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 280px;
}
 
.process__team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.process__team-cta {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.75) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  gap: 20px;
}
 
.process__team-cta h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  max-width: 280px;
  line-height: 1.25;
}
 
/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects {
  padding: 96px 0;
  background: var(--bg);
}
 
.projects__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
 
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
 
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.project-card:hover img { transform: scale(1.05); }
 
.project-card--large img { height: 100%; min-height: 350px; }
.project-card--large { grid-row: span 2; }
 
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
 
.project-card:hover .project-card__overlay { opacity: 1; }
 
.project-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
 
.project-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
 
/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  padding: 80px 0 48px;
}
 
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
 
.cta-banner__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
 
.cta-banner__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}
 
.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
 
.cta-banner__actions .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
 
.cta-banner__actions .btn-primary:hover {
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
 
.cta-banner__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
}
 
.cta-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.cta-banner__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 40px;
}
 
.cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.2s;
  cursor: pointer;
}
 
.cta-icon:hover { background: rgba(255,255,255,0.3); }
 
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 96px 0;
  background: var(--bg-section);
}
 
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s;
}
 
.testimonial-card:hover { box-shadow: var(--shadow-md); }
 
.testimonial-card--orange {
  background: var(--orange);
  border-color: var(--orange);
}
 
.testimonial-card--orange .testimonial-card__text,
.testimonial-card--orange .testimonial-card__name {
  color: var(--white);
}
 
.testimonial-card--orange .testimonial-card__role { color: rgba(255,255,255,0.75); }
 
.testimonial-card__stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
}
 
.testimonial-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
 
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
 
.testimonial-card--orange .testimonial-card__author { border-top-color: rgba(255,255,255,0.25); }
 
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--orange-light);
}
 
.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
 
.testimonial-card__role {
  font-size: 12px;
  color: var(--muted);
}
 
/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 96px 0;
  background: var(--bg);
}
 
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
 
.contact__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 32px;
}
 
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
 
.contact__info-icon { font-size: 18px; flex-shrink: 0; }
 
/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
 
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
 
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
 
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  padding: 12px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
}
 
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
}
 
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding: 64px 40px;
}
 
.footer__brand .navbar__logo { margin-bottom: 16px; }
 
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.7;
}
 
.footer__socials {
  display: flex;
  gap: 10px;
}
 
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s;
}
.social-link:hover { background: var(--orange); color: var(--white); }
 
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 12px;
}
 
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
 
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }
 
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}
 
/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
 
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
 
/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner           { grid-template-columns: 1fr; gap: 40px; }
  .hero__img             { height: 320px; }
  .hero__card--top       { left: 0; }
  .hero__card--bottom    { right: 0; }
 
  .services__grid        { grid-template-columns: repeat(2, 1fr); }
  .whyus__inner          { grid-template-columns: 1fr; gap: 48px; }
  .whyus__visuals        { height: 360px; }
 
  .process__grid         { grid-template-columns: repeat(2, 1fr); }
 
  .projects__grid        {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .project-card--large   { grid-row: span 1; }
  .project-card--large img { min-height: 260px; }
 
  .cta-banner__inner     { grid-template-columns: 1fr; }
  .cta-banner__img       { height: 240px; }
 
  .testimonials__grid    { grid-template-columns: 1fr 1fr; }
  .contact__inner        { grid-template-columns: 1fr; gap: 40px; }
 
  .footer__top           { grid-template-columns: 1fr; gap: 40px; }
  .footer__links         { grid-template-columns: repeat(3, 1fr); }
 
  .stats-bar__grid       { grid-template-columns: repeat(2, 1fr); }
}
 
/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .container             { padding: 0 20px; }
 
  .navbar__nav           { display: none; }
  .navbar .btn-outline   { display: none; }
  .hamburger             { display: flex; }
 
  .hero                  { padding: 48px 0 0; }
  .hero__title           { font-size: 34px; }
  .hero__blob            { width: 300px; height: 300px; top: -40px; right: -60px; }
  .hero__cta             { flex-direction: column; }
  .hero__cta .btn        { width: 100%; }
 
  .hero__stats           { flex-direction: column; padding: 20px; gap: 20px; }
  .hero__stat-divider    { width: 80%; height: 1px; }
  .hero__stat-val        { font-size: 28px; }
 
  .hero__partners        { gap: 20px; padding: 24px 0 40px; }
 
  .section-title         { font-size: 26px; }
  section                { padding: 64px 0; }
 
  .services__grid        { grid-template-columns: 1fr; }
 
  .whyus__visuals        { height: 280px; }
  .whyus__img-main       { width: 80%; height: 240px; }
  .whyus__img-secondary  { width: 60%; height: 180px; }
 
  .process__grid         { grid-template-columns: 1fr; }
  .process__team-cta     { padding: 24px; }
  .process__team-cta h3  { font-size: 20px; }
 
  .projects__grid        { grid-template-columns: 1fr; }
  .project-card--large   { grid-row: span 1; }
  .project-card img      { height: 220px; }
  .project-card__overlay { opacity: 1; }
 
  .section-header--row   { flex-direction: column; align-items: flex-start; gap: 16px; }
 
  .cta-banner__title     { font-size: 28px; }
  .cta-banner__actions   { flex-direction: column; }
  .cta-banner__actions .btn { width: 100%; }
 
  .testimonials__grid    { grid-template-columns: 1fr; }
 
  .form-row              { grid-template-columns: 1fr; }
  .contact__form         { padding: 24px 20px; }
 
  .footer__top           { padding: 40px 20px; }
  .footer__links         { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom        { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
}
 
/* ============================================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__title           { font-size: 28px; }
  .hero__stat-val        { font-size: 24px; }
  .footer__links         { grid-template-columns: 1fr; }
}