  /* ===== RESET & BASE ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    background: #F8FAFC;
    overflow-x: hidden;
    line-height: 1.6;
  }
  h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ===== COLOR SYSTEM ===== */
  :root {
    --teal-400: #2DD4BF;
    --teal-500: #0D9488;
    --teal-600: #0F766E;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
  }

  /* ===== NAV ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
    transition: background 0.3s;
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo { display: flex; align-items: center; gap: 10px; }
  .logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: #F8FAFC; }
  .logo-accent { color: var(--teal-400); }
  .logo-accent-light { color: #0F172A; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--slate-300); transition: color 0.2s; }
  .nav-links a:hover { color: var(--teal-400); }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .nav-toggle span { width: 24px; height: 2px; background: #F8FAFC; border-radius: 2px; transition: 0.3s; }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .btn-primary { background: var(--teal-500); color: #fff; border-color: var(--teal-500); }
  .btn-primary:hover { background: var(--teal-600); border-color: var(--teal-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35); }
  .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
  .btn-outline-light:hover { background: #fff; color: var(--slate-900); border-color: #fff; transform: translateY(-2px); }
  .btn-white { background: #fff; color: var(--slate-900); border-color: #fff; }
  .btn-white:hover { background: var(--teal-400); border-color: var(--teal-400); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45, 212, 191, 0.35); }
  .btn-sm { padding: 8px 20px; font-size: 0.85rem; }
  .btn-lg { padding: 16px 36px; font-size: 1rem; }
  .btn-full { width: 100%; justify-content: center; }

  /* ===== SECTION HEADERS ===== */
  .section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-500);
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  .section-tag.light { color: var(--teal-400); background: rgba(45, 212, 191, 0.15); }
  .section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--slate-900); margin-bottom: 16px; }
  .section-title .text-teal { color: var(--teal-500); }
  .section-title .text-teal-light { color: var(--teal-400); }
  .section-sub { font-size: 1.1rem; color: #64748B; max-width: 600px; }
  .section-header { margin-bottom: 60px; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-900);
  }
  .hero-bg { position: absolute; inset: 0; z-index: 1; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(13, 148, 136, 0.75) 100%);
  }
  .hero-shape { position: absolute; z-index: 2; pointer-events: none; }
  .hero-shape--1 {
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: var(--teal-400);
    border-radius: 50%;
    opacity: 0.12;
  }
  .hero-shape--2 {
    bottom: -120px; left: -120px;
    width: 500px; height: 500px;
    background: var(--teal-500);
    border-radius: 50%;
    opacity: 0.08;
  }
  .hero-shape--3 {
    top: 50%; right: 10%;
    width: 120px; height: 120px;
    background: var(--teal-400);
    transform: rotate(45deg);
    opacity: 0.2;
    border-radius: 12px;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 212, 191, 0.15);
    border: 1px solid rgba(45, 212, 191, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-400);
    margin-bottom: 32px;
  }
  .hero-badge-dot { width: 8px; height: 8px; background: var(--teal-400); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
  }
  .hero-highlight {
    background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--slate-300);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
  .hero-stats { display: flex; gap: 32px; align-items: center; }
  .hero-stat { display: flex; flex-direction: column; gap: 4px; }
  .hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--teal-400); }
  .hero-stat-label { font-size: 0.8rem; color: var(--slate-300); text-transform: uppercase; letter-spacing: 0.06em; }
  .hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-300);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--teal-400), transparent); animation: scrollDown 2s infinite; }
  @keyframes scrollDown { 0% { opacity: 1; height: 40px; } 50% { opacity: 0.4; height: 20px; } 100% { opacity: 1; height: 40px; } }

  /* ===== SERVICES ===== */
  .services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--slate-50);
  }
  .services-bg-shape { position: absolute; pointer-events: none; }
  .services-bg-shape--1 {
    top: 60px; right: -100px;
    width: 300px; height: 300px;
    background: var(--teal-400);
    border-radius: 50%;
    opacity: 0.06;
  }
  .services-bg-shape--2 {
    bottom: -80px; left: -80px;
    width: 250px; height: 250px;
    background: var(--teal-500);
    border-radius: 50%;
    opacity: 0.05;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--slate-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(13, 148, 136, 0.12); border-color: var(--teal-400); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon-wrap {
    width: 64px; height: 64px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-500);
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  .service-card:hover .service-icon-wrap { background: var(--teal-500); color: #fff; }
  .service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
  .service-card p { font-size: 0.95rem; color: #64748B; margin-bottom: 16px; line-height: 1.6; }
  .service-list { display: flex; flex-direction: column; gap: 8px; }
  .service-list li { font-size: 0.88rem; color: #475569; display: flex; align-items: center; gap: 8px; }
  .service-list li::before { content: ''; width: 6px; height: 6px; background: var(--teal-400); border-radius: 50%; flex-shrink: 0; }

  /* ===== ABOUT ===== */
  .about {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual { position: relative; }
  .about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.12); }
  .about-img-main img { width: 100%; height: 500px; object-fit: cover; }
  .about-img-accent {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
    border: 4px solid #fff;
  }
  .about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
  .about-badge {
    position: absolute;
    top: -20px; left: -20px;
    background: var(--teal-500);
    color: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    z-index: 2;
  }
  .about-badge-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; }
  .about-badge-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }
  .about-geo { position: absolute; pointer-events: none; }
  .about-geo--1 { top: 20px; right: -30px; width: 60px; height: 60px; background: var(--teal-400); border-radius: 12px; transform: rotate(30deg); opacity: 0.3; }
  .about-geo--2 { bottom: 60px; left: -20px; width: 40px; height: 40px; background: var(--teal-500); border-radius: 50%; opacity: 0.2; }
  .about-content { position: relative; z-index: 1; }
  .about-text { font-size: 1.05rem; color: #475569; margin-bottom: 20px; line-height: 1.8; }
  .about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
  .about-feature { display: flex; gap: 16px; align-items: flex-start; }
  .about-feature-icon { width: 44px; height: 44px; background: rgba(13, 148, 136, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .about-feature strong { display: block; font-size: 1rem; color: var(--slate-900); margin-bottom: 2px; }
  .about-feature span { font-size: 0.88rem; color: #64748B; }

  /* ===== GALLERY ===== */
  .gallery {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
  }
  .gallery .section-title { color: #fff; }
  .gallery .section-sub { color: var(--slate-300); }
  .gallery .section-tag { background: rgba(45, 212, 191, 0.15); color: var(--teal-400); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }
  .gallery-item-tag { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-400); margin-bottom: 4px; }
  .gallery-item-overlay span:last-child { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
  .gallery-item--large { grid-column: span 2; grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-bg-shape {
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    background: var(--teal-500);
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
    position: relative;
    overflow: hidden;
  }
  .testimonials .section-title { color: #fff; }
  .testimonials .section-sub { color: rgba(255,255,255,0.8); }
  .testimonials .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
  .testimonials-slider { position: relative; z-index: 1; }
  .testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
  }
  .testimonial-card {
    min-width: calc(50% - 12px);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 40px 32px;
    color: #fff;
  }
  .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
  .testimonial-text { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); }
  .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .testimonial-author strong { display: block; font-size: 1rem; }
  .testimonial-author span { font-size: 0.82rem; opacity: 0.7; }
  .testimonials-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
  .testimonial-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }
  .testimonial-btn:hover { background: #fff; color: var(--teal-500); border-color: #fff; }

  /* ===== CTA ===== */
  .cta {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
  }
  .cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
  .cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .cta-shape { position: absolute; border-radius: 50%; }
  .cta-shape--1 { top: -60px; left: -60px; width: 200px; height: 200px; background: var(--teal-400); opacity: 0.08; }
  .cta-shape--2 { bottom: -80px; right: -80px; width: 300px; height: 300px; background: var(--teal-500); opacity: 0.06; }
  .cta-shape--3 { top: 50%; left: 10%; width: 80px; height: 80px; background: var(--teal-400); opacity: 0.12; border-radius: 16px; transform: rotate(45deg); }
  .cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 20px; }
  .cta-text { font-size: 1.1rem; color: var(--slate-300); margin-bottom: 40px; line-height: 1.7; }
  .cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

  /* ===== CONTACT ===== */
  .contact {
    padding: 120px 0;
    background: var(--slate-50);
    position: relative;
  }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-desc { font-size: 1.05rem; color: #64748B; margin-bottom: 36px; line-height: 1.7; }
  .contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .contact-detail { display: flex; gap: 16px; align-items: flex-start; }
  .contact-detail-icon { width: 48px; height: 48px; background: rgba(13, 148, 136, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal-500); flex-shrink: 0; }
  .contact-detail strong { display: block; font-size: 0.95rem; color: var(--slate-900); margin-bottom: 2px; }
  .contact-detail span, .contact-detail a { font-size: 0.92rem; color: #64748B; }
  .contact-detail a:hover { color: var(--teal-500); }
  .contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .contact-form-wrap { position: relative; }
  .contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-200);
  }
  .contact-form-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
  .contact-form-desc { font-size: 0.92rem; color: #64748B; margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate-800); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--slate-900);
    background: var(--slate-50);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-success { text-align: center; padding: 40px 20px; }
  .form-success-icon { margin-bottom: 16px; }
  .form-success h4 { font-size: 1.4rem; color: var(--slate-900); margin-bottom: 8px; }
  .form-success p { color: #64748B; }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--slate-900);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    color: var(--slate-300);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
  .footer-social { display: flex; gap: 12px; margin-top: 20px; }
  .social-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    transition: all 0.3s;
  }
  .social-icon:hover { background: var(--teal-500); color: #fff; }
  .footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { font-size: 0.88rem; color: var(--slate-300); transition: color 0.2s; }
  .footer-col a:hover { color: var(--teal-400); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--slate-300);
    opacity: 0.6;
  }
  .footer-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .footer-shape { position: absolute; border-radius: 50%; }
  .footer-shape--1 { top: -80px; right: 20%; width: 250px; height: 250px; background: var(--teal-500); opacity: 0.04; }
  .footer-shape--2 { bottom: -60px; left: 10%; width: 180px; height: 180px; background: var(--teal-400); opacity: 0.03; }

  /* ===== MOBILE NAV ===== */
  @media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(15, 23, 42, 0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 32px 24px;
      gap: 20px;
      transform: translateY(-120%);
      transition: transform 0.4s ease;
      border-bottom: 1px solid rgba(45, 212, 191, 0.15);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { font-size: 1.05rem; color: var(--slate-300); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-accent { right: 20px; bottom: -20px; width: 200px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }
    .gallery-item--wide { grid-column: span 1; }
    .testimonial-card { min-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item--large { grid-column: span 1; }
    .gallery-item img { height: 220px; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-stat-divider { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
  }

  /* ===== SCROLL REVEAL (progressive enhancement) ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
  }
