:root{--bg:#f6f7f9;--accent:#0b5fff;--muted:#6b7280;--card:#ffffff}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,Arial;background:var(--bg);color:#0b1220}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.v-header{background:#fff;padding:18px 0;border-bottom:1px solid #e6e9ee}
.v-row{display:flex;justify-content:space-between;align-items:center}
.brand{font-weight:700}
.v-nav a{margin-left:12px;text-decoration:none;color:var(--muted);display:inline-block;padding:8px 12px;border-radius:999px;transition:background .18s,color .18s,transform .08s;background:transparent;border:1px solid transparent;font-weight:600}
.v-nav a:hover{background:rgba(11,95,255,0.06);color:var(--accent);transform:translateY(-1px)}
.v-nav a.btn{background:var(--accent);color:#fff;border:0;padding:8px 14px}
.v-hero{padding:48px 0}
.v-hero{padding:0}
.v-hero{width:100%;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}
.v-slider{position:relative;overflow:hidden;border-radius:0}
.slides{display:flex;transition:transform 0.6s ease;will-change:transform}
.slide{min-width:100%;height:clamp(760px,45vh,720px);background-size:cover;background-position:center;display:flex;align-items:center}
.slide-inner{background:linear-gradient(180deg, rgba(11,17,32,0.12) 0%, rgba(11,17,32,0.28) 100%);padding:clamp(20px,4vw,40px);border-radius:10px;max-width:560px;margin-left:clamp(18px,6vw,60px);color:#fff}
.v-hero h2{margin:0 0 8px;font-size:clamp(20px,3.4vw,32px)}
.sub{color:rgba(255,255,255,0.9);margin:8px 0 18px}
.btn{padding:10px 14px;border-radius:8px;text-decoration:none}
.btn.primary{background:var(--accent);color:#fff}

.slider-prev,.slider-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.12);border:0;color:#fff;width:44px;height:44px;border-radius:50%;font-size:26px;cursor:pointer}
.slider-prev{left:12px}
.slider-next{right:12px}
.slider-dots{position:absolute;left:50%;transform:translateX(-50%);bottom:14px;display:flex;gap:8px}
.slider-dots button{width:10px;height:10px;border-radius:50%;border:0;background:rgba(255,255,255,0.45);cursor:pointer}
.slider-dots button.active{background:#fff}
.v-features{padding:28px 0}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.f{background:var(--card);padding:18px;border-radius:8px;text-align:center}
.v-footer{padding:26px 0;color:var(--muted)}
@media(max-width:900px){.slide{height:clamp(260px,38vh,420px)}.slide-inner{margin-left:16px;padding:16px}.v-features .grid{grid-template-columns:repeat(2,1fr)}}

/* =========================
   BRAIDA HEADER
   ========================= */

.site-header {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(212, 166, 76, 0.25);
  position: relative;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

/* LOGO */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 105px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}


/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 8px 0;

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

/* Gold underline on hover */

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    #b8862c,
    #f5d27a,
    #b8862c
  );

  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #e8bd5a;
}

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


/* BUTTONS */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 20px;

  border-radius: 8px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}


/* OUTLINE BUTTON */

.btn-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  color: #e8bd5a;
  border-color: #d4a64c;

  box-shadow:
    0 0 12px rgba(212, 166, 76, 0.18);

  transform: translateY(-2px);
}


/* GOLD BUTTON */

.btn-gold {
  color: #000;

  background: linear-gradient(
    135deg,
    #b8862c 0%,
    #f5d27a 50%,
    #c79535 100%
  );

  border: 1px solid #e5bd62;

  box-shadow:
    0 4px 15px rgba(212, 166, 76, 0.2);
}

.btn-gold:hover {
  color: #000;

  background: linear-gradient(
    135deg,
    #d4a64c 0%,
    #ffe39a 50%,
    #d4a64c 100%
  );

  box-shadow:
    0 6px 22px rgba(212, 166, 76, 0.4);

  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}


/* MOBILE */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .header-inner {
    height: 72px;
  }

  .brand img {
    width: 95px;
    height: 52px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 500px) {

  .btn-outline {
    display: none;
  }

  .btn-gold {
    min-height: 40px;
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }
}

/* =========================
   BRAIDA HERO
   ========================= */

.v-hero {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.v-slider {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  color: #fff;
}


/* DARK OVERLAY
   Keeps text readable while
   allowing the photography to show */

.slide-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.18) 100%
    );

  z-index: 1;
}


/* CONTENT */

.slide-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 60px 24px;

  text-align: left;
}


/* GOLD EYEBROW */

.hero-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #e5bd62;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* HEADING */

.slide-inner h2 {
  max-width: 720px;

  margin: 0 0 22px;

  color: #fff;

  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.5px;
}


/* DESCRIPTION */

.slide-inner .sub {
  max-width: 620px;

  margin: 0 0 32px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 18px;
  line-height: 1.65;
}


/* =========================
   HERO BUTTON
   Matches header button
   ========================= */

.v-hero .btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 0 26px;

  color: #000;
  background: linear-gradient(
    135deg,
    #b8862c 0%,
    #f5d27a 50%,
    #c79535 100%
  );

  border: 1px solid #e5bd62;
  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  box-shadow:
    0 5px 18px rgba(212, 166, 76, 0.22);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.v-hero .btn.primary:hover {
  background: linear-gradient(
    135deg,
    #d4a64c 0%,
    #ffe39a 50%,
    #d4a64c 100%
  );

  box-shadow:
    0 8px 28px rgba(212, 166, 76, 0.42);

  transform: translateY(-2px);
}


/* =========================
   SLIDER ARROWS
   ========================= */

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: rgba(0, 0, 0, 0.45);

  border: 1px solid rgba(229, 189, 98, 0.45);
  border-radius: 50%;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-prev:hover,
.slider-next:hover {
  color: #000;

  background: linear-gradient(
    135deg,
    #b8862c,
    #f5d27a,
    #c79535
  );

  border-color: #f5d27a;

  box-shadow:
    0 0 20px rgba(212, 166, 76, 0.35);
}


/* =========================
   SLIDER DOTS
   ========================= */

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 9px;

  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;

  padding: 0;

  background: rgba(255, 255, 255, 0.45);

  border: none;
  border-radius: 50%;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.slider-dots button:hover {
  background: #e5bd62;
}

.slider-dots button.active {
  width: 28px;

  background: linear-gradient(
    90deg,
    #b8862c,
    #f5d27a
  );

  border-radius: 10px;

  box-shadow:
    0 0 10px rgba(212, 166, 76, 0.35);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

  .v-slider {
    height: 620px;
  }

  .slide-inner {
    padding: 40px 24px;
  }

  .slide-inner h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .slide-inner .sub {
    font-size: 16px;
    line-height: 1.55;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;

    font-size: 24px;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }
}


@media (max-width: 500px) {

  .v-slider {
    height: 600px;
  }

  .slide-inner {
    padding: 30px 20px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .slide-inner h2 {
    font-size: 36px;
  }

  .slide-inner .sub {
    font-size: 15px;
  }

  .v-hero .btn.primary {
    width: 100%;
  }
}

 .brand img {
    width: 140px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    display: block;
 }

.v-features {
    padding: 90px 20px;
  }

  .v-features-header {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
  }

  .v-features-header .eyebrow {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
  }

  .v-features-header h2 {
    margin: 0 0 15px;
    font-size: 40px;
  }

  .v-features-header p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }

  .v-features .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .v-features .f {
    padding: 32px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .v-features .f:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  .f-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 700;
  }

  .v-features .f h3 {
    margin: 0 0 10px;
    font-size: 22px;
  }

  .v-features .f p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .v-features .grid {
      grid-template-columns: 1fr;
    }

    .v-features-header h2 {
      font-size: 32px;
    }
  }

.process-section {
    padding: 80px 20px;
    background: #fff;
  }

  .process-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .process-container h2 {
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 700;
  }

  .process-tagline {
    margin: 0 0 45px;
    font-size: 20px;
    color: #777;
  }

  .process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .process-card {
    padding: 35px 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .process-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
  }

  .process-number {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
  }

  .process-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
  }

  .process-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
  }

  @media (max-width: 768px) {
    .process-cards {
      grid-template-columns: 1fr;
    }

    .process-container h2 {
      font-size: 34px;
    }
  }

  /* =========================
   BRAIDA CTA
   ========================= */

.braida-cta {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(212, 166, 76, 0.12),
      transparent 45%
    ),
    #000;

  color: #fff;

  border-top: 1px solid rgba(212, 166, 76, 0.2);
}


/* SUBTLE GOLD GLOW */

.braida-cta::before {
  content: "";

  position: absolute;
  top: -180px;
  left: 50%;

  width: 500px;
  height: 500px;

  background: rgba(212, 166, 76, 0.08);

  border-radius: 50%;

  filter: blur(100px);

  transform: translateX(-50%);

  pointer-events: none;
}


/* CONTENT */

.cta-inner {
  position: relative;
  z-index: 1;

  max-width: 760px;
  margin: 0 auto;

  text-align: center;
}


/* EYEBROW */

.cta-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #e5bd62;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;
}


/* HEADING */

.cta-inner h2 {
  margin: 0 0 22px;

  color: #fff;

  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -1.5px;
}


/* DESCRIPTION */

.cta-inner p {
  max-width: 620px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.65;
}


/* BUTTON CONTAINER */

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 14px;
}


/* BUTTON BASE */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 28px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}


/* GOLD BUTTON */

.cta-btn-gold {
  color: #000;

  background: linear-gradient(
    135deg,
    #b8862c 0%,
    #f5d27a 50%,
    #c79535 100%
  );

  border: 1px solid #e5bd62;

  box-shadow:
    0 5px 20px rgba(212, 166, 76, 0.22);
}

.cta-btn-gold:hover {
  background: linear-gradient(
    135deg,
    #d4a64c 0%,
    #ffe39a 50%,
    #d4a64c 100%
  );

  box-shadow:
    0 8px 30px rgba(212, 166, 76, 0.42);

  transform: translateY(-3px);
}


/* OUTLINE BUTTON */

.cta-btn-outline {
  color: #fff;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-outline:hover {
  color: #e5bd62;

  border-color: #d4a64c;

  box-shadow:
    0 0 18px rgba(212, 166, 76, 0.15);

  transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 600px) {

  .braida-cta {
    padding: 80px 20px;
  }

  .cta-inner h2 {
    font-size: 42px;
  }

  .cta-inner p {
    font-size: 16px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
  }
}


/* =========================================================
   BRAIDA — ABOUT US PAGE
   Complete stylesheet
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.about-page {
  width: 100%;
  overflow: hidden;

  background: #fff;
  color: #111;
}

.about-page * {
  box-sizing: border-box;
}

.about-container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */

.section-eyebrow,
.hero-eyebrow {
  display: block;

  margin-bottom: 12px;

  color: #a87922;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 700px;

  margin: 0 auto 45px;

  text-align: center;
}

.section-heading h2 {
  margin: 0 0 14px;

  color: #111;

  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.1;

  font-weight: 700;
}

.section-heading p {
  margin: 0 auto;

  max-width: 650px;

  color: #666;

  font-size: 17px;
  line-height: 1.65;
}


/* =========================================================
   BUTTONS
   Matches your black / gold header
   ========================================================= */

.about-page .btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 26px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}


/* GOLD BUTTON */

.about-page .btn-gold {
  color: #000;

  background:
    linear-gradient(
      135deg,
      #b8862c 0%,
      #f5d27a 50%,
      #c79535 100%
    );

  border: 1px solid #e5bd62;

  box-shadow:
    0 5px 18px rgba(212, 166, 76, 0.2);
}

.about-page .btn-gold:hover {
  color: #000;

  background:
    linear-gradient(
      135deg,
      #d4a64c 0%,
      #ffe39a 50%,
      #d4a64c 100%
    );

  box-shadow:
    0 8px 25px rgba(212, 166, 76, 0.35);

  transform: translateY(-2px);
}


/* OUTLINE BUTTON */

.about-page .btn-outline {
  color: #111;

  background: #fff;

  border: 1px solid #ccc;
}

.about-page .btn-outline:hover {
  color: #a87922;

  border-color: #c79535;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.08);

  transform: translateY(-2px);
}


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #fff;

  background: #000;
}

.about-hero-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 45%,
      rgba(0, 0, 0, 0.2) 100%
    );
}

.about-hero-content {
  position: relative;

  z-index: 2;

  width: min(1100px, calc(100% - 40px));

  margin: 0 auto;

  padding: 100px 0;
}

.about-hero .hero-eyebrow {
  color: #e5bd62;
}

.about-hero h1 {
  max-width: 750px;

  margin: 0 0 25px;

  color: #fff;

  font-size: clamp(48px, 7vw, 78px);

  line-height: 0.98;

  letter-spacing: -2px;
}

.about-hero-content p {
  max-width: 620px;

  margin: 0 0 32px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 18px;
  line-height: 1.65;
}

.about-hero-actions {
  display: flex;

  align-items: center;

  gap: 14px;
}


/* Hero outline button needs dark styling */

.about-hero .btn-outline {
  color: #fff;

  background: rgba(0, 0, 0, 0.2);

  border-color: rgba(255, 255, 255, 0.55);
}

.about-hero .btn-outline:hover {
  color: #e5bd62;

  border-color: #d4a64c;

  background: rgba(0, 0, 0, 0.4);
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.about-intro {
  padding: 90px 20px;

  background: #fff;

  text-align: center;
}

.about-intro .about-container {
  max-width: 800px;
}

.about-intro h2 {
  margin: 0 0 25px;

  color: #111;

  font-size: clamp(36px, 5vw, 52px);

  line-height: 1.08;

  letter-spacing: -1px;
}

.about-intro p {
  max-width: 720px;

  margin: 0 auto 16px;

  color: #666;

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   WHY BRAIDA
   ========================================================= */

.why-braida {
  padding: 90px 20px;

  background: #fafafa;

  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}


/* =========================================================
   BENEFIT CARDS
   Based directly on your process-card styling
   ========================================================= */

.benefit-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.benefit-card {
  padding: 35px 30px;

  background: #fff;

  border: 1px solid #eee;

  border-radius: 16px;

  text-align: left;

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}


/* EXACT STYLE DIRECTION FROM PROCESS CARDS */

.benefit-card:hover {
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15);

  transform: translateY(-5px);

  border-color: #e4d3ae;
}


/* Benefit icon */

.benefit-icon {
  width: 44px;
  height: 44px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  color: #000;

  background:
    linear-gradient(
      135deg,
      #b8862c,
      #f5d27a,
      #c79535
    );

  border-radius: 50%;

  font-size: 17px;
  font-weight: 700;
}

.benefit-card h3 {
  margin: 0 0 12px;

  color: #111;

  font-size: 23px;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;

  color: #666;

  font-size: 16px;

  line-height: 1.6;
}


/* ==========================================
   FOR BRAIDERS SECTION
========================================== */

.for-braiders {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 650px;
    width: 100%;

    padding: 80px 8%;

    background-image: url("assets/images/for-braiders-bg.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    overflow: hidden;
}

/* Optional white overlay for better readability */
.for-braiders::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.88) 35%,
        rgba(255,255,255,0.25) 65%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
}

.braider-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;
}

/* ==========================================
   EYEBROW
========================================== */

.section-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #B8860B;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   HEADING
========================================== */

.braider-content h2 {
    margin: 0 0 35px;

    color: #111;

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
}

/* ==========================================
   PARAGRAPHS
========================================== */

.braider-content p {
    margin-bottom: 18px;

    color: #666;

    font-size: 18px;
    line-height: 1.8;

    max-width: 560px;
}

/* ==========================================
   BUTTON
========================================== */

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;

    padding: 16px 34px;

    background: linear-gradient(
        135deg,
        #F3D56D,
        #D6A437
    );

    color: #111;
    text-decoration: none;

    font-weight: 600;
    font-size: 16px;

    border-radius: 10px;

    transition: all .3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(214,164,55,.35);
}

/* ==========================================
   LARGE DESKTOPS
========================================== */

@media (min-width: 1400px) {

    .for-braiders {
        padding-left: 12%;
        padding-right: 12%;
    }

    .braider-content {
        max-width: 650px;
    }

}

/* ==========================================
   TABLETS
========================================== */

@media (max-width: 992px) {

    .for-braiders {

        min-height: auto;

        padding: 70px 6%;

        background-position: 80% center;
    }

    .braider-content {
        max-width: 580px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .for-braiders {

        padding: 60px 30px;

        background-position: center right;
    }

    .braider-content {

        max-width: 100%;
    }

    .braider-content h2 {

        font-size: clamp(34px, 9vw, 48px);

        line-height: 1.1;
    }

    .braider-content p {

        font-size: 16px;

        line-height: 1.7;
    }

    .btn-gold {

        width: fit-content;

        padding: 15px 30px;
    }

}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .for-braiders {

        padding: 50px 20px;

        min-height: auto;
    }

    .section-eyebrow {

        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .braider-content h2 {

        margin-bottom: 25px;

        font-size: 34px;
    }

    .braider-content p {

        font-size: 15px;
    }

    .btn-gold {

        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   FEATURED STYLES
   ========================================================= */

.featured-styles {
  padding: 90px 20px;

  background: #fafafa;

  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}


/* Style links */

.style-links {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

  max-width: 950px;

  margin: 0 auto;
}

.style-link {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 22px 24px;

  color: #111;

  background: #fff;

  border: 1px solid #eee;

  border-radius: 12px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}


/* Same hover treatment as process cards */

.style-link:hover {
  color: #a87922;

  border-color: #e4d3ae;

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12);

  transform: translateY(-4px);
}

.style-link span:last-child {
  color: #b8862c;

  font-size: 20px;

  transition:
    transform 0.3s ease;
}

.style-link:hover span:last-child {
  transform: translateX(5px);
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.about-final-cta {
  position: relative;

  overflow: hidden;

  padding: 100px 20px;

  background: #000;

  color: #fff;

  text-align: center;
}

.cta-glow {
  position: absolute;

  top: -250px;
  left: 50%;

  width: 600px;
  height: 600px;

  background: rgba(212, 166, 76, 0.08);

  border-radius: 50%;

  filter: blur(120px);

  transform: translateX(-50%);

  pointer-events: none;
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 780px;

  margin: 0 auto;
}

.cta-content .section-eyebrow {
  color: #e5bd62;
}

.cta-content h2 {
  margin: 0 0 22px;

  color: #fff;

  font-size: clamp(42px, 6vw, 65px);

  line-height: 1;

  letter-spacing: -1.5px;
}

.cta-content p {
  max-width: 650px;

  margin: 0 auto 35px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;

  line-height: 1.65;
}

.cta-actions {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;
}


/* CTA outline button */

.about-final-cta .btn-outline {
  color: #fff;

  background: transparent;

  border-color: rgba(255, 255, 255, 0.45);
}

.about-final-cta .btn-outline:hover {
  color: #e5bd62;

  border-color: #d4a64c;

  box-shadow:
    0 0 20px rgba(212, 166, 76, 0.15);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

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

  .for-braiders {
    grid-template-columns: 1fr;
  }

  .braider-content {
    padding: 80px 40px;
  }

  .braider-image {
    min-height: 450px;
  }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-container {
    width: min(100% - 32px, 1100px);
  }

  .about-hero {
    min-height: 600px;
  }

  .about-hero-content {
    width: calc(100% - 32px);

    padding: 70px 0;
  }

  .about-hero h1 {
    font-size: 48px;

    letter-spacing: -1px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .about-hero-actions {
    flex-direction: column;

    align-items: stretch;

    max-width: 320px;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

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

  .style-links {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .why-braida,
  .featured-styles {
    padding: 75px 16px;
  }

  .braider-content {
    padding: 70px 24px;
  }

  .braider-image {
    min-height: 400px;
  }

  .about-final-cta {
    padding: 80px 20px;
  }

  .cta-actions {
    flex-direction: column;

    align-items: stretch;

    max-width: 320px;

    margin: 0 auto;
  }

  .cta-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .about-hero h1 {
    font-size: 42px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .about-intro h2 {
    font-size: 36px;
  }

  .benefit-card {
    padding: 30px 25px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }

  .braider-content h2 {
    font-size: 40px;
  }

  .cta-content h2 {
    font-size: 42px;
  }
}
/* Keep header actions aligned when page-specific button styles are loaded. */
.header-actions .btn-gold {
  min-height: 42px;
  margin-top: 0;
  padding: 0 20px;
}

/* Shared sticky, translucent site navigation. */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Home feature section uses the About-page Why Braida design system. */
.v-features.container {
  max-width: none;
  padding: 90px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.v-features .v-features-header,
.v-features .grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.v-features .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.v-features .f {
  padding: 35px 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: left;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.v-features .f:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
  transform: translateY(-5px);
  border-color: #e4d3ae;
}
.v-features .f-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8862c, #f5d27a, #c79535);
  color: #000;
  font-size: 17px;
  font-weight: 700;
}
.v-features .f h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 23px;
  line-height: 1.2;
}
.v-features .f p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .v-features .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v-features.container { padding: 75px 16px; }
  .v-features .grid { grid-template-columns: 1fr; }
  .v-features .f { padding: 30px 25px; }
}

/* Home process section uses the About-page Why Braida design system. */
.process-section {
  padding: 90px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.process-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.process-card {
  padding: 35px 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  text-align: left;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.process-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
  transform: translateY(-5px);
  border-color: #e4d3ae;
}
.process-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8862c, #f5d27a, #c79535);
  color: #000;
  font-size: 17px;
  font-weight: 700;
}
.process-card h3 {
  margin: 0 0 12px;
  color: #111;
  font-size: 23px;
  line-height: 1.2;
}
.process-card p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-section { padding: 75px 16px; }
  .process-cards { grid-template-columns: 1fr; }
  .process-card { padding: 30px 25px; }
}

/* About introduction: left-aligned Braiders artwork. */
.about-intro {
  background-color: #fff;
  background-image: linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.82) 42%, #fff 68%), url("/assets/braida_website/images/for-braiders-left-bg.png");
  background-position: left center;
  background-size: auto 100%, auto 100%;
  background-repeat: no-repeat;
}
.about-intro .about-container {
  margin-left: min(50%, 48vw);
}
@media (max-width: 900px) {
  .about-intro { background-position: left bottom; background-size: auto 58%, auto 58%; }
  .about-intro .about-container { margin-left: auto; }
}

/* Centre the About intro copy while retaining the left artwork. */
.about-intro .about-container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Align the two hero CTAs on the For Clients page. */
.clients-page .about-hero-actions .btn-gold {
  margin-top: 0;
}
.clients-page .about-hero-actions .btn {
  min-height: 50px;
}

/* Keep For Clients final CTA buttons level. */
.clients-page .about-final-cta .cta-actions .btn {
  min-height: 50px;
  margin-top: 0;
}
.clients-page .about-final-cta .cta-actions .btn-gold {
  margin-top: 0;
}

/* Shared light/dark theme toggle. */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 600 13px/1 Inter, system-ui, sans-serif;
}
.theme-toggle:hover { border-color: #e5bd62; color: #e5bd62; }
.theme-toggle-icon { font-size: 17px; line-height: 1; }
body.dark-mode { background: #111; color: #f5f5f5; }
body.dark-mode .v-features.container,
body.dark-mode .process-section,
body.dark-mode .why-braida,
body.dark-mode .clients-benefits { background: #171717; border-color: #303030; }
body.dark-mode .about-intro,
body.dark-mode .clients-intro { background-color: #151515; }
body.dark-mode .about-intro .about-container,
body.dark-mode .clients-intro .about-container { color: #f5f5f5; }
body.dark-mode .v-features .f,
body.dark-mode .process-card,
body.dark-mode .benefit-card { background: #202020; border-color: #393939; }
body.dark-mode .v-features .f h3,
body.dark-mode .process-card h3,
body.dark-mode .benefit-card h3,
body.dark-mode .about-intro h2,
body.dark-mode .clients-intro h2,
body.dark-mode .section-heading h2 { color: #fff; }
body.dark-mode .v-features .f p,
body.dark-mode .process-card p,
body.dark-mode .benefit-card p,
body.dark-mode .about-intro p,
body.dark-mode .clients-intro p,
body.dark-mode .section-heading p { color: #c9c9c9; }
body.dark-mode .v-footer { background: #111; color: #bdbdbd; }
@media (max-width: 900px) { .theme-toggle { margin-left: auto; } }

/* Icon theme switch: gold active state, subdued alternate mode. */
.theme-toggle {
  width: 82px;
  min-height: 42px;
  padding: 4px;
  border-color: rgba(229, 189, 98, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}
.theme-toggle-track {
  position: relative;
  display: flex;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: space-between;
}
.theme-toggle-track::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d27a, #b8862c);
  box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
  content: "";
  transition: transform .28s ease;
}
.theme-toggle img {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin: 0 8px;
  opacity: .52;
  filter: invert(1);
  transition: opacity .28s ease, filter .28s ease, transform .28s ease;
}
.theme-toggle[data-theme="light"] .theme-toggle-sun,
.theme-toggle[data-theme="dark"] .theme-toggle-moon {
  opacity: 1;
  filter: none;
}
.theme-toggle[data-theme="dark"] .theme-toggle-track::before { transform: translateX(42px); }
.theme-toggle:hover { border-color: #f5d27a; background: rgba(212, 166, 76, .14); }
body.dark-mode .theme-toggle { background: rgba(255, 255, 255, .1); }

/* Single-icon theme control. */
.theme-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5d27a, #b8862c);
  border: 1px solid #e5bd62;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .26);
}
.theme-toggle-track {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.theme-toggle-track::before { display: none; }
.theme-toggle .theme-toggle-image {
  width: 18px;
  height: 18px;
  margin: 0;
  opacity: 1;
  filter: none;
  transition: transform .2s ease;
}
.theme-toggle:hover { background: linear-gradient(135deg, #ffe39a, #d4a64c); }
.theme-toggle:hover .theme-toggle-image { transform: rotate(15deg) scale(1.08); }
.theme-toggle:focus-visible { outline: 3px solid rgba(245, 210, 122, .65); outline-offset: 3px; }
body.dark-mode .theme-toggle { background: #f3f3f3; border-color: #fff; }
body.dark-mode .theme-toggle .theme-toggle-image { filter: invert(1); }

/* Compact desktop navigation with the theme control at the far right. */
.header-inner { gap: 16px; }
.main-nav { gap: 16px; }
.main-nav a { font-size: 12px; letter-spacing: 0; white-space: nowrap; }
.header-actions { gap: 8px; }
.header-actions .btn { padding: 0 14px; font-size: 12px; white-space: nowrap; }
.header-actions + .theme-toggle { margin-left: 0; }
body.dark-mode .theme-toggle .theme-toggle-image { filter: none; }
@media (max-width: 1100px) and (min-width: 901px) {
  .header-inner { padding: 0 16px; gap: 10px; }
  .main-nav { gap: 10px; }
  .main-nav a { font-size: 11px; }
  .header-actions .btn { padding: 0 10px; font-size: 11px; }
}

/* Mobile navigation menu. */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(229, 189, 98, .55);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #f5d27a;
  transition: transform .2s ease, opacity .2s ease;
}
@media (max-width: 900px) {
  .header-inner { position: relative; }
  .mobile-menu-toggle { display: block; margin-left: auto; }
  .main-nav.is-open {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(229, 189, 98, .34);
    border-radius: 0 0 12px 12px;
    background: rgba(9, 9, 9, .97);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .32);
  }
  .main-nav.is-open a { padding: 12px 10px; font-size: 14px; }
  .main-nav.is-open a::after { display: none; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
@media (max-width: 480px) { .theme-toggle { width: 38px; min-width: 38px; height: 38px; min-height: 38px; } .mobile-menu-toggle { width: 38px; height: 38px; } }

/* Use the same compact menu layout on tablets. */
@media (max-width: 1100px) {
  .header-inner { position: relative; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .main-nav.is-open {
    position: absolute;
    top: calc(100% - 1px);
    left: 16px;
    right: 16px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(229, 189, 98, .34);
    border-radius: 0 0 12px 12px;
    background: rgba(9, 9, 9, .97);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .32);
  }
  .main-nav.is-open a { padding: 12px 10px; font-size: 14px; }
  .main-nav.is-open a::after { display: none; }
}

/* Keep tablet header actions together beside the hamburger. */
@media (max-width: 1100px) {
  .header-inner { justify-content: flex-start; gap: 8px; }
  .header-actions { display: flex; margin-left: auto; gap: 8px; }
  .header-actions .btn { min-height: 40px; padding: 0 12px; font-size: 12px; }
  .header-actions + .theme-toggle { margin-left: 0; }
  .mobile-menu-toggle { margin-left: 0; flex: 0 0 auto; }
}
@media (max-width: 600px) {
  .header-actions .btn { padding: 0 10px; font-size: 11px; }
}

/* Hamburger interaction feedback. */
.mobile-menu-toggle:hover {
  border-color: #f5d27a;
  background: rgba(212, 166, 76, .16);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .24);
  transform: translateY(-1px);
}
.mobile-menu-toggle:hover span { background: #fff1bd; }
.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(245, 210, 122, .65);
  outline-offset: 3px;
}

/* FAQ accordion. */
.faq-accordion { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid #eee; border-radius: 12px; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item[open] { border-color: #e4d3ae; box-shadow: 0 10px 26px rgba(0,0,0,.08); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; color: #111; cursor: pointer; font-size: 18px; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; content: "+"; color: #a87922; font-size: 28px; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 24px; color: #666; font-size: 16px; line-height: 1.65; }
body.dark-mode .faq-item { background: #202020; border-color: #393939; }
body.dark-mode .faq-item[open] { border-color: #b8862c; }
body.dark-mode .faq-item summary { color: #fff; }
body.dark-mode .faq-item p { color: #c9c9c9; }
@media (max-width: 600px) { .faq-item summary { padding: 18px; font-size: 16px; } .faq-item p { padding: 0 18px 18px; } }

/* Keep shared header and final CTA actions level on every page. */
.header-actions .btn {
  min-height: 42px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-final-cta .cta-actions .btn {
  min-height: 50px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .about-final-cta .cta-actions .btn { min-height: 48px; }
}

/* Keep About-style hero CTAs aligned on all pages. */
.about-hero-actions .btn {
  min-height: 50px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .about-hero-actions .btn { min-height: 48px; }
}