
    @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

    :root {
      --primary: #1E3A5F;
      --secondary: #2E5984;
      --accent: #C8D8E8;
      --bg: #F5F8FC;
      --dark: #0D1F36;
      --text: #1A1A2E;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 400;
      color: var(--text);
      background-color: var(--bg);
      line-height: 1.7;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      font-family: 'Noto Sans JP', sans-serif;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER / NAV ===== */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(13, 31, 54, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(200, 216, 232, 0.2);
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .site-logo {
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

    .site-logo-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

    .site-logo-sub {
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.05em;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 700;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-book-btn {
      background: var(--accent);
      color: var(--dark) !important;
      padding: 10px 20px;
      border-radius: 12px;
      font-weight: 700 !important;
      transition: background 0.3s ease, transform 0.2s ease !important;
    }

    .nav-book-btn:hover {
      background: #fff !important;
      transform: translateY(-2px);
    }

    .nav-book-btn::after {
      display: none !important;
    }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger-btn span {
      display: block;
      width: 26px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.is-open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--dark);
      padding: 20px 24px;
      border-top: 1px solid rgba(200,216,232,0.2);
    }

    .mobile-nav.is-open {
      display: flex;
    }

    .mobile-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      padding: 14px 0;
      border-bottom: 1px solid rgba(200,216,232,0.1);
      transition: color 0.3s;
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

    /* ===== SECTION UTILITY ===== */
    section {
      padding: 100px 0;
    }

    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 12px;
    }

    .section-heading {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .section-subtext {
      font-size: 1rem;
      color: #555;
      max-width: 560px;
      line-height: 1.8;
    }

    .section-heading-center {
      text-align: center;
    }

    .section-subtext-center {
      text-align: center;
      margin: 0 auto;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      cursor: pointer;
      border: none;
      font-family: 'Noto Sans JP', sans-serif;
    }

    .btn-primary:hover {
      background: var(--secondary);
      transform: translateY(-2px);
    }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid var(--primary);
      transition: background 0.3s, color 0.3s, transform 0.2s;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-accent {
      display: inline-block;
      background: var(--accent);
      color: var(--dark);
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-accent:hover {
      background: #fff;
      transform: translateY(-2px);
    }

    /* ===== HERO ===== */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      overflow: hidden;
      padding: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
      z-index: 1;
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('./images/professional_hairstylist_at_wo_6.jpg') center/cover no-repeat;
      opacity: 0.18;
      z-index: 2;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13,31,54,0.9) 0%, rgba(13,31,54,0.5) 60%, rgba(13,31,54,0.1) 100%);
      z-index: 3;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(200,216,232,0.15);
      border: 1px solid rgba(200,216,232,0.4);
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      padding: 8px 18px;
      border-radius: 30px;
      margin-bottom: 24px;
      animation: fadeInUp 0.5s ease-out;
    }

    .hero-title {
      font-size: 3.4rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 24px;
      max-width: 680px;
      animation: fadeInUp 0.6s ease-out 0.1s both;
    }

    .hero-title em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.8);
      max-width: 500px;
      line-height: 1.9;
      margin-bottom: 40px;
      animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeInUp 0.6s ease-out 0.3s both;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 64px;
      animation: fadeInUp 0.6s ease-out 0.4s both;
    }

    .hero-stat-item {
      text-align: left;
    }

    .hero-stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.65);
      margin-top: 4px;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      animation: bounceDown 2s infinite;
    }

    .hero-scroll-hint span {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
    }

    .hero-scroll-hint svg {
      width: 24px;
      height: 24px;
      color: rgba(255,255,255,0.5);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounceDown {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ===== BEFORE & AFTER ===== */
    .before-after-section {
      background: #fff;
    }

    .before-after-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .ba-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .ba-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--bg);
      box-shadow: 0 4px 20px rgba(30,58,95,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .ba-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(30,58,95,0.14);
    }

    .ba-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    .ba-images img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .ba-divider {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 100%;
      width: 3px;
      background: #fff;
      z-index: 2;
    }

    .ba-label-before,
    .ba-label-after {
      position: absolute;
      top: 12px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 20px;
      z-index: 3;
    }

    .ba-label-before {
      left: 10px;
      background: rgba(0,0,0,0.55);
      color: #fff;
    }

    .ba-label-after {
      right: 10px;
      background: var(--primary);
      color: #fff;
    }

    .ba-info {
      padding: 20px 24px;
    }

    .ba-style-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .ba-style-desc {
      font-size: 0.85rem;
      color: #666;
      line-height: 1.6;
    }

    /* ===== SERVICES ===== */
    .services-section {
      background: var(--bg);
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .service-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px 32px;
      box-shadow: 0 4px 20px rgba(30,58,95,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(30,58,95,0.13);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      background: var(--accent);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
    }

    .service-card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
    }

    .service-card-desc {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.8;
      flex: 1;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: gap 0.3s;
    }

    .service-card-link:hover {
      gap: 10px;
    }

    /* ===== STYLIST SPOTLIGHT ===== */
    .stylists-section {
      background: #fff;
    }

    .stylists-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .stylists-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .stylist-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--bg);
      box-shadow: 0 4px 20px rgba(30,58,95,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .stylist-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(30,58,95,0.14);
    }

    .stylist-photo {
      position: relative;
      overflow: hidden;
    }

    .stylist-photo img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .stylist-card:hover .stylist-photo img {
      transform: scale(1.05);
    }

    .stylist-experience-badge {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: var(--primary);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 20px;
    }

    .stylist-info {
      padding: 24px;
    }

    .stylist-name {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .stylist-role {
      font-size: 0.8rem;
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }

    .stylist-bio {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .stylist-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .stylist-tag {
      background: var(--accent);
      color: var(--dark);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background: var(--dark);
      padding: 100px 0;
    }

    .testimonials-section .section-heading {
      color: #fff;
    }

    .testimonials-section .section-label {
      color: var(--accent);
    }

    .testimonials-section .section-subtext {
      color: rgba(255,255,255,0.7);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .testimonials-slider {
      position: relative;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-slide {
      flex: 0 0 100%;
      padding: 0 8px;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(200,216,232,0.15);
      border-radius: 20px;
      padding: 40px;
      max-width: 800px;
      margin: 0 auto;
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .testimonial-star {
      color: #F5C518;
    }

    .testimonial-text {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.9;
      margin-bottom: 28px;
      font-style: italic;
    }

    .testimonial-author-row {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .testimonial-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent);
    }

    .testimonial-author-name {
      font-weight: 700;
      color: #fff;
      font-size: 0.95rem;
    }

    .testimonial-author-detail {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

    .testimonials-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }

    .testimonial-prev-btn,
    .testimonial-next-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(200,216,232,0.4);
      background: transparent;
      color: #fff;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s;
    }

    .testimonial-prev-btn:hover,
    .testimonial-next-btn:hover {
      background: var(--secondary);
      border-color: var(--secondary);
    }

    .testimonials-dots {
      display: flex;
      gap: 8px;
    }

    .testimonials-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(200,216,232,0.3);
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }

    .testimonials-dot.is-active {
      background: var(--accent);
      transform: scale(1.3);
    }

    /* ===== PRICING ===== */
    .pricing-section {
      background: var(--bg);
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .pricing-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(30,58,95,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(30,58,95,0.13);
    }

    .pricing-card-header {
      background: var(--primary);
      color: #fff;
      padding: 24px 28px;
    }

    .pricing-card.is-featured .pricing-card-header {
      background: var(--dark);
    }

    .pricing-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .pricing-card-subtitle {
      font-size: 0.8rem;
      opacity: 0.75;
    }

    .pricing-card-body {
      padding: 28px;
    }

    .pricing-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--accent);
      font-size: 0.9rem;
    }

    .pricing-item:last-child {
      border-bottom: none;
    }

    .pricing-item-name {
      color: var(--text);
      font-weight: 400;
    }

    .pricing-item-price {
      font-weight: 700;
      color: var(--primary);
      white-space: nowrap;
    }

    .pricing-note {
      font-size: 0.75rem;
      color: #888;
      margin-top: 16px;
      text-align: center;
    }

    .pricing-footer {
      text-align: center;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 400px;
      height: 400px;
      background: rgba(200,216,232,0.06);
      border-radius: 50%;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 500px;
      height: 500px;
      background: rgba(200,216,232,0.04);
      border-radius: 50%;
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cta-tagline {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .cta-heading {
      font-size: 2.6rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 20px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.9;
    }

    .cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .cta-trust-list {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.65);
      font-size: 0.85rem;
    }

    .cta-trust-icon {
      font-size: 1.1rem;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      padding: 72px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 56px;
    }

    .footer-brand-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .footer-brand-sub {
      font-size: 0.75rem;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .footer-brand-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-contact-item {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 6px;
    }

    .footer-contact-item a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-contact-item a:hover {
      color: var(--accent);
    }

    .footer-col-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }

    .footer-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav-list a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }

    .footer-nav-list a:hover {
      color: var(--accent);
    }

    .footer-hours-item {
      display: flex;
      justify-content: space-between;
      font-size: 0.83rem;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-hours-item:last-child {
      border-bottom: none;
    }

    .footer-hours-day {
      color: rgba(255,255,255,0.6);
    }

    .footer-hours-time {
      color: rgba(255,255,255,0.9);
      font-weight: 700;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copyright {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }

    .footer-legal-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-legal-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-legal-links a:hover {
      color: var(--accent);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      .hero-title {
        font-size: 2.2rem;
      }

      .hero-stats {
        gap: 24px;
      }

      .hero-stat-number {
        font-size: 1.5rem;
      }

      section {
        padding: 72px 0;
      }

      .section-heading {
        font-size: 1.7rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .cta-heading {
        font-size: 1.9rem;
      }

      .ba-grid,
      .services-grid,
      .stylists-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.75rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-heading {
        font-size: 1.6rem;
      }

      .testimonial-card {
        padding: 28px 20px;
      }
    }
  