/* ============================================================
   SIMMONS WEB DESIGN — styles.css
   Dark & Coral theme
============================================================ */

/* ============================================================
   CSS Custom Properties
============================================================ */
:root {
  --color-dark: #0F1822;
  --color-dark-mid: #1A2535;
  --color-coral: #F26522;
  --color-coral-hover: #D9541A;
  --color-surface: #F8F9FC;
  --color-white: #FFFFFF;
  --color-text: #1A2535;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --navbar-height: 72px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   Skip Link
============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1rem;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 1rem;
}

/* ============================================================
   Container
============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: none;
}
.btn--lg {
  padding: .875rem 1.75rem;
  font-size: 1rem;
}
.btn--coral {
  background: var(--color-coral);
  color: var(--color-white);
}
.btn--coral:hover {
  background: var(--color-coral-hover);
}
.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn--outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ============================================================
   Section Shared
============================================================ */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: .75rem;
}
.section-eyebrow--light {
  color: rgba(242, 101, 34, .85);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub {
  margin-inline: auto;
}

/* ============================================================
   Reveal Animations
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}
.navbar__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-coral);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  color: var(--color-white);
  transition: color var(--transition);
  line-height: 1.2;
}
.navbar__logo-text span {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  opacity: .8;
}
.navbar.scrolled .navbar__logo-text {
  color: var(--color-dark);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.navbar__link:hover,
.navbar__link.is-active {
  color: var(--color-white);
  border-bottom-color: var(--color-coral);
}
.navbar.scrolled .navbar__link {
  color: var(--color-text-muted);
}
.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.is-active {
  color: var(--color-dark);
  border-bottom-color: var(--color-coral);
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar__toggle {
  display: none;
  color: var(--color-white);
  padding: .25rem;
  transition: color var(--transition);
}
.navbar.scrolled .navbar__toggle {
  color: var(--color-dark);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--color-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--navbar-height);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(242,101,34,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(242,101,34,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  max-width: 1160px;
  margin-inline: auto;
  padding: 5rem 1.5rem 4rem;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.hero__accent {
  color: var(--color-coral);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__ctas .btn--outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,.4);
}
.hero__ctas .btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--color-white);
}

/* Browser Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.browser-mock {
  width: 100%;
  max-width: 420px;
  background: #1E2D42;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
}
.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: #263447;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.browser-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.browser-mock__dot:nth-child(1) { background: #FF5F57; }
.browser-mock__dot:nth-child(2) { background: #FFBD2E; }
.browser-mock__dot:nth-child(3) { background: #28C840; }
.browser-mock__url {
  flex: 1;
  text-align: center;
  font-size: .7rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  padding: .2rem .75rem;
  border-radius: 4px;
  margin-inline: .25rem;
}
.browser-mock__screen {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.browser-mock__nav-bar {
  height: 24px;
  background: rgba(242,101,34,.25);
  border-radius: 4px;
}
.browser-mock__hero-block {
  height: 80px;
  background: linear-gradient(135deg, rgba(242,101,34,.3) 0%, rgba(242,101,34,.1) 100%);
  border-radius: 6px;
}
.browser-mock__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.browser-mock__card {
  height: 50px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1160px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.5rem;
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: 1.75rem 1rem;
}
.hero__stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--color-coral);
  line-height: 1;
}
.hero__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  font-weight: 500;
  letter-spacing: .02em;
}
.hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
  margin-block: 1.5rem;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 6rem 0;
  background: var(--color-surface);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.services__grid .service-card:last-child {
  grid-column: 2 / 4;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(242,101,34,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-coral);
}
.service-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: .75rem;
}
.service-card__desc {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 6rem 0;
  background: var(--color-white);
}
.process__steps {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}
.process__step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-coral);
  opacity: .4;
  line-height: 1;
  padding-top: .125rem;
  text-align: center;
}
.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: .5rem;
}
.process__step-desc {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.process__connector {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--color-coral), rgba(242,101,34,.2));
  margin-left: 31px;
  opacity: .4;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 6rem 0;
  background: var(--color-surface);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__photo-placeholder {
  aspect-ratio: 1;
  max-width: 360px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about__initials {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 4rem;
  color: rgba(242,101,34,.6);
  letter-spacing: -.02em;
}
.about__badges {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-top: 1.5rem;
}
.about__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .875rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  width: fit-content;
  color: var(--color-coral);
}
.about__badge svg {
  flex-shrink: 0;
  color: var(--color-coral);
}
.about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.about__body {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about__values {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about__value {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-dark);
}
.about__value svg {
  color: var(--color-coral);
  flex-shrink: 0;
}

/* ============================================================
   SHOWCASE
============================================================ */
.showcase {
  padding: 6rem 0;
  background: var(--color-white);
}
.showcase__filters {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.showcase__filter {
  padding: .5rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition);
}
.showcase__filter:hover,
.showcase__filter.is-active {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Project Card */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.project-card.is-hidden {
  display: none;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* Featured card */
.project-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

/* Mockup */
.project-card__mockup {
  padding: 1.5rem;
  min-height: 240px;
}
.project-card__mockup--navy {
  background: linear-gradient(135deg, #1A3C6B 0%, #2D5B9A 100%);
}
.project-card__mockup--screenshot {
  padding: 0;
  overflow: hidden;
}
.project-card__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.project-card__mock-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,0,0,.2);
  border-radius: 6px 6px 0 0;
  padding: .5rem .75rem;
}
.project-card__mock-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.project-card__mock-url {
  flex: 1;
  text-align: center;
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  padding: .15rem .5rem;
  border-radius: 3px;
  margin-inline: .25rem;
  font-family: var(--font-body);
}
.project-card__mock-screen {
  background: rgba(255,255,255,.05);
  border-radius: 0 0 6px 6px;
  padding: .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.project-card__mock-nav {
  height: 18px;
  background: rgba(245,197,24,.35);
  border-radius: 3px;
}
.project-card__mock-hero {
  height: 60px;
  background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  border-radius: 4px;
}
.project-card__mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
}
.project-card__mock-grid span {
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  display: block;
}

/* Card Body */
.project-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.project-card__meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.project-card__client {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}
.project-card__type {
  font-size: .85rem;
  color: var(--color-text-muted);
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.project-card__tag {
  padding: .2rem .625rem;
  background: rgba(242,101,34,.1);
  color: var(--color-coral);
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.project-card__result {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-coral);
  transition: gap var(--transition);
}
.project-card__link:hover {
  gap: .625rem;
}

/* CTA Card */
.project-card--cta {
  border: 2px dashed var(--color-coral);
  background: rgba(242,101,34,.03);
}
.project-card__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  height: 100%;
}
.project-card__cta-icon {
  color: var(--color-coral);
  opacity: .7;
}
.project-card__cta-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-dark);
}
.project-card__cta-sub {
  font-size: .9rem;
  color: var(--color-text-muted);
  max-width: 280px;
  line-height: 1.6;
}

/* ============================================================
   CONTACT CTA
============================================================ */
.contact-cta {
  background: var(--color-dark);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(242,101,34,.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
}
.contact-cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.contact-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.contact-cta__note {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--color-dark-mid);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.footer__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-coral);
  color: var(--color-white);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-white);
  line-height: 1.2;
}
.footer__logo-text span {
  display: block;
  font-weight: 600;
  font-size: .75rem;
  opacity: .6;
}
.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin-top: .875rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__link:hover {
  color: var(--color-white);
}
.footer__social {
  display: flex;
  gap: .875rem;
  justify-content: flex-end;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: background var(--transition), color var(--transition);
}
.footer__social-link:hover {
  background: var(--color-coral);
  color: var(--color-white);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer__email {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__email:hover {
  color: var(--color-coral);
}

/* ============================================================
   RESPONSIVE — 1024px
============================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid .service-card:last-child {
    grid-column: 1 / -1;
  }
  .hero__inner {
    gap: 3rem;
  }
  .about__inner {
    gap: 3rem;
  }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .navbar__nav {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    z-index: 99;
  }
  .navbar__nav.is-open {
    display: block;
  }
  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .navbar__link {
    color: var(--color-text-muted);
    font-size: 1rem;
  }
  .navbar__link:hover {
    color: var(--color-dark);
  }
  .navbar__cta {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__logo-text {
    color: var(--color-dark);
  }
  .navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
  }
  .navbar__link.is-active {
    color: var(--color-coral);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 2rem;
    text-align: center;
  }
  .hero__visual {
    order: -1;
  }
  .browser-mock {
    max-width: 320px;
  }
  .hero__sub {
    margin-inline: auto;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__stats {
    flex-wrap: wrap;
  }
  .hero__stat {
    flex: 1 0 40%;
  }
  .hero__stat-divider:nth-child(4) {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .about__photo-placeholder {
    max-width: 240px;
    margin-inline: auto;
  }
  .about__badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
  }
  .project-card--featured {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
  .footer__social {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .hero__headline {
    font-size: 2rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hero__ctas .btn {
    justify-content: center;
  }
  .hero__stat {
    flex: 1 0 100%;
  }
  .hero__stat-divider {
    display: none;
  }
  .process__step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }
  .process__connector {
    margin-left: 23px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
