/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fcfbfa;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --orange: #FA884A;
  --red: #EC4535;
  --grad: linear-gradient(135deg, #FA884A, #EC4535);
  --bg: #fcfbfa;
  --bg2: #f5f4f2;
  --border: #e8e6e3;
  --text: #1a1a1a;
  --muted: #6b7280;
  --blue: #3b82f6;
  --green: #10b981;
  --radius: 16px;
}

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}
.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-sub { color: var(--muted); font-size: 16px; max-width: 560px; margin-bottom: 40px; }

/* ===== BUTTONS ===== */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(250,136,74,0.4);
  white-space: nowrap;
}
.btn-orange:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250,136,74,0.5);
}
.btn-orange.btn-xl { padding: 16px 40px; font-size: 17px; }

.btn-orange-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-orange-outline:hover {
  background: rgba(250,136,74,0.06);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1060px;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  backdrop-filter: blur(24px);
  border: 2px solid #d1d5db; /* BOLDER AND MORE VISIBLE BORDER */
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05); /* STRONGER 3D SHADOW */
  transition: box-shadow .3s, transform .3s;
}
.mobile-only-btn { display: none !important; }
.mobile-only-lang { display: none !important; }
.navbar.scrolled .nav-pill { box-shadow: 0 8px 40px rgba(0,0,0,0.14); }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--text); }
.logo-dots {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  gap: 2px;
}
.logo-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.logo-dots span:nth-child(2),
.logo-dots span:nth-child(4),
.logo-dots span:nth-child(6),
.logo-dots span:nth-child(8) { background: #1a1a1a; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all .2s;
  font-family: inherit;
}
.lang-btn:hover { background: var(--bg2); }
.globe-icon { stroke: #3b82f6; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  min-width: 140px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all .2s;
  z-index: 1000;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  background: none;
  border: none;
  padding: 8px 16px;
  text-align: left;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background .2s;
  font-family: inherit;
  width: 100%;
}
.lang-option:hover { background: var(--bg2); }
.lang-option.active {
  background: var(--bg2);
  font-weight: 600;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 1px 40px;
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero-text { max-width: 560px; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Hero Graphic */
.hero-graphic {
  flex-shrink: 0;
  width: 420px;
}
.link-hub {
  position: relative;
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-center {
  width: 80px; height: 80px;
  background: var(--grad);
  border-radius: 24px;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(250,136,74,0.5);
  position: relative;
}
.hub-orbit {
  position: absolute;
  inset: 0;
}
.app-icon {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  animation: floatCard 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.6s);
}
.app-icon small { font-size: 10px; color: var(--muted); font-weight: 600; }
/* Positions around the center to match screenshot */
.app-icon:nth-child(1) { top: 15%; left: 10%; } /* App Store: Top-Left */
.app-icon:nth-child(2) { top: 10%; right: 20%; } /* Instagram: Top-Right */
.app-icon:nth-child(3) { top: 40%; right: -5%; } /* TikTok: Far-Right */
.app-icon:nth-child(4) { bottom: 15%; right: 10%; } /* Stripe: Bottom-Right */
.app-icon:nth-child(5) { bottom: 5%; left: 50%; transform: translateX(-50%); } /* YouTube: Bottom-Center */
.app-icon:nth-child(6) { bottom: 20%; left: 5%; } /* Google Play: Bottom-Left */

@keyframes floatCard {
  0%,100% { transform: translateY(0) translateX(var(--tx, 0)); }
  50% { transform: translateY(-8px) translateX(var(--tx, 0)); }
}
.app-icon:nth-child(5) { --tx: -50%; }

/* ===== FOR WHOM ===== */
.for-whom { padding: 80px 0; background: var(--bg); }
.whom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.whom-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.whom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.whom-graphic {
  height: 200px;
  background-image: linear-gradient(rgba(236, 69, 53, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(236, 69, 53, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.whom-text {
  padding: 24px;
}
.whom-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.whom-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }



/* ===== FEATURES ===== */
.features { padding: 80px 0; background: var(--bg2); text-align: center; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 48px 0 40px;
  text-align: left;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feat-text {
  padding: 32px 32px 0 32px;
}
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.feat-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.feat-graphic-img {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background-image: linear-gradient(rgba(236, 69, 53, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(236, 69, 53, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center;
}


/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; }
.how-it-works .section-title { text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 40px 32px;
  box-shadow: none;
  transition: transform .3s;
}
.step-card:hover { transform: translateY(-3px); }
.step-num {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--orange); }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== ANALYTICS ===== */
.analytics { padding: 80px 0; background: var(--bg2); }
.analytics-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}
.analytics-text { flex: 1; min-width: 280px; }
.analytics-dashboard { flex: 1.4; min-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-title { font-size: 14px; font-weight: 700; }
.dash-tabs { display: flex; gap: 4px; }
.tab {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
}
.tab.active { background: var(--grad); color: #fff; border-color: transparent; }
.location-list { display: flex; flex-direction: column; gap: 10px; }
.loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.loc-row > span:first-child { min-width: 80px; font-weight: 600; }
.loc-row > span:last-child { min-width: 44px; text-align: right; color: var(--muted); font-size: 12px; }
.loc-bar {
  flex: 1;
  height: 6px;
  background: var(--bg2);
  border-radius: 100px;
  overflow: hidden;
}
.loc-bar div {
  height: 100%;
  background: var(--grad);
  border-radius: 100px;
  transition: width .6s ease;
}
.chart-area { height: 100px; }
.chart-area svg { width: 100%; height: 100%; }

.new-cards-row {
  display: flex;
  gap: 16px;
  width: 100%;
}


/* ===== PRICING ===== */
.pricing { padding: 80px 0; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(250,136,74,0.15), 0 8px 32px rgba(250,136,74,0.12);
}
.plan-top { margin-bottom: 20px; }
.plan-top h3 { font-size: 16px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 10px; }
.price-amt { font-size: 48px; font-weight: 900; line-height: 1; color: var(--text); }
.price-per { font-size: 15px; color: var(--muted); }
.plan-tag { font-size: 13px; color: var(--muted); line-height: 1.6; }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan-feats li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--bg2); }
/* Reviews Marquee */
.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  margin-top: 48px;
  position: relative;
}
.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.reviews-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.reviews-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.reviews-marquee:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform .3s;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); }
.stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.rev-name { font-size: 14px; font-weight: 700; }
.rev-handle { font-size: 12px; color: var(--muted); }

/* ===== FAQ ===== */
.faq { padding: 80px 0; text-align: center; }
.faq-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; text-align: center; }
.faq-list { margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; max-width: 100%; text-align: left; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  font-size: 24px;
  color: var(--muted);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height .4s ease, padding .3s;
  padding: 0 32px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 32px 24px; }

/* ===== FOOTER ===== */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  flex: 1;
}
.footer-nav a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--text); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--text); }
.footer-subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-subscribe input {
  padding: 12px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  min-width: 220px;
  transition: border-color .2s;
}
.footer-subscribe input:focus { border-color: var(--orange); }
.footer-bottom { text-align: center; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 20px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .navbar { top: 12px; width: calc(100% - 24px); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 12px; right: 12px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .nav-links.open .mobile-only-btn {
    display: inline-block !important;
    margin: 20px auto 10px;
    width: 100%;
    text-align: center;
    border-radius: 100px !important;
    color: #fff !important;
  }
  .nav-links.open .mobile-only-lang {
    display: flex !important;
    justify-content: center;
    margin: 10px auto 20px;
    position: relative;
  }
  #langDropdownMobile {
    top: auto;
    bottom: calc(100% + 8px);
    right: auto;
    left: 50%;
    transform: translate(-50%, 5px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }
  .lang-selector.open #langDropdownMobile {
    transform: translate(-50%, 0);
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 10px; font-size: 16px; }
  .hamburger { display: flex; }
  .nav-actions { display: none; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-graphic { width: 100%; max-width: 380px; margin: 0 auto; }
  .link-hub { width: 100%; height: 340px; }
  .analytics-inner { flex-direction: column; }
  .new-cards-row { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -0.5px; }
  .faq-container { padding: 0 16px; }
  .faq-q { min-height: 80px; }
}

/* NEW FOOTER STYLES */
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 40px 40px 40px;
  display: block;
}
.new-footer-brand {
  margin-bottom: 40px;
  width: 100%;
  padding-left: 60px;
}
.new-footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  width: 100%;
}
.new-footer-links-wrapper {
  display: flex;
  gap: 120px;
  padding-left: 60px;
}
.new-footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.new-footer-nav-col a {
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.3s;
}
.new-footer-nav-col a:hover {
  opacity: 0.7;
}
.new-footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 420px;
  padding-right: 20px;
}
.new-footer-input {
  width: 100%;
  height: 66px;
  padding: 0 20px;
  border: 1px solid #2D2D2D;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.new-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 66px;
  border-radius: 11px;
  background: linear-gradient(180deg, #FA884A 0%, #EC4535 100%);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 16px 32px rgba(248,127,71,0.25);
  box-sizing: border-box;
}
.new-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin-top: 40px;
  padding-top: 32px;
  padding-bottom: 24px;
}
.new-footer-bottom p {
  font-size: 18px;
  color: #000;
  margin: 0;
}

/* RESPONSIVE MEDIA QUERIES FOR FOOTER */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px 20px;
  }
  .new-footer-brand {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .new-footer-layout {
    flex-direction: column;
    gap: 40px;
  }
  .new-footer-links-wrapper {
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
  }
  .new-footer-subscribe {
    width: 100%;
    padding-right: 0;
    max-width: 100%;
  }
}
