:root {
  /* Refined Color Palette - Warm Professional */
  --bg: #faf8f3;
  --paper: #ffffff;
  --paper-elevated: #fffefb;
  --ink: #1a1f1c;
  --ink-light: #2d3530;
  --muted: #5a635d;
  --muted-light: #8a938d;
  --line: #e8e4dc;
  --line-subtle: #f0ede6;
  
  /* Accent - Rich Teal */
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --accent-soft: #ccfbf1;
  --accent-glow: rgba(13, 148, 136, 0.15);
  
  /* Secondary - Warm Amber */
  --warm: #d97706;
  --warm-soft: #fef3c7;
  
  /* Shadows - Layered Depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.06), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.12);
  
  /* Radius - Consistent Rounding */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Layout */
  --content-width: 1200px;
  --section-gap: 6rem;
  
  /* Animation */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.65vw, 1.35rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(3rem, 2rem + 4vw, 5rem);
  --text-6xl: clamp(3.75rem, 2.5rem + 5vw, 6rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* Smooth Background Gradient */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 148, 136, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(217, 119, 6, 0.04), transparent);
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Page Shell */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header - Glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 228, 220, 0.6);
}

.site-header-inner {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.brand-tag {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  position: relative;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform var(--transition-fast);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(13, 148, 136, 0.06);
}

.nav a:hover::after,
.nav a.active::after {
  transform: translateX(-50%) scale(1);
}

.nav a.active {
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.nav .cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.nav .cta::after {
  display: none;
}

/* CTA Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35), 0 1px 2px rgba(0,0,0,0.1);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4), 0 2px 4px rgba(0,0,0,0.1);
}

.cta:hover::before {
  opacity: 1;
}

.cta:active {
  transform: translateY(0);
}

.cta.secondary {
  background: transparent;
  color: var(--accent-strong);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

.cta.secondary:hover {
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1.5px var(--accent), 0 4px 12px rgba(13, 148, 136, 0.15);
}

/* Hero Section */
.hero {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 3rem;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Eyebrow Badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero h1 {
  font-size: var(--text-5xl);
  max-width: 12ch;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 50ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Notes Grid */
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-note {
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition-fast);
}

.hero-note:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}

.hero-note strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.375rem;
}

.hero-note span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.hero-image-main:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper);
  transform: rotate(6deg);
  transition: transform var(--transition-slow);
}

.hero-image-accent:hover {
  transform: rotate(3deg) scale(1.02);
}

.hero-image-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Floating Elements */
.floating-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  animation: float 4s ease-in-out infinite;
}

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

.floating-badge::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

/* Sections */
.section {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  padding: var(--section-gap) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--accent-soft);
}

.service-card:hover::before {
  opacity: 0.5;
}

.service-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .cta.secondary {
  align-self: flex-start;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, var(--line-subtle) 0%, var(--bg) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin: 0 auto 4rem;
  width: min(calc(100% - 3rem), var(--content-width));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: 1.25rem;
}

.about-content .section-intro {
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--ink-light);
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d9488' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--line);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-body {
  padding: 1.5rem;
}

.project-body h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

.project-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Logos Section */
.logos-section {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-fast);
  max-height: 40px;
  width: auto;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand .brand-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Contact Page */
.contact-grid {
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 {
  font-size: var(--text-2xl);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.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.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--bg);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Service Pages */
.service-page {
  padding: 4rem 0;
}

.service-article {
  width: min(calc(100% - 3rem), 800px);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.service-article h1 {
  font-size: var(--text-4xl);
  margin-bottom: 1.5rem;
}

.service-article .eyebrow {
  margin-bottom: 1rem;
}

.service-article p {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-article ul {
  list-style: none;
  margin: 2rem 0;
}

.service-article li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: var(--ink-light);
}

.service-article li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

.service-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  text-align: center;
}

.service-cta h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
}

.service-cta p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero h1 {
    max-width: none;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-notes {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
  }
  
  .site-header-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }
  
  .nav a:not(.cta) {
    display: none;
  }
  
  .nav .cta {
    margin-left: 0;
  }
  
  .hero {
    padding: 3rem 0 2rem;
  }
  
  .hero-notes {
    grid-template-columns: 1fr;
  }
  
  .hero-image-accent {
    display: none;
  }
  
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section {
    padding: 2rem;
  }
  
  .logos-grid {
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .service-article {
    padding: 1.5rem;
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
