/* ================================
   SERVICES PAGE RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff7fa;
  color: #171717;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

.services-page {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #fff6f9 100%);
}

/* ================================
   HERO
================================ */
.services-hero {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 95px 5% 48px;
  text-align: center;
}

.services-kicker {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

.services-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 7vw, 110px);
  line-height: 0.95;
  margin-bottom: 20px;
}

.services-hero h1 em {
  color: #dc5f88;
  font-style: italic;
}

.services-hero-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #dc5f88;
  margin-bottom: 20px;
}

.services-hero-line span {
  width: 95px;
  height: 1px;
  background: rgba(220, 95, 136, 0.45);
}

.services-hero-text {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* ================================
   MAIN LAYOUT
================================ */
.services-layout {
  width: 100%;
  max-width: none;
  padding: 35px 4.5% 90px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

/* ================================
   SIDE NAV
================================ */
.services-side-nav {
  position: sticky;
  top: 95px;
  background: #fff;
  border: 1px solid rgba(220, 95, 136, 0.14);
  padding: 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
}

.services-side-nav h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 14px;
}

.side-nav-line {
  width: 50px;
  height: 2px;
  background: #dc5f88;
  display: block;
  margin-bottom: 18px;
}

.service-nav-btn {
  width: 100%;
  border: none;
  background: transparent;
  color: #555;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.065);
  transition: 0.3s ease;
}

.service-nav-btn:hover,
.service-nav-btn.active {
  color: #dc5f88;
}

.service-nav-btn i {
  font-size: 10px;
}

/* removes ready-to-book card */
.side-book-card {
  display: none;
}

/* ================================
   MOBILE TABS
================================ */
.mobile-service-tabs {
  display: none;
}

/* ================================
   CATEGORY HEADING
================================ */
.service-category-heading {
  margin-bottom: 30px;
}

.service-category-heading > p:first-child {
  color: #dc5f88;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-category-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 12px;
}

.service-category-heading span {
  width: 48px;
  height: 2px;
  background: #dc5f88;
  display: block;
  margin-bottom: 14px;
}

.service-category-heading > p:last-child {
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  max-width: 780px;
}

/* ================================
   GRID
================================ */
.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 24px;
}

/* ================================
   SERVICE CARD - PREMIUM ROUNDED
================================ */

.service-card{
    background:#fff;
    border:1px solid rgba(220,95,136,.10);
    border-radius:18px;
    overflow:hidden;
    padding:16px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 55px rgba(0,0,0,.10);
}

/* IMAGE */

.service-image{
    width:100%;
    height:230px;
    background:#f9edf2;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:18px;
}

.service-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
    transition:.45s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.04);
}

/* CONTENT */

.service-content-card{
    padding:0;
}

.service-content-card h3{
    font-family:"Cormorant Garamond",serif;
    font-size:31px;
    line-height:.95;
    color:#151515;
    margin-bottom:10px;
}

.service-content-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
}

/* META */

.service-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    gap:12px;
}

.service-meta span{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    font-weight:600;
    color:#444;
}

.service-meta i{
    color:#dc5f88;
    font-size:13px;
}

/* BUTTON */

.see-more-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:12px;
    background:#dc5f88;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    cursor:pointer;
    transition:.3s ease;
}

.see-more-btn:hover{
    background:#111;
}

/* MOBILE */

@media(max-width:768px){

    .service-card{
        padding:14px;
        border-radius:16px;
    }

    .service-image{
        height:200px;
        margin-bottom:16px;
    }

    .service-content-card h3{
        font-size:26px;
    }

    .service-content-card p{
        font-size:13px;
    }

    .see-more-btn{
        height:44px;
    }

}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1350px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 1050px) {
  .services-layout {
    grid-template-columns: 260px 1fr;
    gap: 26px;
    padding-inline: 4%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

/* =========================================
   MOBILE SERVICES
========================================= */
@media (max-width: 720px) {

  /* ===============================
     HERO
  =============================== */

  .services-hero {
    padding: 88px 18px 32px;
    text-align: center;
  }

  .services-kicker {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .services-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: .95;
  }

  .services-hero-text {
    max-width: 340px;
    margin: 15px auto 0;
    font-size: 12px;
    line-height: 1.65;
  }

  /* ===============================
     PAGE LAYOUT
  =============================== */

  .services-layout {
    display: block;
    width: 100%;
    padding: 16px 12px 60px;
  }

  .services-side-nav {
    display: none;
  }

  /* ===============================
     MOBILE TABS
  =============================== */

  .mobile-service-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-service-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-service-tabs .service-nav-btn {

    width: auto;
    min-width: max-content;

    padding: 10px 16px;

    border-radius: 999px;

    border: 1px solid rgba(220,95,136,.18);

    background: white;

    font-size: 9px;

    font-weight: 700;

    box-shadow: 0 6px 18px rgba(0,0,0,.05);

    white-space: nowrap;
  }

  .mobile-service-tabs .service-nav-btn.active {

    background: #dc5f88;
    color: white;
    border-color: #dc5f88;

  }

  /* ===============================
     CATEGORY HEADING
  =============================== */

  .service-category-heading {

    text-align: center;

    margin-bottom: 22px;

  }

  .service-category-heading h2 {

    font-size: clamp(36px,11vw,46px);

    line-height: 1;

  }

  .service-category-heading span {

    margin: 14px auto;

  }

  .service-category-heading p:last-child {

    max-width: 330px;

    margin: auto;

    font-size: 11px;

    line-height: 1.6;

  }

  /* ===============================
     GRID
  =============================== */

  .services-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px;

  }

  /* ===============================
     CARD
  =============================== */

  .service-card {

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    border: 1px solid rgba(220,95,136,.12);

    box-shadow:
      0 12px 28px rgba(0,0,0,.06),
      0 2px 8px rgba(0,0,0,.03);

    transition: .25s;

  }

  .service-card:active{

      transform:scale(.985);

  }

  /* ===============================
     IMAGE
  =============================== */

  .service-image{

      position:relative;

      width:100%;

      padding:0;

      overflow:hidden;

      background:#f8d7e3;

      /* TALLER IMAGE */
      aspect-ratio:4 / 5.3;

  }

  .service-image img{

      width:100%;

      height:100%;

      object-fit:cover;

      /* Shows more of the hairstyle */
      object-position:center 16%;

      display:block;

      transition:.35s;

  }

  .service-card:hover .service-image img{

      transform:scale(1.03);

  }

  /* Remove icons */

  .service-image::before,
  .service-image::after,
  .service-icon,
  .card-icon{

      display:none!important;
      content:none!important;

  }

  /* ===============================
     CARD CONTENT
  =============================== */

  .service-content-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 13px 11px 12px;
  }

  .service-content-card h3 {
    margin: 0 0 6px;
    color: #242126;
    font-size: clamp(15px, 4.4vw, 18px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .service-content-card p {
    display: -webkit-box;
    min-height: 31px;
    margin: 0 0 10px;
    overflow: hidden;
    color: #6e676d;
    font-size: 9.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  /* ===============================
     DURATION AND PRICE
  =============================== */

  .service-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px 8px;
    margin-top: auto;
    margin-bottom: 10px;
  }

  .service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2b272a;
    font-size: 8.4px;
    font-weight: 650;
    white-space: nowrap;
  }

  .service-meta i,
  .service-meta svg {
    flex-shrink: 0;
    color: #dc5f88;
    font-size: 9.5px;
  }

  /* ===============================
     SEE MORE BUTTON
  =============================== */

  .see-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    margin-top: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #dc5f88, #ce3f70);
    color: #ffffff;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 7px 16px rgba(220, 95, 136, 0.2);
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .see-more-btn:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(220, 95, 136, 0.18);
  }

  /* ===============================
     SERVICE MODAL
  =============================== */

  .service-modal {
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .service-modal-box {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 430px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 18px;
  }

  .service-modal-image {
    width: 100%;
    min-height: 280px;
    max-height: 390px;
    overflow: hidden;
  }

  .service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .service-modal-content {
    padding: 22px 18px;
  }

  .service-modal-content h2 {
    font-size: 32px;
    line-height: 1;
  }

  .service-modal-content p {
    font-size: 11px;
    line-height: 1.65;
  }
}


/* =========================================
   EXTRA-SMALL MOBILE PHONES
========================================= */

@media (max-width: 380px) {

  .services-hero {
    padding-inline: 14px;
  }

  .services-layout {
    padding-inline: 9px;
  }

  .services-grid {
    gap: 9px;
  }

  .service-card {
    border-radius: 15px;
  }

  .service-image {
    aspect-ratio: 4 / 5.15;
  }

  .service-content-card {
    padding: 10px 9px 10px;
  }

  .service-content-card h3 {
    margin-bottom: 5px;
    font-size: 14.5px;
  }

  .service-content-card p {
    min-height: 29px;
    margin-bottom: 8px;
    font-size: 8.7px;
  }

  .service-meta {
    gap: 5px 7px;
    margin-bottom: 8px;
  }

  .service-meta span {
    font-size: 7.8px;
  }

  .service-meta i,
  .service-meta svg {
    font-size: 9px;
  }

  .see-more-btn {
    height: 31px;
    font-size: 6.8px;
    letter-spacing: 1.1px;
  }
}

/* =========================================
   BRAZILIAN SELECT SECTION
========================================= */

.brazilian-options-wrapper{
  margin: 2rem 0 1.5rem;
  width: 100%;
}

.brazilian-select-group{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brazilian-select-group label{
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.03em;
}

.brazilian-select-group select{
  width: 100%;
  height: 58px;
  border: 1px solid #f1d4de;
  background: #fff7fa;
  border-radius: 14px;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  outline: none;
  transition: 0.3s ease;
  cursor: pointer;
}

.brazilian-select-group select:hover{
  border-color: #d87c9f;
}

.brazilian-select-group select:focus{
  border-color: #d87c9f;
  box-shadow: 0 0 0 4px rgba(216,124,159,0.12);
}

/* ================================
   SERVICE MODAL - CLASSIC CLEAN
================================ */

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(8px);
}

.service-modal.active {
  display: flex;
}

.service-modal-box {
  position: relative;
  width: min(820px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 22px;
  padding: 58px 64px 46px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  animation: serviceModalIn 0.3s ease;
}

@keyframes serviceModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-service-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
}

.modal-content {
  text-align: center;
}

.modal-kicker {
  margin: 0 0 18px;
  color: #e91e63;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.modal-content h2 {
  max-width: 620px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 0.95;
  color: #171717;
}

.modal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px 0 24px;
  color: #e91e63;
}

.modal-divider span {
  width: 52px;
  height: 2px;
  background: #e91e63;
  opacity: 0.65;
}

#modalShortText {
  max-width: 560px;
  margin: 0 auto 34px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.modal-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 38px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.modal-info-grid div {
  min-height: 94px;
  padding: 22px 24px;
  border-right: 1px solid #eee;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 14px;
  text-align: left;
}

.modal-info-grid div:last-child {
  border-right: none;
}

.modal-info-grid i {
  grid-row: span 2;
  color: #e91e63;
  font-size: 26px;
}

.modal-info-grid span {
  color: #555;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.modal-info-grid strong {
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.modal-section {
  text-align: left;
}

.modal-section h3 {
  margin: 0 0 14px;
  color: #171717;
  font-size: 18px;
  font-weight: 800;
}

.modal-section p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.modal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

#modalIncluded {
  margin: 0;
  padding-left: 18px;
}

#modalIncluded li {
  margin-bottom: 10px;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

#modalIncluded li::marker {
  color: #e91e63;
}

.brazilian-options-wrapper {
  margin: 0 0 32px;
  padding: 18px;
  background: #fff4f8;
  border: 1px solid #f3c9d8;
  border-radius: 14px;
  text-align: left;
}

.brazilian-select-group label {
  display: block;
  margin-bottom: 10px;
  color: #e91e63;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brazilian-select-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e7b5c6;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 800;
  outline: none;
}

.modal-actions {
  max-width: 520px;
  margin: 38px auto 0;
}

.modal-book-btn {
  width: 100%;
  min-height: 58px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e91e63, #f35b8f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 14px 28px rgba(233, 30, 99, 0.25);
  transition: 0.25s ease;
}

.modal-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(233, 30, 99, 0.32);
}

/* ================================
   MOBILE - ODOO STYLE
================================ */

@media (max-width: 650px) {
  .service-modal {
    align-items: flex-end;
    padding: 0;
  }

  .service-modal-box {
    width: 100%;
    max-height: 92vh;
    border-radius: 26px 26px 0 0;
    padding: 44px 20px 28px;
  }

  .service-modal-box::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: #d9d9d9;
  }

  .close-service-modal {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .modal-kicker {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .modal-content h2 {
    max-width: 300px;
    font-size: 36px;
    line-height: 1;
  }

  .modal-divider {
    margin: 18px 0 22px;
  }

  #modalShortText {
    max-width: 310px;
    font-size: 14px;
    margin-bottom: 26px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    border: none;
    margin-bottom: 28px;
  }

  .modal-info-grid div {
    min-height: auto;
    border: none;
    border-radius: 14px;
    background: #f8f8f8;
    padding: 16px;
  }

  .modal-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-actions {
    max-width: 100%;
  }

  .modal-book-btn {
    min-height: 56px;
    border-radius: 12px;
    font-size: 12px;
  }
}

/* ================================
   COMPARISON CHART
================================ */
.comparison-section {
  display: block;
  width: 100%;
  padding: 70px 5%;
  background: #fff7fa;
}

.comparison-chart {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f1d4de;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.06);
  overflow: hidden;
}

.comparison-title {
  text-align: center;
  margin-bottom: 28px;
}

.comparison-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  color: #171717;
  line-height: 1.05;
}

.comparison-table-wrap {
  width: 100%;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}

.comparison-table th {
  background: #f2caa8;
  color: #222;
  padding: 16px 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  border: 1px solid #efc7aa;
}

.comparison-table td {
  border: 1px solid #efd3c2;
  padding: 18px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #333;
  vertical-align: middle;
}

.comparison-table td:first-child {
  background: #f2caa8;
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ================================
   TABLET - FULL TABLE STILL FITS
================================ */
@media (max-width: 1024px) {
  .comparison-section {
    padding: 55px 3%;
  }

  .comparison-chart {
    padding: 18px;
    border-radius: 22px;
  }

  .comparison-title h2 {
    font-size: 38px;
  }

  .comparison-table th {
    padding: 12px 7px;
    font-size: 9px;
    line-height: 1.2;
  }

  .comparison-table td {
    padding: 13px 7px;
    font-size: 9px;
    line-height: 1.35;
  }

  .comparison-table td:first-child {
    font-size: 9px;
  }
}

/* ================================
   MOBILE - NO SWIPING, FULL TABLE FITS
================================ */
@media (max-width: 768px) {
  .comparison-section {
    padding: 45px 6px;
  }

  .comparison-chart {
    padding: 6px;
    border-radius: 16px;
  }

  .comparison-title {
    margin-bottom: 16px;
  }

  .comparison-title h2 {
    font-size: 25px;
    line-height: 1.1;
  }

  .comparison-table-wrap {
    overflow: hidden;
  }

  .comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-table th {
    padding: 8px 2px;
    font-size: 6.3px;
    line-height: 1.15;
    word-break: break-word;
  }

  .comparison-table td {
    padding: 10px 2px;
    font-size: 6.2px;
    line-height: 1.28;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .comparison-table td:first-child {
    font-size: 6.2px;
    line-height: 1.15;
    padding: 8px 2px;
  }
}

/* ================================
   SMALL PHONES
================================ */
@media (max-width: 430px) {
  .comparison-section {
    padding: 38px 4px;
  }

  .comparison-chart {
    padding: 4px;
    border-radius: 14px;
  }

  .comparison-title h2 {
    font-size: 22px;
  }

  .comparison-table th {
    padding: 7px 1.5px;
    font-size: 5.4px;
  }

  .comparison-table td {
    padding: 9px 1.5px;
    font-size: 5.4px;
    line-height: 1.25;
  }

  .comparison-table td:first-child {
    font-size: 5.4px;
  }
}
