/* ============================================================
   Multipoint Healthcare — style.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --purple:       #7e3275;
  --purple-dark:  #5a2353;
  --purple-light: #a0489a;
  --white:        #ffffff;
  --off-white:    #f7f5f8;
  --light-grey:   #f0ecf1;
  --dark:         #111118;
  --dark-2:       #1c1c26;
  --text:         #2c2c2c;
  --text-muted:   #666;
  --border:       rgba(0,0,0,0.08);
  --radius:       12px;
  --radius-sm:    6px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.13);
  --transition:   0.28s ease;
  --container:    1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ---- Section Backgrounds ---- */
.section        { padding-block: clamp(4rem, 8vw, 7rem); }
.section-light  { background: var(--light-grey); }
.section-white  { background: var(--white); }
.section-dark   { background: #f3edf3; color: var(--text); }
.section-dark .section-eyebrow { color: var(--purple); }
.section-dark h2 { color: var(--text); }
.section-dark p { color: var(--text-muted); }
.section-dark .section-lead { color: var(--text-muted); }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.6rem;
}
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(126,50,117,0.35); }
.btn-outline-light {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline-light:hover { background: var(--purple); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.25rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  padding-block: 0.85rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--purple); }
.navbar.scrolled .nav-cta { color: var(--white) !important; }
.navbar.scrolled .nav-logo-fallback { color: var(--purple); }
.navbar.scrolled .hamburger span { background: var(--text); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-fallback {
  display: none;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--purple-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1800&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.82) 40%, rgba(240,220,240,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 5rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
  font-family: 'Playfair Display', Georgia, serif;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-cue span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(126,50,117,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-cue span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--purple);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.stats-bar .stat-number { color: var(--purple); }
.stats-bar .stat-label { color: var(--text-muted); }
.stats-bar .stat-divider { background: var(--border); }
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 2rem;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.stat-number sup { font-size: 0.55em; vertical-align: super; }
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-text .section-eyebrow { text-align: left; }
.about-text h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  background: var(--purple);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.about-image { position: relative; }
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  border-left: 4px solid var(--purple);
}
.about-badge strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 0.35rem; }
.about-badge span { font-size: 0.85rem; color: var(--text); font-style: italic; line-height: 1.4; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid rgba(126,50,117,0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.portfolio-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
}
.portfolio-icon {
  width: 52px;
  height: 52px;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.portfolio-icon svg { width: 100%; height: 100%; }
.portfolio-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.portfolio-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}
.partner-item:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(126,50,117,0.12);
  transform: translateY(-3px);
}
.partner-item img {
  max-width: 140px;
  max-height: 70px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.partner-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.client-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.client-chip img {
  max-width: 130px;
  max-height: 65px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.client-chip:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(126,50,117,0.12);
  transform: translateY(-3px);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap { height: 260px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.9rem;
}
.team-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: 3rem;
}
.projects-intro-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0;
}
.projects-intro-body {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.projects-intro-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.project-card--large:first-child { grid-column: 1 / 3; }
.project-card--large:last-child  { grid-column: 2 / 4; }

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.04); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.75) 100%);
}
.project-facility {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}
.project-equipment {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.project-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .projects-intro { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large:first-child,
  .project-card--large:last-child { grid-column: 1; }
  .project-card { min-height: 240px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info .section-eyebrow { text-align: left; }
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; color: var(--text); }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-details li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--purple); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0dae0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fdfcfd;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #2d1a2c;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-logo-fallback { display: none; font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-size: 0.88rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--purple-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; line-height: 1.6; }
.footer-contact a { color: var(--purple-light); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 320px; }
  .about-badge { left: 0.5rem; bottom: -1rem; max-width: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    z-index: 999;
    animation: slideIn 0.28s ease;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--text);
    font-size: 1.05rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-cta {
    margin-top: 1rem;
    border-radius: 50px;
    padding: 0.65rem 1.5rem;
    border: none;
    color: var(--white) !important;
    width: auto !important;
    align-self: flex-start;
  }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

  .stats-grid { gap: 0.5rem; }
  .stat-divider { display: none; }
  .stat-item { padding-inline: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem 2rem; }
  .footer-bottom .container { flex-direction: column; align-items: center; text-align: center; }

  .hide-mobile { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .portfolio-grid,
  .services-grid { grid-template-columns: 1fr; }
}
