/* ============================================================
   FINDLY – Find My Coach  |  style.css
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap");

/* ---------- Custom Properties ---------- */
:root {
  --brand-orange: #F37021;
  --brand-orange-hover: #e05e10;
  --brand-dark: #1A1A1A;
  --brand-dark2: #111111;
  --brand-white: #FFFFFF;
  --brand-off-white: #F5F5F5;
  --brand-grey: #888888;
  --brand-grey-lt: #C4C4C4;
  --brand-section-dark: #141414;
  --brand-card-dark: #252525;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-height: 94px;
  --section-pad-v: 90px;
  --container-max: 1700px;
  --container-pad: 0px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-btn: 0 4px 20px rgba(243, 112, 33, 0.45);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--brand-white);
  background: var(--brand-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand-orange);
  border: 1px solid rgba(243, 112, 33, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  margin-bottom: 24px;
}

.text-orange {
  color: var(--brand-orange);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-orange);
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243, 112, 33, 0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--brand-orange);
  color: var(--brand-white);
  transform: translateY(-2px);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--brand-dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* Announcement bar CSS removed */

/* Navbar – transparent full-width with top spacing, centered white card */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: transparent;
  padding: 24px clamp(16px, 3.5vw, 50px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  padding-top: 12px;
  padding-bottom: 8px;
}

.navbar.scrolled .nav-wrapper {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Navbar wrapper – 98px height matching Figma design 100% */
.nav-wrapper {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 125px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

.nav-logo img {
  height: 90px;
  width: auto;
}

/* Fallback logo wordmark (when no image) */
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--brand-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #2C3340;
}

.logo-wordmark span {
  color: var(--brand-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 48px;
}

.nav-links a {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1e1e1e;
  transition: color var(--transition);
  position: relative;
  font-family: var(--font-heading);
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-orange);
}

.nav-cta {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  height: 50px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px var(--container-pad) 32px;
  z-index: 998;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--brand-orange);
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brand-dark2);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.5);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.15) 100%);
}

.hero .container {
  padding-left: clamp(24px, 3.5vw, 40px);
  padding-right: clamp(24px, 3.5vw, 40px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 100vh;
  padding: 165px 0 60px;
  width: 100%;
}

/* Hero left */
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6.5vw, 6.8rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s 0.35s ease forwards;
}

.hero-title .highlight {
  color: var(--brand-orange);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.65s ease forwards;
}

/* NOTIFY ME button – matches Figma (orange with bell) */
.btn-notify {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand-orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-btn);
}

.btn-notify:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243, 112, 33, 0.55);
}

/* Download label + app badges */
.hero-download-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s ease forwards;
}

.hero-apps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s 0.9s ease forwards;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  transition: all var(--transition);
}

.store-badge:hover {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-text .small {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
}

.store-badge-text .large {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

/* ────────────────────────────────
   HERO RIGHT – Hexagon Grid
   (matches Figma: white hexagonal
   tiles on dark overlay with
   COMPREHENSIVE COACHING 40+ text)
──────────────────────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-hex-wrap {
  position: relative;
  width: 540px;
  height: 540px;
  opacity: 0;
  animation: fadeIn 0.9s 0.5s ease forwards;
}

/* True hexagon shape matching Figma white badges */
.hexagon {
  position: absolute;
  width: 54px;
  height: 54px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  z-index: 3;
}

.hexagon:hover {
  transform: scale(1.15);
  background: #ffffff;
  filter: drop-shadow(0 6px 16px rgba(243, 112, 33, 0.5));
}

.hexagon svg {
  width: 26px;
  height: 26px;
  fill: var(--brand-orange);
}

/* Hexagon positions mathematically aligned on Ring 1 (350px) and Ring 2 (490px) */
.hex-1 {
  top: 68px;
  left: 243px;
  animation: floatItem 3.2s 0.0s ease-in-out infinite;
}

.hex-2 {
  top: 155px;
  left: 394px;
  animation: floatItem 3.0s 0.3s ease-in-out infinite;
}

.hex-3 {
  top: 330px;
  left: 394px;
  animation: floatItem 3.4s 0.6s ease-in-out infinite;
}

.hex-4 {
  top: 418px;
  left: 243px;
  animation: floatItem 3.1s 0.9s ease-in-out infinite;
}

.hex-5 {
  top: 330px;
  left: 91px;
  animation: floatItem 3.5s 1.2s ease-in-out infinite;
}

.hex-6 {
  top: 155px;
  left: 91px;
  animation: floatItem 2.9s 1.5s ease-in-out infinite;
}

.hex-7 {
  top: 31px;
  left: 365px;
  animation: floatItem 3.3s 1.8s ease-in-out infinite;
}

.hex-8 {
  top: 243px;
  left: 488px;
  animation: floatItem 3.0s 2.1s ease-in-out infinite;
}

.hex-9 {
  top: 455px;
  left: 365px;
  animation: floatItem 3.6s 2.4s ease-in-out infinite;
}

.hex-10 {
  top: 455px;
  left: 120px;
  animation: floatItem 3.2s 2.7s ease-in-out infinite;
}

.hex-11 {
  top: 243px;
  left: -2px;
  animation: floatItem 3.1s 1.1s ease-in-out infinite;
}

.hex-12 {
  top: 31px;
  left: 120px;
  animation: floatItem 3.3s 1.7s ease-in-out infinite;
}

.hex-13 {
  top: -2px;
  left: 243px;
  animation: floatItem 2.8s 2.3s ease-in-out infinite;
}

/* Center stat text – no box, just text overlay */
.hero-hex-stat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
}

.hero-hex-stat .stat-label {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-hex-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  text-shadow: 0 0 30px rgba(243, 112, 33, 0.6);
}

/* Circle ring behind hex cluster matching Figma orbits */
.hero-hex-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  z-index: 1;
}

.hero-hex-ring2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  z-index: 1;
}

.hero-stat-cluster {
  opacity: 0;
  animation: fadeIn 0.9s 0.6s ease forwards;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.hero-scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ABOUT */
.about-section {
  background: #ffffff;
  color: var(--brand-dark);
  padding: 80px 0;
}

.about-top-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFF4ED;
  border: 1px solid rgba(243, 112, 33, 0.25);
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F37021;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  background: #111;
  height: 380px;
  width: 100%;
}

.about-video,
.about-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover .about-video,
.about-image-wrap:hover img {
  transform: scale(1.03);
}

.video-play-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
  border: none;
  cursor: pointer;
}

.video-play-badge:hover {
  transform: scale(1.12);
  background: #F37021;
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.5);
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: #1A1A1A;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.about-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: #ffffff;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(243, 112, 33, 0.09);
  border-color: rgba(243, 112, 33, 0.3);
}

.about-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 112, 33, 0.08);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1A1A1A;
  margin: 0;
}

.about-card-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666666;
  margin: 0 0 15px;
}

/* FEATURES SECTION - Figma Exact Match */
.features-section {
  background: #0E0F12;
  color: #ffffff;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 90px;
}

.features-top-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 112, 33, 0.12);
  border: 1px solid rgba(243, 112, 33, 0.35);
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #F37021;
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.features-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
}

.features-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9CA3AF;
  margin: 0;
  max-width: 580px;
}

/* Central Diagram Hub & Cards Grid */
.features-diagram-wrap {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.features-orbit-ring.ring-1 {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.features-orbit-ring.ring-2 {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.features-orbit-ring.ring-3 {
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.features-orbit-ring.ring-4 {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.features-center-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hub-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-logo-box:hover {
  transform: scale(1.04);
  border-color: rgba(243, 112, 33, 0.5);
}

.hub-logo-icon {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-logo-icon img {
  max-width: 85px;
  max-height: 85px;
  width: auto;
  height: auto;
}

.hub-logo-brand {
  font-family: var(--font-heading), 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.hub-logo-sub {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F37021;
  text-transform: uppercase;
  line-height: 1;
}

.features-connecting-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.features-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 450px;
  width: 100%;
  z-index: 5;
  position: relative;
}

.feature-card {
  position: relative;
  background: #16181E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 112, 33, 0.4);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.feature-watermark {
  position: absolute;
  top: 22px;
  right: 24px;
  pointer-events: none;
  opacity: 0.4;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 12px;
  padding-right: 40px;
}

.feature-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #9CA3AF;
  margin: 0;
}

/* PARTNERS SECTION - FIGMA MATCH 100% */
.partners-section {
  background: #FFFFFF;
  color: #111111;
  padding: 90px 0;
}

.partners-tag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.partners-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 112, 33, 0.12);
  color: var(--brand-orange);
  border: none;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.partners-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.partners-header-left {
  max-width: 680px;
}

.partners-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: #111111;
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}

.partners-lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  margin: 0;
}

.partners-header-right {
  flex-shrink: 0;
  padding-bottom: 4px;
}

.partner-btn {
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  display: inline-block;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(243, 112, 33, 0.25);
}

.partner-btn:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
}

.partners-cards-viewport {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
}

.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, calc((100% - 72px) / 4));
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 0;
  padding: 44px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4C8D0;
  transition: all 0.3s ease;
}

.corner-bracket {
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  color: #E2E8F0;
  transition: color 0.3s ease;
}

.corner-bracket.top-left {
  top: 0;
  left: 0;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.corner-bracket.top-right {
  top: 0;
  right: 0;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.corner-bracket.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.corner-bracket.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
}

.partner-logo-box svg {
  color: inherit;
  flex-shrink: 0;
}

.partner-card-name {
  color: inherit;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Active / Hover Card Styling (e.g. Navi orange accent matching Figma) */
.partner-card.card-active,
.partner-card:hover {
  color: #E88247;
  border-color: rgba(232, 130, 71, 0.2);
  box-shadow: 0 6px 20px rgba(232, 130, 71, 0.08);
}

.partner-card.card-active .corner-bracket,
.partner-card:hover .corner-bracket {
  color: #E88247;
}

/* Controls (Bottom-Left Arrows) */
.partners-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.2s ease;
}

.partner-arrow-btn.btn-prev {
  background: #F3F4F6;
  color: #4B5563;
}

.partner-arrow-btn.btn-prev:hover {
  background: #E5E7EB;
  color: #111111;
}

.partner-arrow-btn.btn-next {
  background: var(--brand-orange);
  color: #FFFFFF;
}

.partner-arrow-btn.btn-next:hover {
  background: var(--brand-orange-hover);
  transform: scale(1.04);
}

.partners-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.partners-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--brand-dark);
}

.partners-nav button:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* CONTACT */
/* CONTACT SECTION - FIGMA MATCH 100% */
.contact-section {
  background: #FFFFFF;
  color: #111111;
  padding: 90px 0 90px 0;
}

.contact-tag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 112, 33, 0.12);
  color: var(--brand-orange);
  border: none;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: #111111;
  margin: 0 0 32px 0;
  letter-spacing: 0.01em;
}

.office-tag {
  font-size: 0.92rem;
  font-weight: 500;
  color: #9CA3AF;
  display: block;
  margin-bottom: 4px;
}

.office-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 10px 0;
  font-family: 'Inter', sans-serif;
}

.office-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #6B7280;
  margin: 0 0 32px 0;
  max-width: 520px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text .label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9CA3AF;
  margin-bottom: 2px;
}

.contact-detail-text .value {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
}

.contact-detail-text .value a {
  color: var(--brand-orange);
  text-decoration: none;
}

.contact-detail-text .value a:hover {
  text-decoration: underline;
}

.sub-val {
  font-weight: 500;
  color: #111111;
  font-size: 0.92rem;
}

.contact-social-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.social-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.social-circle-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 112, 33, 0.25);
}

.social-circle-btn svg {
  display: block;
}

/* RIGHT COLUMN FORM */
.contact-lead-text {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
  margin: 0 0 28px 0;
}

.form-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 4px 0;
  font-family: 'Inter', sans-serif;
}

.form-subtitle {
  font-size: 0.88rem;
  color: #6B7280;
  margin: 0 0 28px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111111;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

.form-group textarea {
  min-height: 105px;
  resize: vertical;
}

.form-action {
  margin-top: 8px;
}

.submit-btn {
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.88rem;
  color: #888;
}

/* FOOTER - FIGMA MATCH 100% */
.footer {
  background: #FFFFFF;
  color: #111111;
  border-top: 1px solid #E5E7EB;
  padding-top: 60px;
}

/* Newsletter Top Bar */
.footer-newsletter-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.newsletter-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 6px 0;
  font-family: 'Inter', sans-serif;
}

.newsletter-desc {
  font-size: 0.92rem;
  color: #6B7280;
  margin: 0;
}

.footer-newsletter-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.newsletter-form-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-input-group input {
  width: 320px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input-group input::placeholder {
  color: #9CA3AF;
}

.newsletter-input-group input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

.newsletter-btn {
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-2px);
}

.newsletter-policy-text {
  font-size: 0.75rem;
  color: #888888;
  margin: 8px 0 0 0;
}

.newsletter-policy-text a {
  color: #111111;
  text-decoration: underline;
}

/* Main Footer Row */
.footer-main-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand-col {
  max-width: 580px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-brand-desc {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.footer-nav-col {
  flex-shrink: 0;
}

.footer-nav-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #6B7280;
  margin: 0 0 18px 0;
  font-family: 'Inter', sans-serif;
}

.footer-nav-grid {
  display: flex;
  gap: 48px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-column a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-column a:hover {
  color: var(--brand-orange);
}

/* Bottom Bar Row */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #E5E7EB;
  padding: 24px 0;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright-text {
  font-size: 0.85rem;
  color: #6B7280;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #6B7280;
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6B7280;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes floatCenter {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }
}

@keyframes floatItem {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-btn);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-3px);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--brand-dark2);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 3px;
}

/* ─────────────────────────────────────────────────────────────
   COMPREHENSIVE RESPONSIVE STYLES (Ultra-Wide to Small Mobile)
   ───────────────────────────────────────────────────────────── */

/* --- 1400px Breakpoint (Laptops & Small Desktop) --- */
@media (max-width: 1400px) {
  .features-cards-grid {
    gap: 40px 240px;
  }
}

/* --- 1200px Breakpoint (Includes iPad Air 1180px landscape) --- */
@media (max-width: 1200px) {

  .container,
  .hero .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .features-connecting-lines,
  .features-orbit-ring {
    display: none !important;
  }

  .features-cards-grid {
    gap: 36px 140px;
  }

  .feature-card {
    padding: 24px 28px;
  }

  .feature-card-title {
    font-size: 1rem;
  }

  .feature-card-desc {
    font-size: 0.85rem;
  }
}

/* --- 1024px Breakpoint (Tablets & Medium Screens) --- */
@media (max-width: 1024px) {
  :root {
    --section-pad-v: 70px;
    --container-pad: 24px;
  }

  .nav-wrapper {
    max-width: calc(100% - 32px);
    height: 80px;
  }

  .nav-logo img {
    height: 46px;
  }

  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 140px 0 40px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 20px;
    height: 380px;
    position: relative;
    overflow: hidden;
  }

  .hero-hex-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    margin: 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    flex: none;
    min-height: auto;
  }

  .about-video,
  .about-image-wrap img {
    height: 340px;
    min-height: 340px;
    width: 100%;
    object-fit: cover;
  }

  .features-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-diagram-wrap {
    min-height: 480px;
  }

  .features-cards-grid {
    gap: 30px 80px;
  }

  .partners-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .partners-cards-grid {
    grid-template-columns: repeat(6, calc((100% - 24px) / 2));
    gap: 24px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .footer-newsletter-left {
    width: 100%;
    text-align: left;
  }

  .footer-newsletter-right {
    width: 100%;
    align-items: stretch;
  }

  .newsletter-form-inline {
    width: 100%;
    align-items: stretch;
  }

  .newsletter-policy-text {
    text-align: left;
  }

  .footer-main-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* --- 991px Breakpoint (Small Tablets) --- */
@media (max-width: 991px) {

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero-content {
    padding: 130px 0 35px;
  }

  #hero-scroll,
  .hero-scroll-btn {
    display: none !important;
  }

  .hero-right {
    height: 450px;
    margin-top: 28px;
  }

  .hero-hex-wrap {
    transform: translate(-50%, -50%) scale(0.70);
  }

  .features-diagram-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }

  .features-center-hub {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .features-connecting-lines,
  .features-orbit-ring {
    display: none !important;
  }

  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
  }
}

/* --- 768px Breakpoint (Mobile Phones & Portrait Tablets) --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --section-pad-v: 56px;
    --container-pad: 20px;
  }

  .nav-wrapper {
    max-width: calc(100% - 24px);
    padding: 0 16px;
    height: 72px;
  }

  .nav-logo img {
    height: 40px;
  }

  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-content {
    padding: 120px 0 30px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 8.5vw, 3.6rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-apps {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-apps .store-badge {
    flex: 1 1 0% !important;
    justify-content: center !important;
    padding: 9px 8px !important;
    min-width: 0 !important;
    border-radius: 8px !important;
  }

  .hero-right {
    height: 330px;
    margin-top: 24px;
  }

  .hero-hex-wrap {
    transform: translate(-50%, -50%) scale(0.65);
  }

  .about-heading {
    font-size: 2.2rem;
  }

  .features-heading {
    font-size: 2.2rem;
  }

  .features-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partners-cards-grid {
    grid-template-columns: repeat(6, calc((100% - 16px) / 2));
    gap: 16px;
  }

  .partner-card {
    padding: 32px 14px;
  }

  .partner-card-name {
    font-size: 1.25rem;
  }

  .contact-heading {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-newsletter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .footer-newsletter-left {
    width: 100%;
    text-align: left;
  }

  .footer-newsletter-right {
    width: 100%;
    align-items: stretch;
  }

  .newsletter-form-inline {
    width: 100%;
    align-items: stretch;
  }

  .newsletter-input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .newsletter-input-group input {
    width: 100% !important;
    box-sizing: border-box;
  }

  .newsletter-btn {
    width: 100% !important;
    justify-content: center;
  }

  .newsletter-policy-text {
    text-align: left !important;
    margin-top: 10px;
  }

  .footer-main-row {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- 480px Breakpoint (Small Mobile e.g. iPhone 15 Pro Max) --- */
@media (max-width: 480px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-content {
    padding: 110px 0 20px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn-notify {
    width: 100%;
    justify-content: center;
  }

  .hero-apps {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hero-apps .store-badge {
    flex: 1 1 0% !important;
    justify-content: center !important;
    padding: 9px 6px !important;
    min-width: 0 !important;
    border-radius: 8px !important;
  }

  .store-badge svg {
    width: 17px !important;
    height: 17px !important;
    flex-shrink: 0 !important;
  }

  .store-badge-text .small {
    font-size: 0.55rem !important;
    white-space: nowrap !important;
  }

  .store-badge-text .large {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }

  .hero-right {
    height: 350px;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  .hero-hex-wrap {
    transform: translate(-50%, -50%) scale(0.62);
  }

  .partners-cards-grid {
    grid-template-columns: repeat(6, calc((100% - 12px) / 2));
    gap: 12px;
  }

  .partner-card {
    padding: 24px 10px;
  }

  .partner-logo-box {
    gap: 8px;
  }

  .partner-logo-box svg {
    width: 20px;
    height: 20px;
  }

  .partner-card-name {
    font-size: 1.12rem;
    white-space: nowrap;
  }

  .contact-social-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   NOTIFY ME MODAL POPUP (Matches Figma & Screenshot)
   ============================================================ */
.notify-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notify-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.notify-modal-card {
  background: #ffffff;
  color: #111111;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 38px 36px 36px 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.notify-modal-overlay.active .notify-modal-card {
  transform: scale(1) translateY(0);
}

.notify-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 5;
}

.notify-modal-close:hover {
  transform: scale(1.1);
  background: #222222;
}

.notify-modal-header {
  margin-bottom: 24px;
}

.notify-badge {
  display: inline-block;
  background: #FFF2E8;
  color: #FF5500;
  font-family: var(--font-body), sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.notify-modal-title {
  font-family: var(--font-body), sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.notify-modal-desc {
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.55;
  margin-bottom: 0;
}

.notify-form {
  display: flex;
  flex-direction: column;
}

.notify-field-group {
  margin-bottom: 20px;
}

.notify-label {
  display: block;
  font-family: var(--font-body), sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111111;
  margin-bottom: 10px;
}

.notify-role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notify-role-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  font-family: var(--font-body), sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  color: #111111;
  outline: none;
}

.notify-role-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  font-weight: 600;
}

.notify-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  color: #111111;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.notify-input::placeholder {
  color: #A1A1AA;
  font-size: 0.95rem;
}

.notify-input:focus {
  outline: none;
  border-color: #FF5500;
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
}

.btn-notify-submit {
  width: 100%;
  background: #FF5500;
  color: #ffffff;
  font-family: var(--font-body), sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 18px rgba(255, 85, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-notify-submit:hover {
  background: #e04b00;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 85, 0, 0.5);
}

.btn-notify-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.notify-form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 12px;
  color: #065F46;
  font-family: var(--font-body), sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 576px) {
  .notify-modal-card {
    padding: 30px 20px 24px 20px;
    border-radius: 20px;
  }

  .notify-role-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notify-modal-title {
    font-size: 1.5rem;
  }

  .notify-modal-close {
    top: 18px;
    right: 18px;
  }
}


/* ============================================================
   PRICING SECTION
   ============================================================ */
.hero-scroll-chevron {
  animation: bounceDown 1.6s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.ckeditor-features-wrap ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ckeditor-features-wrap ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  padding-left: 32px;
  color: #2b2b2b;
  font-size: 0.925rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.ckeditor-features-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--brand-orange);
  border-radius: 50%;
  background-size: 11px;
  margin-top: 1px;
}

.ckeditor-features-wrap p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #333;
}

.ckeditor-pricing-desc p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.4;
}

#contactSuccessModal {
  z-index: 1000000 !important;
}

#contactSuccessModal .modal-dialog,
#contactSuccessModal .modal-content {
  position: relative;
  z-index: 1000001;
  pointer-events: auto;
}

/* Notify modal */
body.modal-open {
  overflow: hidden !important;
}

#notifyModal {
  z-index: 999999 !important;
}

.modal-backdrop {
  z-index: 999998 !important;
}

#notifyModal .modal-dialog {
  max-width: 600px;
  z-index: 999999;
  position: relative;
  pointer-events: auto !important;
}

#notifyModal .modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  pointer-events: auto !important;
}

.nmc-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 40px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  font-family: 'Inter', sans-serif;
  pointer-events: auto !important;
  z-index: 999999;
}

.nmc-wrap * {
  pointer-events: auto !important;
}

.nmc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: #111;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.nmc-close:hover { background: #333; transform: scale(1.05); }

.nmc-badge {
  display: inline-block;
  background: rgba(243,112,33,0.12);
  color: #F37021;
  border: 1px solid rgba(243,112,33,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.nmc-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.25;
}

.nmc-subtitle {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.nmc-field-group { margin-bottom: 20px; }

.nmc-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.nmc-required { color: #F37021; }

.nmc-role-toggle {
  display: flex;
  gap: 12px;
}

.nmc-role-btn {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #333;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.nmc-role-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.nmc-role-btn:not(.active):hover {
  border-color: #F37021;
  color: #F37021;
}

.nmc-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 16px;
  color: #111;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.nmc-input::placeholder { color: #aaa; }

.nmc-input:focus {
  border-color: #F37021;
  box-shadow: 0 0 0 3px rgba(243,112,33,0.12);
}

.nmc-input.is-invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.nmc-field-error {
  font-size: 0.8rem;
  color: #e53935;
  margin-top: 5px;
  min-height: 16px;
}

.nmc-global-error {
  background: #fde8e8;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
  padding: 10px 14px;
  color: #c62828;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.nmc-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #F37021 0%, #d95c00 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.nmc-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,112,33,0.45);
}

.nmc-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.nmc-success-wrap { text-align: center; padding: 20px 0; }

.nmc-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(243,112,33,0.08);
  border: 2px solid rgba(243,112,33,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.nmc-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.nmc-success-msg {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

@keyframes nmcSpin { to { transform: rotate(360deg); } }

.pricing-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  background: var(--brand-dark);
  color: var(--brand-white);
  overflow: hidden;
  scroll-margin-top: 90px;
}

.pricing-tag-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-suite-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(243, 112, 33, 0.12);
  border: 1px solid rgba(243, 112, 33, 0.35);
  color: #ff8838;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
}

.pricing-suite-tag svg {
  color: var(--brand-orange);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--brand-white);
  margin-bottom: 12px;
}

.pricing-subheading {
  font-size: 1.1rem;
  color: #d0d0d0;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Cards Container */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}

/* Single Pricing Card */
.pricing-card {
  background: #f7f7f9;
  color: #1a1a1a;
  border-radius: 24px;
  padding: 36px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* Top Badges Row */
.pricing-card-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pricing-badge-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-orange);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-badge-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

.pricing-badge-subtle {
  display: inline-flex;
  align-items: center;
  background: #fde8dc;
  color: var(--brand-orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Card Title & Desc */
.pricing-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #111111;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Price Wrap */
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.price-amount {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #111111;
  font-family: var(--font-body);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.price-subnote {
  font-size: 0.825rem;
  color: #777777;
  margin-bottom: 28px;
}

/* Feature List */
.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.925rem;
  color: #2b2b2b;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-feature-item .check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Buttons */
.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  word-break: break-word;
}

.btn-pricing.btn-orange {
  background: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(243, 112, 33, 0.35);
}

.btn-pricing.btn-orange:hover {
  background: var(--brand-orange-hover);
  box-shadow: 0 6px 24px rgba(243, 112, 33, 0.5);
  transform: translateY(-2px);
}

.btn-pricing.btn-white {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.btn-pricing.btn-white:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Responsive Media Queries for Pricing Section */
@media (max-width: 1200px) {
  .pricing-cards-grid {
    max-width: 1000px;
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .pricing-section {
    scroll-margin-top: 80px;
  }

  .pricing-heading {
    font-size: 2.75rem;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    scroll-margin-top: 70px;
  }

  .pricing-card {
    padding: 28px 24px;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .pricing-heading {
    font-size: 2.25rem;
  }

  .pricing-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .pricing-card-badges {
    justify-content: flex-start;
    gap: 8px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  .btn-pricing {
    padding: 14px 14px;
  }
}