/* ==============================
   WORKMIND — style.css
   Paleta: índigo profundo + violeta + blanco cristal
   ============================== */

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

:root {
  --primary:       #2c5f52;
  --primary-light: #3d7a6a;
  --primary-dark:  #142e28;
  --accent:        #6aab95;
  --accent-warm:   #c97c5d;
  --text-dark:     #0d1f1c;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --surface:       #ffffff;
  --surface-alt:   #f2f7f5;
  --border:        #dce8e4;
  --shadow-sm:     0 2px 8px rgba(44,95,82,.08);
  --shadow-md:     0 8px 32px rgba(44,95,82,.14);
  --shadow-lg:     0 24px 64px rgba(44,95,82,.20);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --font-sans:     'Plus Jakarta Sans', sans-serif;
  --font-serif:    'Sora', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--surface);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: var(--surface-alt);
  border: 1px solid #b8d8cf;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- LAYOUT ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-xl);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(61,122,106,.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61,122,106,.45);
}

.btn-outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.08);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--surface-alt);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 1.1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13,31,28,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  padding: .75rem 0;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo { color: #fff; }

.logo-img {
  height: 60px;
  width: auto;
  max-width: 270px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.85); }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.navbar.scrolled .nav-cta {
  background: var(--primary-light) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.nav-cta:hover { background: rgba(255,255,255,.28) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: #fff; }

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,46,40,.92) 0%,
    rgba(44,95,82,.78) 50%,
    rgba(61,122,106,.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 8rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  animation: heroFadeUp .9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
  padding: .45rem 1.2rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.12rem;
  opacity: .88;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 1.4rem 2.5rem;
  border-radius: var(--radius-lg);
}

.stat { text-align: center; max-width: 250px; }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-serif);
  line-height: 1.1;
  background: linear-gradient(135deg, #fff, #b8d8cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
}
.stat-label { 
  display: block;
  font-size: .85rem; 
  font-weight: 700; 
  color: #fff;
  margin-bottom: .3rem;
  letter-spacing: .03em;
}
.stat-desc {
  display: block;
  font-size: .8rem;
  opacity: .75;
  line-height: 1.4;
  font-weight: 400;
}

.stat-divider {
  width: 1px; height: 65px;
  background: rgba(255,255,255,.25);
}

.hero-scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  animation: bounce 2s infinite;
}
.scroll-arrow { font-size: 1.4rem; margin-top: .25rem; }

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

/* ==============================
   SERVICES
   ============================== */
.services { background: var(--surface-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #b8d8cf;
}

/* Icon ── now lives inside .service-body */
.service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--surface-alt);
  border: 1.5px solid #b8d8cf;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  transition: all var(--transition);
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.service-card:hover .service-icon {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
}

/* Body: icon on left, text on right */
.service-body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.6rem 0;
  flex: 1;
}

/* Text column */
.service-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-text h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .45rem;
  line-height: 1.25;
}
.service-text p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-card h3,
.service-card p {
  padding: 0;
}

.service-link {
  display: inline-block;
  margin: .9rem 0 1.4rem 0;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary-light);
  transition: color var(--transition);
}
.service-link:hover { color: var(--accent); }

/* ==============================
   ABOUT
   ============================== */
.about { background: var(--surface); }

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

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; }

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-img-float img { width: 100%; height: 100%; }

.about-badge-float {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 200px;
}
.badge-icon { font-size: 2rem; }
.about-badge-float strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
.about-badge-float span { font-size: .78rem; color: var(--text-muted); }

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem 0 2.5rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  border: 1px solid #cce0d9;
  transition: all var(--transition);
}
.pillar:hover {
  background: #e4f0ec;
  border-color: #b8d8cf;
  transform: translateX(6px);
}
.pillar-icon { font-size: 1.6rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.pillar span   { font-size: .83rem; color: var(--text-muted); }

/* ==============================
   GALLERY
   ============================== */
.gallery-section { background: var(--surface-alt); padding-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  padding: 0 5%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item--large {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(20,46,40,.78) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
}

/* ==============================
   PROCESS
   ============================== */
.process-section { background: var(--surface); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem 1.6rem;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid #cce0d9;
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #b8d8cf;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .8rem;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.step-content p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-connector {
  display: none;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section { background: var(--primary-dark); }
.testimonials-section .section-tag { background: rgba(255,255,255,.1); color: #a8d5c5; border-color: rgba(255,255,255,.2); }
.testimonials-section .section-title { color: #fff; }

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

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
}
.testimonial-card.featured {
  background: rgba(255,255,255,.12);
  border-color: rgba(106,171,149,.5);
  box-shadow: 0 0 40px rgba(106,171,149,.2);
}

.testimonial-quote {
  font-size: 7rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: .65;
  color: var(--accent);
  margin-bottom: .8rem;
  opacity: .55;
  letter-spacing: -.02em;
  user-select: none;
}

.testimonial-card p {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
}
.testimonial-author span { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ==============================
   CTA BANNER
   ============================== */
.cta-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img { width: 100%; height: 100%; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,46,40,.92), rgba(44,95,82,.82));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 2rem;
}

/* ==============================
   CONTACT
   ============================== */
.contact-section { background: var(--surface-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--surface-alt);
  border: 1.5px solid #b8d8cf;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
#contact-email   .contact-icon { background: #e8f4f1; border-color: #a8d5c5; color: #3d7a6a; }
#contact-phone   .contact-icon { background: #fef3ee; border-color: #e8b89e; color: #c97c5d; }
#contact-location .contact-icon { background: #edf4f1; border-color: #a8cfc0; color: #2c5f52; }
.contact-item strong { display: block; font-size: .88rem; color: var(--text-dark); font-weight: 700; }
.contact-item span  { font-size: .88rem; color: var(--text-muted); }

.social-links {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.social-link svg {
  width: 20px; height: 20px;
  display: block;
  object-fit: unset;
}
.social-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(106,171,149,.4);
}

/* ---- FORM ---- */
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(61,122,106,.12);
}

.form-group textarea { resize: vertical; }

.form-success {
  margin-top: 1rem;
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: .8rem;
  border-radius: var(--radius-sm);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }

.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col li, .footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ==============================
   ANIMATIONS (scroll reveal)
   ============================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
  .about-img-float    { display: none; }
  .about-badge-float  { left: 1rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--large { grid-column: span 2; height: 300px; }
  .gallery-item        { height: 220px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 998;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-body) !important; font-size: 1.05rem; }
  .nav-cta { color: #fff !important; }

  .hamburger { display: flex; z-index: 999; }

  .testimonials-grid  { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: 1fr 1fr; padding: 0 4%; }
  .gallery-item--large { height: 200px; }
  .gallery-item        { height: 160px; }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
  .hero-stats          { gap: 1.2rem; padding: 1rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: center; }
  .hero-stats    { flex-direction: column; gap: 1rem; }
  .stat-divider  { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
}
