  /* === CUSTOM STYLES === */

  html {
    scroll-behavior: smooth;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* === NAV === */
  .nav.scrolled {
    background: rgba(253, 248, 246, 0.97) !important;
    border-bottom-color: rgba(45, 45, 45, 0.08);
    box-shadow: 0 1px 20px rgba(45, 45, 45, 0.06);
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E86A52;
    border-radius: 1px;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* === MOBILE MENU === */
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 1.25rem;
  }

  /* === BUTTONS === */
  .btn-coral {
    background: #E86A52;
    transition: all 0.3s ease;
  }

  .btn-coral:hover {
    background: #D45740;
  }

  .btn-outline {
    border: 2px solid rgba(45, 45, 45, 0.2);
    transition: all 0.3s ease;
  }

  .btn-outline:hover {
    border-color: rgba(45, 45, 45, 0.4);
  }

  /* === TAG === */
  .tag {
    display: inline-block;
    background: #FFF0EE;
    color: #D45740;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(232, 106, 82, 0.2);
  }

  /* === HERO === */
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 106, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }

  .hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .floating-card {
    animation: float 4s ease-in-out infinite;
  }

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

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* === SERVICE CARDS === */
  .service-card {
    opacity: 0;
    transform: translateY(30px);
  }

  .service-card.visible {
    animation: fadeUp 0.6s ease forwards;
  }

  /* === AREA CARDS === */
  .area-card {
    cursor: pointer;
  }

  .area-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
  }

  .area-card:hover::after {
    border-color: rgba(232, 106, 82, 0.4);
  }

  /* === TESTIMONIAL CARDS === */
  .testimonial-card {
    opacity: 0;
    transform: translateY(30px);
  }

  .testimonial-card.visible {
    animation: fadeUp 0.6s ease forwards;
  }

  /* === INPUT FIELDS === */
  .input-field {
    font-family: 'DM Sans', system-ui, sans-serif;
  }

  .input-field:focus {
    border-color: #E86A52;
    box-shadow: 0 0 0 4px rgba(232, 106, 82, 0.1);
  }

  select.input-field {
    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='%234A4A4A' 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 1rem center;
    padding-right: 2.5rem;
  }

  /* === SCROLL REVEAL === */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* === MOBILE MENU FULLSCREEN === */
  @media (max-width: 767px) {
    .mobile-menu {
      background: rgba(253, 248, 246, 0.98);
      backdrop-filter: blur(20px);
    }
  }

  /* === RESPONSIVE === */
  @media (max-width: 767px) {
    .hero {
      padding-top: 5rem;
    }
  }

  /* === ACCESSIBILITY === */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }
