  /* ============================================
     Apollo Pest & Termite Inspection — Styles
     ============================================ */

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

  :root {
    --coral: #E07A5F;
    --coral-light: #F2CCB0;
    --coral-dark: #C4624A;
    --charcoal: #2D3436;
    --charcoal-light: #4A5254;
    --cream: #FDF6F0;
    --cream-dark: #F7EDE3;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F8F8;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #C8C8C8;
    --gray-400: #A0A0A0;
    --gray-500: #707070;
    --gray-600: #505050;
    --shadow-sm: 0 1px 3px rgba(45, 52, 54, 0.06), 0 1px 2px rgba(45, 52, 54, 0.04);
    --shadow-md: 0 4px 16px rgba(45, 52, 54, 0.08), 0 2px 4px rgba(45, 52, 54, 0.04);
    --shadow-lg: 0 12px 40px rgba(45, 52, 54, 0.12), 0 4px 12px rgba(45, 52, 54, 0.06);
    --shadow-xl: 0 24px 60px rgba(45, 52, 54, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

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

  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
  }

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

  a {
    color: inherit;
    text-decoration: none;
  }

  ul {
    list-style: none;
  }

  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Typography ---------- */
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
  }

  .text-coral { color: var(--coral); }
  .text-white { color: var(--white); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
  }

  .btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
  }

  .btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
  }

  .btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
  }

  .btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--gray-200);
  }

  .btn-ghost:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
  }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn-lg {
    padding: 18px 36px;
    font-size: 16px;
  }

  .btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 28px;
  }

  /* ---------- Section Common ---------- */
  .section {
    padding: 100px 0;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
  }

  .section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
  }

  .section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
  }

  /* ---------- Header ---------- */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 122, 95, 0.1);
    transition: all var(--transition);
  }

  .header.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--charcoal);
    transition: color var(--transition);
  }

  .logo:hover { color: var(--coral); }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color var(--transition);
    position: relative;
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition);
    border-radius: 2px;
  }

  .nav-menu a:hover { color: var(--coral); }
  .nav-menu a:hover::after { width: 100%; }

  .btn-nav {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* Nav Toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #F5E6DB 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-content { max-width: 520px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 122, 95, 0.1);
    border: 1px solid rgba(224, 122, 95, 0.2);
    color: var(--coral);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
  }

  /* Hero Image */
  .hero-image {
    position: relative;
  }

  .hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .hero-img-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
  }

  .hero-img-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
  }

  .hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
  }

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

  .floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .floating-card-number {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--charcoal);
    line-height: 1;
  }

  .floating-card-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
  }

  /* ---------- Services ---------- */
  .services {
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(224, 122, 95, 0.15);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition);
  }

  .service-card:hover .service-icon {
    background: var(--coral);
  }

  .service-card:hover .service-icon svg {
    stroke: var(--white);
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--coral);
    transition: gap var(--transition);
  }

  .service-link:hover { gap: 10px; }

  /* ---------- About ---------- */
  .about {
    background: var(--cream);
  }

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

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .about-img-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
  }

  .about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
  }

  .about-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
  }

  .exp-number {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
  }

  .exp-text {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.4;
  }

  .about-content { max-width: 480px; }

  .about-text {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
  }

  .about-feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ---------- Process ---------- */
  .process {
    background: var(--white);
  }

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

  .process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
  }

  .step-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--coral);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }

  .step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
  }

  .step-desc a {
    color: var(--coral);
    font-weight: 600;
  }

  .step-connector {
    display: none;
  }

  /* ---------- Testimonials ---------- */
  .testimonials {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3D4547 100%);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 122, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .testimonials .section-tag { color: var(--coral-light); }
  .testimonials .section-tag::before { background: var(--coral-light); }
  .testimonials .section-title { color: var(--white); }
  .testimonials .section-desc { color: rgba(255, 255, 255, 0.6); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
  }

  .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
  }

  .testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--coral);
    line-height: 1;
    margin-bottom: -8px;
    opacity: 0.6;
  }

  .testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
    background: rgba(224, 122, 95, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
  }

  .testimonial-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }

  /* ---------- CTA Section ---------- */
  .cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
  }

  .cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 20px;
  }

  .cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ---------- Contact ---------- */
  .contact {
    background: var(--cream);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info { max-width: 440px; }

  .contact-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 36px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-detail {
    display: flex;
    gap: 16px;
  }

  .contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-detail-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 4px;
  }

  .contact-detail-value {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.6;
  }

  .contact-detail-value a {
    color: var(--charcoal);
    transition: color var(--transition);
  }

  .contact-detail-value a:hover { color: var(--coral); }

  /* Contact Form */
  .contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(224, 122, 95, 0.08);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--gray-50);
    transition: all var(--transition);
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--gray-300);
  }

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

  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  /* Success State */
  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
  }

  .form-success.active {
    display: flex;
  }

  .success-icon {
    width: 72px;
    height: 72px;
    background: rgba(224, 122, 95, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .success-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .success-text {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
  }

  /* ---------- Footer ---------- */
  .footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
  }

  .footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-links ul,
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a,
  .footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--coral);
  }

  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
  }

  /* ---------- Animations ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1024px) {
    .hero-grid {
      gap: 40px;
    }

    .hero-img-wrapper img {
      height: 560px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
      grid-column: span 2;
      max-width: 50%;
      margin: 0 auto;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

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

    .nav-toggle { display: flex; }

    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--cream);
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 32px 32px;
      gap: 20px;
      box-shadow: var(--shadow-xl);
      transition: right var(--transition);
      z-index: 1000;
    }

    .nav-menu.open { right: 0; }

    .nav-menu a { font-size: 17px; }

    .hero { padding: 120px 0 72px; }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .hero-content { max-width: 100%; }

    .hero-img-wrapper img { height: 480px; }

    .hero-floating-card {
      left: 16px;
      bottom: 20px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .about-img-main img { height: 400px; }

    .about-img-secondary {
      width: 200px;
      right: -10px;
      bottom: -20px;
    }

    .about-features { grid-template-columns: 1fr; }

    .process-steps {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
      grid-column: span 1;
      max-width: 100%;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .contact-form-wrapper { padding: 28px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .hero-trust { flex-direction: column; gap: 12px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    .about-experience-badge {
      right: 0;
      top: -16px;
    }
  }

  /* Mobile menu overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(45, 52, 54, 0.4);
    z-index: 999;
    backdrop-filter: blur(4px);
  }

  .nav-overlay.active { display: block; }
