/* =========================================
   CEDASCO IT SOLUTIONS — REVAMP
   Modern Minimalistic Website
   Colors: Orange #FF5100 | Blue #00608B
   ========================================= */

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

:root {
  --orange:        #FF5100;
  --orange-light:  #ff7640;
  --orange-glow:   rgba(255, 81, 0, 0.35);
  --blue:          #00608B;
  --blue-light:    #0080b8;
  --dark:          #0d1117;
  --dark-2:        #161b22;
  --dark-3:        #21262d;
  --white:         #ffffff;
  --light:         #f5f5f7;
  --text:          #1a1a1a;
  --text-muted:    #6b7280;
  --border-dark:   rgba(255, 255, 255, 0.08);
  --border-light:  rgba(0, 0, 0, 0.08);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        16px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg:     0 20px 60px rgba(0, 0, 0, 0.12);
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

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

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn--outline-dark:hover {
  background: var(--light);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover {
  color: white;
}
.btn--ghost .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn--ghost:hover .arrow {
  transform: translateX(5px);
}

.btn--full { width: 100%; justify-content: center; }

/* ----- Section helpers ----- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 4rem; }

.gradient-text {
  background: linear-gradient(130deg, var(--orange) 0%, var(--orange-light) 50%, #ff9966 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   NAVBAR
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: transparent;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav__container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 68px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  display: block;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.is-scrolled .nav__logo img {
  height: 46px;
  filter: none;
  opacity: 1;
}

.nav__links {
  display: flex;
  gap: 0;
  margin-left: auto;
}

.nav__link {
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s;
}
.nav__link:hover { color: white; }
.nav.is-scrolled .nav__link { color: var(--text-muted); }
.nav.is-scrolled .nav__link:hover { color: var(--text); }

.nav__cta {
  font-size: 0.875rem;
  padding: 0.625rem 1.375rem;
  flex-shrink: 0;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: white !important;
}
.nav__cta:hover {
  background: var(--blue-light) !important;
  border-color: var(--blue-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 96, 139, 0.4) !important;
}
.nav.is-scrolled .nav__cta {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}
.nav.is-scrolled .nav__cta:hover {
  background: var(--orange-light) !important;
  border-color: var(--orange-light) !important;
  box-shadow: 0 6px 20px rgba(255, 81, 0, 0.35) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav.is-scrolled .nav__toggle span { background: var(--text); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 72% 38%, rgba(0, 96, 139, 0.50) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 12% 78%, rgba(255, 81, 0, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 96, 139, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 35% 55%,  rgba(255, 81, 0, 0.10) 0%, transparent 60%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  width: 100%;
  position: relative;
}

.hero__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.625rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

/* Floating visual cards */
.hero__visual {
  position: relative;
  height: 420px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 450px;
  height: 450px;
  background: var(--blue);
  top: 10px;
  right: 10px;
  opacity: 0.38;
}
.hero__orb--2 {
  width: 320px;
  height: 320px;
  background: var(--orange);
  bottom: 20px;
  left: 0px;
  opacity: 0.24;
}

.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 1rem 1.375rem;
  min-width: 200px;
}

.hero__card-icon  { font-size: 1.5rem; line-height: 1; }
.hero__card-label { font-size: 0.75rem; color: rgba(255,255,255,0.60); font-weight: 500; margin-bottom: 2px; }
.hero__card-value { font-size: 0.9375rem; color: white; font-weight: 600; }

.hero__card--1 {
  top: 50px;
  right: 20px;
  animation: float 6s ease-in-out infinite;
}
.hero__card--2 {
  top: 185px;
  left: 10px;
  animation: float 7.5s ease-in-out infinite;
  animation-delay: -2.5s;
}
.hero__card--3 {
  bottom: 50px;
  right: 50px;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 8rem 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  border-radius: 0;
}
.service-card:hover {
  border-color: rgba(255, 81, 0, 0.08);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 1.625rem;
  opacity: 0.5;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,81,0,0.1), rgba(0,96,139,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.625rem;
  color: var(--orange);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.service-card__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-card__tags span {
  padding: 0.25rem 0.75rem;
  background: var(--light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: 8rem 0;
  background: #0d1f35;
}
.process .section-title { color: white; }
.process .section-tag   { color: rgba(255, 255, 255, 0.75); }
.process .section-tag::before { background: rgba(255, 255, 255, 0.6); }

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.process__step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.process__step:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.process__step-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.process__step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.process__step-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.process__connector {
  align-self: center;
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

/* =========================================
   WHY CEDASCO
   ========================================= */
.why {
  padding: 8rem 0;
  background: var(--white);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why__card {
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}
.why__card:hover {
  border-color: rgba(255, 81, 0, 0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,81,0,0.1), rgba(0,96,139,0.08));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.why__card-icon svg { width: 22px; height: 22px; }

.why__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.why__card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 8rem 0;
  background: var(--light);
}

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

.contact__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  color: var(--text);
}
.contact__item:hover { background: var(--light); }

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255,81,0,0.09), rgba(0,96,139,0.07));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.contact__item-value {
  font-size: 1rem;
  font-weight: 600;
}

/* CTA card */
.contact__card {
  background: #0d1f35;
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}
.contact__card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.contact__card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}
.contact__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--orange);
  color: white;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  text-decoration: none;
}
.contact__card-btn:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 81, 0, 0.35);
}

.contact__card-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: white;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact__card-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.contact__card-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__card-item-icon svg { width: 18px; height: 18px; }
.contact__card-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}
.contact__card-item-value {
  font-size: 1rem;
  font-weight: 600;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #070e1c;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer__brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1rem;
  display: block;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-shrink: 0;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.25);
}

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

/* Tablet */
@media (max-width: 1024px) {
  .services__grid     { grid-template-columns: repeat(2, 1fr); }
  .process__steps     { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .process__connector { display: none; }
  .why__grid          { grid-template-columns: repeat(2, 1fr); }

  /* Tablets: single-column hero, cards displayed as a horizontal row below text */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 5rem 2.5rem 5rem;
  }
  .hero__subtitle  { margin-left: auto; margin-right: auto; }
  .hero__actions   { justify-content: center; }

  /* Turn the visual into a horizontal card row */
  .hero__visual {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
  }
  /* Hide the background orbs — they look odd in flow layout */
  .hero__orb { display: none; }

  /* Reset cards from absolute to normal flow */
  .hero__card,
  .hero__card--1,
  .hero__card--2,
  .hero__card--3 {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    flex: 1 1 200px;
    max-width: 240px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav__links.is-open .nav__link {
    font-size: 1.125rem;
    padding: 0.875rem 0.75rem;
    border-radius: 8px;
  }

  .nav__toggle { display: flex; }

  .hero { align-items: center; padding-top: 0; }
  .hero__container { padding: 6rem 1.5rem 4rem; }
  .hero__subtitle  { font-size: 1rem; }
  /* Hide cards on phones — text fills the full screen cleanly */
  .hero__visual    { display: none; }

  .contact__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 1rem; }
  .process__connector { display: none; }
  .why__grid      { grid-template-columns: 1fr; }

  .services, .process, .why, .contact { padding: 5rem 0; }

  .footer__grid   { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; }
  .footer__links  { flex-wrap: wrap; gap: 1rem; }
}

/* Phones in landscape — keep hero compact, don't waste vertical space */
@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; }
  .hero__container { padding: 5rem 2rem 3rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero__title   { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero__tag     { font-size: 0.75rem; }

  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .service-card  { padding: 2rem 1.5rem; }
  .why__card     { padding: 1.75rem 1.5rem; }
  .contact__card { padding: 2rem 1.5rem; }

  .btn { font-size: 0.875rem; padding: 0.8rem 1.5rem; }
  .why__grid { grid-template-columns: 1fr; }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
  .nav__container { padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); }
  .container      { padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }
}
