/* =====================
   GLOBAL
======================== */
:root {
  --red: #E31E24;
  --white: #fff;
  --font: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
}

/* =====================
   HERO SECTION
======================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Gradient: near-opaque black on the left fading to transparent before centre */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #000000 -9%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Logo sits at the very top of the hero */
.hero-logo-wrap {
  margin-bottom: 0;
}

/* Main row (badge → form) fills remaining height and centres content */
.hero-main-row {
  flex: 1;
  display: flex;
  align-items: center;
}

/* =====================
   LOGO
======================== */
.hero-logo {
  display: block;
  width: 187px;
  max-width: 38vw;
  height: auto;
 
}

/* =====================
   BADGE
======================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  height: 34px;
  padding: 0 16px;
  border-radius: 14px;
 background:
  linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.06)
  ),
  rgba(255, 255, 255, 0.10);
  /* Glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Inner stroke simulation */
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);

  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E31E24;
  flex-shrink: 0;
}

/* =====================
   HERO COPY
======================== */
.hero-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(20px, 1.6vw, 23px);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  margin-bottom: 30px;
}

/* =====================
   HERO BULLETS – 2 columns
======================== */
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  max-width: 400px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-bullets li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================
   QUOTE FORM CARD
   bg: rgba(0,0,0,0.37)
======================== */
.quote-card {
  background: rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 26px 26px;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
}

.quote-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.quote-card-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Shared input / select — transparent, bottom border only */
.quote-card .form-control,
.quote-card .form-select {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 0;
  padding: 10px 0;
  height: auto;
  box-shadow: none;
  transition: border-color 0.2s;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
  outline: none;
  color: #fff;
}

.quote-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.60);
  font-weight: 500;
}

/* Select: hide native caret, custom caret via wrapper */
.quote-card .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 26px;
  cursor: pointer;
}

.quote-card .form-select option {
  color: #222;
  background: #fff;
}

/* Wrapper for selects — positions the down.png caret */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url('../images/down.png') center / contain no-repeat;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* =====================
   SUBMIT BUTTON
======================== */
.btn-submit {
  background: #E31E24;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: #c0161b;
  transform: translateY(-1px);
}

.btn-submit img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

/* =====================
   WHAT MAKES KUTCHINA DIFFERENT
======================== */
.diff-section {
  background: #f7f8fa;
  padding: 72px 0 80px;
}

.diff-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.diff-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 26px 24px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s;
}

.diff-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.diff-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 30px;
}

.diff-title {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.35;
}

.diff-desc {
  font-size: 12.5px;
  color: #555;
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
  margin-bottom: 32px;
}

.diff-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EEF4FF;
  border-radius: 20px;
  padding: 5px 12px 5px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1a3a6e;
  width: fit-content;
  margin-top: auto;
}

.diff-tag img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =====================
   FIND YOUR KITCHEN – STEPS
======================== */
.steps-section {
  background: #eef3fa;
  padding: 72px 0 80px;
}

.steps-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

/* Outer wrapper: relative so the connector line can be absolute */
.steps-wrapper {
  position: relative;
}

/* Horizontal connector line centred on the icon boxes.
   Blue for first 75% (steps 1-3), red for last 25% (step 3-4) */
.steps-line {
  position: absolute;
  top: 44px; /* half of icon-box height (88px) */
  left: calc(12.5% + 44px);  /* starts at centre of first icon */
  right: calc(12.5% + 44px); /* ends at centre of last icon */
  height: 2px;
  background: linear-gradient(
    to right,
    #1a6fe8 0%,
    #1a6fe8 74%,
    #E31E24 74%,
    #E31E24 100%
  );
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

/* Number badge + icon box wrapper */
.step-icon-wrap {
  position: relative;
  margin-bottom: 20px;
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d0dff5;
  font-size: 10px;
  font-weight: 700;
  color: #1a6fe8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}

.step-icon-box {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: linear-gradient(140deg, #5ab0f7 0%, #1565c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.25);
}

.step-icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
  max-width: 260px;
}

/* Responsive */
@media (max-width: 767px) {
  .steps-line {
    /* Switch to vertical line on 2-col mobile grid */
    display: none;
  }

  .step-item {
    padding: 0 8px;
    margin-bottom: 36px;
  }

  .step-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .step-icon-box img {
    width: 32px;
    height: 32px;
  }

  .steps-line {
    display: none;
  }
}

/* =====================
   COMPARISON TABLE
======================== */
/* Section */
.compare-section {
  padding: 70px 0;
  background: #fff;
  
}

/* Heading */
.compare-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

/* Table */
.compare-table {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

/* 🔥 SINGLE GRADIENT COLUMN */
.compare-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26%;
  width: 44%;
  height: 100%;
  background: linear-gradient(270deg, #295BA7 0%, #0098FF 100%);
  z-index: 0;
}

/* Rows */
.compare-row {
  display: flex;
}

/* Columns */
.compare-col {
  flex: 1;
  padding: 18px 20px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  line-height: 1.45;
}

/* Left column */
.col-param {
  flex: 0 0 26%;
  background: #ffffff;
  color: #333;
}

/* Right column */
.col-other {
  flex: 0 0 30%;
  background: #ffffff;
  color: #555;
}

/* Middle column */
.col-kutchina {
  flex: 1;
  background: transparent;
  color: #fff;
  font-weight: 500;
}

/* Header */
.compare-header .compare-col {
  font-weight: 600;
  font-size: 15px;
}

/* Dividers */
.compare-row:not(:last-child) .compare-col {
  border-bottom: 1px solid #eaeaea;
}

.compare-row:not(:last-child) .col-kutchina {
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* Tick image */
.compare-tick {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CSS tick (unused — kept for reference) */
.tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.tick::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 4px;
  left: 3px;
}

/* Note */
.compare-note {
  font-size: 12px;
  margin-left: 140px;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .compare-col {
    padding: 12px 12px;
    font-size: 12px;
  }

  .col-kutchina {
    padding-left: 16px;
  }

  .compare-header .col-kutchina {
    font-size: 13px;
  }

  .compare-note {
    display: none;
  }
}

@media (max-width: 480px) {
  .col-param {
    flex: 0 0 24%;
  }

  .col-other {
    flex: 0 0 28%;
  }

  .compare-col {
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .col-kutchina {
    padding-left: 12px;
  }

  .compare-tick {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
}

/* =====================
   TESTIMONIALS SLIDER
======================== */
.testimonials-section {
  background: url('../images/blue-bg.jpeg') center / cover no-repeat;
  padding: 72px 0 80px;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.testimonials-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.testimonials-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.arrow-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.arrow-btn:hover {
  opacity: 0.7;
}

.arrow-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.arrow-btn img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.testimonial-stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.testimonial-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
  margin-bottom: 28px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-city {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 400;
}

@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 575px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-header {
    margin-bottom: 28px;
  }
}

/* =====================
   FAQ SECTION
======================== */
.faq-section {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  text-align: center;
}

.faq-layout {
  display: flex;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  gap: 72px;
}

/* Image column: gradient background block behind the image, offset downward */
.faq-img-col {
  flex: 0 0 46%;
  position: relative;
  padding-right: 80px;
  padding-left: 60px;
  padding-bottom: 80px;
  align-self: flex-start;
}

/* The gradient background starts ~40px below the image top and peeks out right + bottom */
.faq-img-col::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(165deg, #FFFFFF 0%, #F3F8FF 50%, #F3F8FF 100%);
    z-index: 0;
}

.faq-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Accordion column — card-style items */
.faq-accord-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: none;
  justify-content: center;
}

#faqAccordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each FAQ item is its own rounded card */
.faq-item {
  background: #fff;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 10px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  gap: 16px;
  line-height: 1.4;
}

/* SVG icon wrapper */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon img {
  width: 24px;
  height: 24px;
}

/* Open state: show close, hide plus */
.faq-q .icon-plus { display: none; }
.faq-q .icon-close { display: block; }

/* Collapsed state: show plus, hide close */
.faq-q.collapsed .icon-close { display: none; }
.faq-q.collapsed .icon-plus { display: block; }

.faq-ans {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-layout {
    flex-direction: column;
    gap: 24px;
  }

  .faq-img-col {
    flex: none;
    width: 100%;
    padding: 0 0 0 0;
  }

  .faq-img-col::before {
    display: none;
  }

  .faq-img {
    height: 280px;
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .faq-q {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-ans {
    padding: 0 16px 14px;
  }
}

/* =====================
   CTA BANNER
======================== */
.cta-section {
  background: linear-gradient(120deg, #1158b8 0%, #0d90e8 100%);
  padding: 60px 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-left {
  flex: 1;
}

.cta-heading {
  font-size: clamp(22px, 2.6vw, 35px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #7DD6FF;
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.cta-btn-primary {
  display: inline-block;
  background: #E31E24;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 50px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cta-btn-primary:hover {
  opacity: 0.88;
  color: #fff;
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 50px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: border-color 0.2s, opacity 0.2s;
}

.cta-btn-outline:hover {
  border-color: #fff;
  opacity: 0.88;
  color: #fff;
}

@media (max-width: 767px) {
  .cta-section {
    padding-top: 32px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .cta-right {
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* =====================
   RESPONSIVE
======================== */

/* Tablet and below — stack layout, full-width overlay */
@media (max-width: 991px) {
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.60) 100%
    );
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .hero-logo-wrap {
    margin-bottom: 25px;
  }

  .hero-logo {
    width: 140px;
  }

  .hero-badge {
    height: auto;
    padding: 7px 14px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-bullets {
    max-width: 100%;
    gap: 8px 16px;
  }

  .hero-bullets li {
    font-size: 13px;
    white-space: normal;
  }

  .quote-card {
    max-width: 100%;
    margin-left: 0;
    margin-top: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-content {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .hero-logo {
    width: 120px;
  }

  .hero-badge {
    font-size: 11px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .hero-bullets li {
    font-size: 12px;
    gap: 6px;
  }

  .hero-bullets li img {
    width: 15px;
    height: 15px;
  }

  .quote-card {
    padding: 20px 16px 18px;
    border-radius: 10px;
  }

  .quote-card-title {
    font-size: 16px;
  }

  .quote-card-sub {
    font-size: 11px;
  }

  .cta-heading {
    padding-bottom: 20px;
   
}

}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #00549A;
  margin-top: 50px;
  padding: 20px 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  margin: 0;
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-links a {
  font-family: var(--font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}
