:root {
  /* Bright, joyful palette */
  --bg: #fbfcfe;
  --panel: #ffffff;
  --muted: #6b7280;
  --text: #0b1220;
  --accent: #ff4d8d; /* neon-like pink */
  --accent-2: #4df0ff; /* neon cyan */
  --pastel-1: #ffe7f2;
  --pastel-2: #eafffb;
  --glass: rgba(11, 18, 32, 0.04);
  --radius: 14px;
  --max-width: 1200px;
  --shadow-strong: 0 18px 40px rgba(11, 18, 32, 0.06);
}

/* General resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Mobile-first base layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header: compact, stacked for small screens */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}

/* Sticky glassy header variant */
.header.sticky {
  position: sticky;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.6)
  );
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  box-shadow: 0 6px 30px rgba(11, 18, 32, 0.05);
  z-index: 120;
}

/* Who We Are hero */
.who-hero {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(180deg, #fff, #fffafc);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(11, 18, 32, 0.04);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
.who-text .lead {
  margin-bottom: 8px;
}
.who-values {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.who-values .value {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(11, 18, 32, 0.03);
}
.who-cta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}
.who-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.who-cards .card.small {
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff7fb);
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.04);
  text-align: center;
  font-weight: 600;
}

@media (min-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr 360px;
    gap: 18px;
  }
  .who-cards {
    grid-template-columns: 1fr;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}
/* Navigation hidden by default on mobile, toggled via JS which adds .nav-open to header */
.nav {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.98)
  );
  padding: 22px;
  box-shadow: 0 30px 60px rgba(11, 18, 32, 0.08);
  flex-direction: column;
  gap: 18px;
  z-index: 90;
}
.nav a {
  display: block;
  color: var(--text);
}

/* Enforce high contrast in overlay and sticky header */
.nav .nav-list a,
.header.sticky .nav-list a {
  color: var(--text);
}
.nav .nav-list a:hover,
.header.sticky .nav-list a:hover {
  color: var(--accent);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.38);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease;
}
.header.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 8px;
  -webkit-font-smoothing: antialiased;
}
.nav-list a:hover,
.nav-list a:focus {
  color: var(--accent);
}
.nav-cta {
  margin-top: 8px;
}
.nav-cta .btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
.nav-toggle {
  display: inline-flex;
  color: var(--text);
}
.header.nav-open .nav {
  display: flex;
}
/* subtle open/close animation */
.nav {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.header.nav-open .nav {
  opacity: 1;
  transform: translateY(0);
}

/* HERO: stack vertically and center visual on mobile */
.hero {
  padding: 28px 0 36px;
  min-height: 68vh;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: flex-start;
}
.hero__visual {
  display: block;
  width: 100%;
  z-index: 1;
}
.orb {
  width: 88%;
  max-width: 320px;
  margin: 6px auto 0;
}
.hero__float {
  display: none;
}

/* ensure hero visuals are centered and SVGs fully visible on small screens */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__content {
  z-index: 2;
  max-width: 720px;
}

@media (min-width: 981px) {
  .hero-grid {
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
  }
  .orb {
    max-width: 480px;
  }
}
.about__media img,
.about__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ABOUT: single column on mobile */
.about--split {
  display: block;
}
.about__media {
  height: 160px;
}
.about__content {
  padding: 18px 0;
}

/* SERVICES mosaic -> stacked on mobile */
.mosaic {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 12px;
}
.card {
  padding: 16px;
}

/* CONTACT -> stacked */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Make SVGs responsive by default */
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER: lighter, airy */
.header {
  background: transparent;
  border-bottom: 0;
  padding: 20px 36px;
  box-shadow: 0 2px 10px rgba(11, 18, 32, 0.02);
}

/* Logo */
.logo-svg {
  width: 170px;
  height: 44px;
  display: block;
}
.logo-mark circle {
  filter: drop-shadow(0 6px 14px rgba(13, 23, 40, 0.06));
}
.logo-svg .brand-text {
  font-weight: 800;
  font-size: 18px;
  fill: var(--text);
  letter-spacing: 1px;
}
.logo-svg .brand-sub {
  font-weight: 700;
  font-size: 12px;
  fill: rgba(11, 18, 32, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover .logo-mark circle {
  transform: scale(1.04);
}

/* Nav */
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: color 0.18s ease, transform 0.18s ease;
  padding: 8px 12px;
  border-radius: 8px;
}
.nav a:hover,
.nav a:focus {
  color: var(--accent);
  transform: translateY(-2px);
}
.nav .cta.small {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #04111a;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(95, 124, 255, 0.12);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
}

/* HERO: asymmetrical layout + floating shapes */
.hero.hero--asym {
  position: relative;
  overflow: visible;
  padding-bottom: 36px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}
.hero__visual {
  background: transparent;
  box-shadow: none;
  padding: 0;
  height: auto;
  justify-self: end;
}
.orb {
  width: 420px;
  height: auto;
  display: block;
  transform-origin: center;
  will-change: transform, opacity;
}

/* floating shapes for playful depth */
.hero__float {
  position: absolute;
  border-radius: 12px;
  opacity: 0.95;
  filter: blur(30px);
  pointer-events: none;
}
.hero__float--a {
  width: 160px;
  height: 160px;
  right: 8%;
  top: 4%;
  background: linear-gradient(135deg, var(--pastel-1), var(--pastel-2));
  transform: translateZ(0);
}
.hero__float--b {
  width: 96px;
  height: 96px;
  left: 6%;
  top: 40%;
  background: linear-gradient(135deg, #fff6f9, #e6fbff);
}

/* Headline style (display font) */
.hero__content h1,
.display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--text);
  font-size: clamp(1.6rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.3px;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

/* Buttons and micro-interactions */
.cta {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  border-radius: 12px;
}
.cta.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 30px rgba(77, 240, 255, 0.08);
}
.cta.primary:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ABOUT: split-screen with diagonal divider */
.about--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.about__media {
  background: linear-gradient(180deg, var(--pastel-1), #fff);
  clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 100%);
}
.about__shape {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(255, 77, 141, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(77, 240, 255, 0.06),
      transparent 25%
    );
}
.about__content {
  padding: 36px 36px;
}

/* SERVICES: magazine-style mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 18px;
}
.card {
  background: var(--panel);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-strong);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(11, 18, 32, 0.08);
}
.card--large {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}
.card--tall {
  grid-column: 4 / span 2;
  grid-row: 1 / span 2;
}
.card--wide {
  grid-column: 3 / span 4;
  grid-row: 3 / span 1;
}

/* CONTACT card */
.contact--card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: center;
}
.contact__card {
  background: linear-gradient(180deg, #ffffff, #fff7fb);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
}
.contact__address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Custom cursor */
.cursor,
.cursor-outline {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  z-index: 9999;
  transition: opacity 0.12s ease;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(255, 77, 141, 0.18);
  opacity: 0.95;
}

/* Hide custom cursor on touch devices / coarse pointers */
@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-outline {
    display: none !important;
  }
}

/* Skip link styles for keyboard users */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--panel);
  color: var(--text);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(11, 18, 32, 0.08);
  z-index: 9999;
}
.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(77, 240, 255, 0.22);
  opacity: 0.9;
}

/* Utility: visually hidden (for live regions, a11y) */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* Grow cursor on interactive elements */
a:hover ~ .cursor,
a:focus ~ .cursor {
  transform: translate(-50%, -50%) scale(1.2);
}
a:hover ~ .cursor-outline,
a:focus ~ .cursor-outline {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: var(--accent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .orb,
  .hero__float,
  .cursor-outline {
    transition: none !important;
    animation: none !important;
  }
}

/* Responsive */
@media (min-width: 981px) {
  /* Desktop / large screens: restore grid layouts */
  .nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: 18px;
    /* ensure desktop nav is fully visible (override mobile animation state) */
    opacity: 1;
    transform: none;
  }
  .nav-list {
    flex-direction: row;
    gap: 18px;
    align-items: center;
  }
  /* stronger contrast for desktop nav items */
  .nav-list a {
    color: var(--text);
    font-weight: 700;
    font-size: 0.98rem;
    opacity: 1;
  }
  .nav-cta .btn {
    width: auto;
  }
  .nav-toggle {
    display: none;
  }
  .header {
    padding: 20px 36px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
  }
  .orb {
    max-width: 420px;
    margin: 0;
  }
  .hero__float {
    display: block;
  }
  .about--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 120px;
    gap: 18px;
  }
  .card {
    padding: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr 360px;
  }
}

/* Utility: prevent body scroll when mobile nav open */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 28px;
  }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Additional joyful styles (from SCSS source) */
.display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  color: var(--text);
}
.joyful-svg {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}
.joyful-svg .shape {
  transform-origin: center;
  will-change: transform, opacity;
}

.about::before {
  content: "";
  position: absolute;
  inset: -10% 50% auto auto;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 77, 141, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(77, 240, 255, 0.06),
      transparent 25%
    );
  border-radius: 40%;
  transform: translate3d(-20%, -10%, 0);
  pointer-events: none;
}

/* Portfolio carousel removed */

@media (max-width: 980px) {
  .joyful-svg {
    max-width: 360px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

/* subtle hover depth */
.card {
  transition: transform 160ms cubic-bezier(0.22, 0.95, 0.2, 1), box-shadow 160ms;
}
.card:hover {
  transform: translateY(-8px) rotate(-0.2deg);
}

/* ================= Process timeline ================= */
.process-section {
  padding: 28px 0;
}
.process-section .muted {
  margin-bottom: 12px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, #fffafc);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
  border: 1px solid rgba(11, 18, 32, 0.03);
}
.timeline-item:focus {
  outline: 3px solid rgba(107, 70, 193, 0.12);
}
.timeline-item .marker {
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--pastel-1), var(--pastel-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #6b46c1;
  box-shadow: 0 6px 18px rgba(107, 70, 193, 0.06);
}
.timeline-item .content h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}
.timeline-item .content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* desktop: alternating layout with center axis */
@media (min-width: 981px) {
  .timeline {
    display: block;
    position: relative;
    margin: 24px 0;
  }
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(107, 70, 193, 0.06),
      rgba(77, 240, 255, 0.04)
    );
    transform: translateX(-50%);
  }
  .timeline-item {
    width: calc(50% - 40px);
    margin: 24px 0;
  }
  .timeline-item {
    border-radius: 12px;
  }
  .timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    transform-origin: right center;
    display: flex;
  }
  .timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    transform-origin: left center;
    display: flex;
  }
  .timeline-item .marker {
    margin-top: 6px;
  }
  .timeline-item:nth-child(odd) {
    transform: translateX(-32px);
  }
  .timeline-item:nth-child(even) {
    transform: translateX(32px);
  }
  .timeline-item::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(11, 18, 32, 0.06);
  }
  .timeline-item {
    position: relative;
  }
  .timeline-item:nth-child(odd)::after {
    right: -8px;
    top: 18px;
  }
  .timeline-item:nth-child(even)::after {
    left: -8px;
    top: 18px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .timeline-item {
    transition: none !important;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-section {
  padding: 28px 0;
}
.why-section .muted {
  margin-bottom: 12px;
}
.why-stats {
  display: flex;
  gap: 12px;
  margin: 12px 0 18px;
}
.why-stats .stat {
  background: linear-gradient(180deg, #fff, #fffafc);
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-stats .stat strong {
  font-size: 1.2rem;
  color: var(--accent);
}

.why-grid {
  display: grid;
  gap: 12px;
}
.why-card {
  background: var(--panel);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-head .icon {
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--pastel-1), var(--pastel-2));
}
.card-head h3 {
  margin: 0;
  font-size: 1rem;
}
.card-head .toggle {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(11, 18, 32, 0.04);
  padding: 6px 8px;
  border-radius: 8px;
}
.card-body {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 981px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-body {
    display: block !important;
  }
  .card-head .toggle {
    display: none;
  }
}

/* About stats */
.about-stats {
  display: flex;
  gap: 12px;
  margin: 14px 0 18px;
  align-items: stretch;
}
.about-stats .stat {
  background: linear-gradient(180deg, #fff, #fffafc);
  padding: 12px;
  border-radius: 10px;
  text-align: left;
  min-width: 0;
}
.about-stats .stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
}
.about-stats .stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
.service-card {
  background: linear-gradient(180deg, #fff, #fffafc);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.service-card:focus {
  outline: none;
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.06);
  transform: translateY(-4px);
}
.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-head .icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--pastel-1), var(--pastel-2));
  font-size: 1.2rem;
}
.service-excerpt {
  color: var(--muted);
  margin: 10px 0;
}
.service-details {
  margin-top: 8px;
  color: var(--muted);
}
.service-details[hidden] {
  display: none;
}
.service-card.open {
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.07);
  transform: translateY(-6px);
}
.toggle-service[aria-expanded="true"] {
  color: var(--accent);
}
.toggle-service {
  margin-top: 8px;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Redesigned About section styles */
  .about-hero {
    padding: 28px 0;
  }
  .about-head h2 {
    margin: 0 0 8px 0;
    font-size: 1.6rem;
  }
  .about-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
  }
  .about-left {
    max-width: 600px;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
  }
  .values-grid .value {
    background: linear-gradient(180deg, #fff, #fffafc);
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
  }
  .about-right {
    background: linear-gradient(180deg, #fff, #fffafc);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(11, 18, 32, 0.04);
  }
  .about-right .stats {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
  }
  .about-right .stat {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 12px;
    border-radius: 8px;
    text-align: center;
  }
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .team-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #fff7fb);
    cursor: pointer;
  }
  .team-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .team-card .meta {
    display: flex;
    flex-direction: column;
  }
  .team-card .bio {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
  }
  .team-card.expanded {
    box-shadow: 0 18px 44px rgba(11, 18, 32, 0.07);
    transform: translateY(-6px);
  }
  .team-card:focus {
    outline: 3px solid rgba(77, 240, 255, 0.12);
  }

  @media (max-width: 900px) {
    .about-body {
      grid-template-columns: 1fr;
    }
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .about-right {
      order: -1;
    }
  }
}
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About actions */
.about-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.about-actions .btn.ghost {
  border-color: rgba(11, 18, 32, 0.06);
}
@media (min-width: 981px) {
  .about-stats {
    gap: 18px;
  }
  .about-stats .stat {
    padding: 16px;
  }
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 28px 0;
}
.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.contact-info {
  background: linear-gradient(180deg, #fff, #fffafc);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
}
.contact__address {
  font-style: normal;
  margin: 12px 0;
  color: var(--text);
}
.contact-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.copy-addr {
  border: 1px dashed rgba(11, 18, 32, 0.06);
}
.contact-form {
  background: var(--panel);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
}
.contact-form label {
  display: block;
  margin-top: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid rgba(11, 18, 32, 0.06);
}
.contact-form .form-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-form .muted {
  font-size: 0.9rem;
}

@media (min-width: 981px) {
  .contact-grid {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}

/* focus ring */
:focus {
  outline: 3px solid rgba(107, 70, 193, 0.18);
  outline-offset: 3px;
}

/* Button primitives used across site */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--panel);
  color: var(--text);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.btn:hover,
.btn:focus {
  transform: translateY(-3px);
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #04111a;
  box-shadow: 0 12px 30px rgba(77, 240, 255, 0.07);
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(11, 18, 32, 0.06);
  color: var(--text);
}

/* Tighter styles for address & actions */
.contact-info {
  padding: 20px;
}
.contact-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
}
.contact__address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px;
  border-radius: 10px;
  border: 1px dashed rgba(11, 18, 32, 0.04);
}
.contact-actions {
  gap: 10px;
  margin-top: 12px;
}
.copy-addr {
  padding: 8px 10px;
  font-size: 0.95rem;
}

/* Form states */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(77, 240, 255, 0.6);
  box-shadow: 0 8px 20px rgba(77, 240, 255, 0.06);
}
.is-success {
  border-color: rgba(16, 185, 129, 0.18) !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.06);
}
.is-error {
  border-color: rgba(239, 68, 68, 0.16) !important;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.06);
}
.form-status {
  margin-left: 4px;
  font-size: 0.95rem;
}
.form-status.success,
#form-status.success {
  color: #10b981;
}
.form-status.error,
#form-status.error {
  color: #ef4444;
}

/* Footer redesign styles */
.site-footer {
  margin-top: 48px;
  padding: 36px 0 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(250, 250, 255, 0.95)
  );
  border-top: 1px solid rgba(11, 18, 32, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.footer-brand .brand {
  margin-bottom: 6px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-contact address {
  font-style: normal;
  color: var(--muted);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.social {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  text-decoration: none;
}
.social:hover {
  color: var(--accent);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(11, 18, 32, 0.03);
  margin-top: 18px;
  padding-top: 12px;
}
.back-to-top {
  color: var(--muted);
  text-decoration: none;
}
.back-to-top:hover {
  color: var(--accent);
}

@media (min-width: 981px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-brand {
    padding-right: 18px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
