/* ============================================
   SOUND HSA - Corporate Website Styles
   Brand Colors: #F7D549 (yellow), #DFA357 (orange)
   Secondary: #E5E5E5 (light gray), #000000 (black)
   Fonts: Archivo (primary), Inter (secondary)
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --color-yellow: #F7D549;
  --color-orange: #DFA357;
  --color-orange-dark: #E8881F;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-light: #E5E5E5;
  --color-gray: #888888;
  --color-gray-dark: #333333;
  --color-bg-warm: #FFF9E6;
  --color-bg-cream: #FFFDF5;
  --color-bg-section: #F9F6EE;
  --gradient-brand: linear-gradient(135deg, #F7D549 0%, #DFA357 100%);
  --gradient-brand-hover: linear-gradient(135deg, #e5c33e 0%, #cd924d 100%);
  --gradient-hero: linear-gradient(160deg, #FFFDF7 0%, #FFF8EC 40%, #FFF4E0 70%, #FFFDF7 100%);
  --font-primary: 'Archivo', 'Inter', sans-serif;
  --font-secondary: 'Inter', 'Archivo', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(247, 213, 73, 0.08);
  --shadow-md: 0 4px 20px rgba(247, 213, 73, 0.12);
  --shadow-lg: 0 8px 40px rgba(247, 213, 73, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-gray-dark);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { font-size: 1.05rem; line-height: 1.7; color: #555; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-black);
  box-shadow: 0 4px 15px rgba(247, 213, 73, 0.3);
}

.btn-primary:hover {
  background: var(--gradient-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(247, 213, 73, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-black);
  z-index: 1001;
}

.logo img, .logo svg {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text span {
  color: var(--color-orange-dark);
}

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

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-black);
  background: rgba(247, 213, 73, 0.1);
}

.nav-link.active {
  color: var(--color-orange-dark);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background: var(--color-bg-warm);
  color: var(--color-black);
}

.nav-cta {
  margin-left: 16px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  padding-top: max(120px, var(--header-height));
  overflow: hidden;
}

.hero-home {
  background: var(--gradient-hero);
  color: var(--color-black);
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(247, 213, 73, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 163, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(247, 213, 73, 0.15);
  border: 1px solid rgba(247, 213, 73, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-orange-dark);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--color-black);
  margin-bottom: 4px;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.hero h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

/* Phone mockup in hero */
.hero-phone-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(247, 213, 73, 0.18) 0%, rgba(223, 163, 87, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-phone-mockup {
  position: relative;
  z-index: 2;
  max-width: 280px;
  max-height: 70vh;
  border-radius: 40px;
  border: 3px solid #333;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 80px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.phone-screenshot {
  width: 100%;
  display: block;
}

.phone-frame {
  position: relative;
  max-width: 300px;
  border-radius: 40px;
  border: 4px solid #1a1a1a;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 0 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px);
}

.phone-frame img {
  width: 100%;
  display: block;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-top: -28px;
}

.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-header-logo {
  width: 24px;
  height: 24px;
  background: var(--gradient-brand);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #000;
}

.phone-header-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.phone-balance-section {
  text-align: center;
  padding: 12px 0;
}

.phone-balance-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.phone-balance-amount {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.phone-balance-btc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.phone-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--gradient-brand);
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: default;
}

.phone-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
}

.phone-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.phone-widget-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.phone-widget-badge {
  font-size: 0.6rem;
  padding: 3px 8px;
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
  border-radius: 20px;
  font-weight: 600;
}

.phone-steps-bar {
  display: flex;
  gap: 3px;
  height: 6px;
}

.phone-steps-bar span {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.phone-steps-bar span.filled {
  background: var(--gradient-brand);
}

.phone-steps-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Floating badges */
.hero-floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.floating-badge {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 213, 73, 0.5);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge:nth-child(1) {
  top: 8%;
  right: -10px;
  animation-delay: 0s;
}

.floating-badge:nth-child(2) {
  top: 38%;
  left: -25px;
  animation-delay: -1.5s;
}

.floating-badge:nth-child(3) {
  bottom: 22%;
  right: -20px;
  animation-delay: -3s;
}

.floating-badge:nth-child(4) {
  bottom: 5%;
  left: -15px;
  animation-delay: -4.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Page hero (inner pages) */
.hero-page {
  min-height: 50vh;
  background: var(--gradient-hero);
  color: var(--color-black);
  text-align: center;
}

.hero-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-page h1 {
  color: var(--color-black);
  margin-bottom: 16px;
  max-width: 700px;
}

.hero-page .subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin-bottom: 32px;
}

/* --- Section Hero Background --- */
.section-hero-bg {
  background: var(--gradient-hero);
}

/* --- Sections --- */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--gradient-hero);
}

.section-dark {
  background: var(--color-bg-warm);
  color: var(--color-black);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-black);
}

.section-dark p {
  color: #555;
}

.section-dark .card {
  background: var(--color-white);
  border: 1px solid rgba(247, 213, 73, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(247, 213, 73, 0.1);
}

.section-dark .card:hover {
  border-color: rgba(247, 213, 73, 0.5);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18), inset 0 1px 0 rgba(247, 213, 73, 0.1);
}

.section-dark .card h3 {
  color: var(--color-black);
}

.section-dark .card h4 {
  color: #555;
  margin-bottom: 12px;
}

.section-dark .card p {
  color: #555;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange-dark);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-orange-dark);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.95rem;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Value Props / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius);
  font-size: 1.3rem;
}

.feature-item h4 {
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.95rem;
}

/* --- Web App Screenshot --- */
.web-app-screenshot {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
  margin: 0 auto;
}

/* --- Features Section (Build Tax-Free Wealth) --- */
.features-section {
  background: var(--color-white);
  color: var(--color-black);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
  pointer-events: none;
}

.features-section h2 {
  color: var(--color-black);
}

.features-section .section-header p {
  color: #555;
}

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

.feature-card {
  padding: 36px 28px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(247, 213, 73, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--color-orange-dark);
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--color-black);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}

.features-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  background: var(--color-white);
  border: none;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #E8881F, #F7D549) 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.features-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.features-highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius);
  color: var(--color-black);
}

.features-highlight-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.features-highlight > div {
  text-align: center;
}

.features-highlight h3 {
  font-size: 1.3rem;
  color: var(--color-black);
  margin-bottom: 12px;
}

.features-highlight p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  max-width: 700px;
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(247, 213, 73, 0.25);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.step p {
  font-size: 0.95rem;
}

/* Step connector line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 36px);
  width: calc(100% - 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
}

/* --- Pricing --- */
.section-pricing {
  background: var(--gradient-hero);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.pricing-side-card {
  flex: 1;
}

.pricing-side-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.pricing-side-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.pricing-side-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  margin-bottom: 0;
  color: var(--color-orange-dark);
}

.pricing-side-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.pricing-side-card h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gray);
  margin-bottom: 2px;
}

.pricing-side-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-side-card p {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.4;
}

.pricing-main {
  text-align: center;
  padding: 32px 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(247, 213, 73, 0.35);
  position: relative;
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.1);
}

.pricing-main-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gradient-brand);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-black);
  margin-bottom: 20px;
}

.pricing-main h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-main-price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 1.1rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--color-gray);
}

.pricing-main-desc {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.pricing-checklist {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  border-bottom: 1px solid var(--color-gray-light);
}

.pricing-checklist li:last-child {
  border-bottom: none;
}

.pricing-checklist li svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange-dark);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-top: 16px;
}

/* --- Security / 3-Layer --- */
.security-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.security-layer {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.security-layer:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.security-layer .layer-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}

.security-layer h4 {
  margin-bottom: 4px;
}

.security-layer .layer-role {
  font-size: 0.85rem;
  color: var(--color-orange-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.security-layer p {
  font-size: 0.9rem;
}

/* --- Team --- */
.team-grid-founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.team-member {
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 auto 16px;
}

.team-member h4 {
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 0.85rem;
  color: var(--color-orange-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* --- FAQ / Accordion --- */
.faq-list {
  max-width: 1060px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-yellow);
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(247, 213, 73, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-warm);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
}

.faq-answer-inner {
  padding: 16px 24px 20px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.faq-answer-inner ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.faq-answer-inner ul li {
  list-style: disc;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

.faq-answer-inner ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.faq-answer-inner ol li {
  list-style: decimal;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

.faq-answer-inner h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 16px;
  margin-bottom: 8px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--gradient-brand);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 550px;
  margin: 0 auto 32px;
}

.cta-banner .btn {
  margin: 0 8px;
}

/* CTA Banner Enhanced */
.cta-banner-enhanced {
  padding: 60px 0;
}

.cta-banner-enhanced h2 {
  margin-bottom: 12px;
}

.cta-banner-enhanced p {
  margin-bottom: 24px;
}

.cta-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.cta-divider span {
  padding: 0 12px;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

.cta-app-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-app-buttons a {
  transition: var(--transition);
}

.cta-app-buttons a:hover {
  transform: translateY(-2px);
}

.cta-app-buttons img {
  height: 44px;
  width: auto;
}

/* --- Audience Grid --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Logos Grid --- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 48px auto 0;
  align-items: center;
  justify-items: center;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.two-col-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 350px;
}

.two-col-visual .visual-icon {
  font-size: 8rem;
  opacity: 0.3;
}

/* --- Why Grid (2x2) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}


.why-card-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.why-card-icon img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--color-black);
}

.why-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Pillars --- */
.pillar {
  position: relative;
  padding: 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  border-image: var(--gradient-brand) 1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.pillar h3 {
  margin-bottom: 12px;
}

/* --- Benefit Blocks (Individuals / Employers) --- */
.benefit-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.benefit-block:last-child {
  border-bottom: none;
}

.benefit-block .benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-brand);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(247, 213, 73, 0.25);
}

.benefit-block h3 {
  margin-bottom: 8px;
}

.benefit-block .tagline {
  font-style: italic;
  color: var(--color-orange-dark);
  margin-bottom: 16px;
  font-size: 1rem;
}

.benefit-list {
  margin-top: 20px;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.benefit-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient-brand);
  border-radius: 50%;
  margin-top: 2px;
}

.benefit-list li strong {
  color: var(--color-black);
}

/* --- Support Page --- */
.support-channels {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.support-channels > .card {
  flex: 0 1 380px;
}

.support-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.support-card .support-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.support-card h4 {
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* --- Footer --- */
.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 56px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

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

.footer-app-buttons a {
  display: block;
  padding: 0;
}

.footer-app-buttons a:hover {
  padding-left: 0;
  opacity: 0.8;
}

.footer-app-buttons img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom .footer-legal a:hover {
  color: var(--color-yellow);
}

.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delay utility */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- App Store Buttons --- */
.app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 44px;
}

.app-buttons a {
  display: block;
  transition: var(--transition);
}

.app-buttons a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.app-buttons img {
  height: 56px;
  width: auto;
  display: block;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  /* Mobile Nav for tablets */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px 30px;
    gap: 4px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1002;
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
  }

  .nav-item:has(.nav-dropdown) > .nav-link {
    pointer-events: none;
    cursor: default;
  }

  .nav-link:hover,
  .nav-link.active {
    background: none;
    color: var(--color-orange-dark);
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 4px 0 4px 20px;
    margin: 0;
    display: block;
    background: none;
    border-left: none;
  }

  .nav-dropdown a {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--color-gray);
    background: none;
  }

  .nav-dropdown a:hover {
    background: none;
    color: var(--color-orange-dark);
    font-weight: 600;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

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

  .menu-toggle {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .two-col-visual {
    order: -1;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-channels {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 60px;
  }

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

  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  /* Get the App - full width below */
  .footer-col:last-child {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .footer-app-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

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

  .features-highlight {
    padding: 24px 20px;
  }

  .grid-2, .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 16px;
    padding: 20px;
    text-align: left;
  }

  .feature-card .feature-card-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .feature-card h3 {
    margin-bottom: 0;
    grid-column: 2;
  }

  .feature-card p {
    grid-column: 2;
    margin: 0;
  }

  .features-highlight {
    padding: 30px 24px;
  }

  .team-grid-founders,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .pricing-main {
    order: -1;
  }

  .pricing-side {
    flex-direction: column;
  }

  .pricing-side-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 16px;
    padding: 20px;
    text-align: left;
  }

  .pricing-side-card .pricing-side-icon {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .pricing-side-card h4 {
    margin-bottom: 0;
    grid-column: 2;
  }

  .pricing-side-card .pricing-side-amount {
    font-size: 1.8rem;
    margin-bottom: 0;
    grid-row: span 2;
    align-self: center;
  }

  .pricing-side-card p {
    grid-column: 2;
    margin: 0;
  }

  .grid-3, .steps, .security-layers, .support-channels {
    grid-template-columns: 1fr;
  }

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

  .step:not(:last-child)::after {
    display: none;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    white-space: normal;
    line-height: 1.4;
    padding: 14px 20px;
  }

  .hero-page {
    padding: 0 !important;
    min-height: auto !important;
    display: block;
    margin-top: 70px;
  }

  .hero-page .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-page .hero-content {
    max-width: 100%;
  }

  .card {
    padding: 28px;
  }

  .app-buttons {
    justify-content: center;
    gap: 12px;
  }

  .app-buttons img {
    height: 44px;
  }
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

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

/* --- Misc Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

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

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-warm);
  color: var(--color-orange-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(247, 213, 73, 0.18);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card time {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.blog-card h3 {
  margin: 8px 0 12px;
  font-size: 1.25rem;
}

.blog-card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card-link {
  font-weight: 600;
  color: var(--color-orange-dark);
  font-size: 0.95rem;
}

.blog-card-link:hover {
  text-decoration: underline;
}

/* --- Blog Post Page --- */
.blog-post {
  padding-top: var(--header-height);
}

.blog-post-header {
  background: var(--gradient-hero);
  padding: 60px 0 40px;
  text-align: center;
}

.blog-back-link {
  display: inline-block;
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.blog-back-link:hover {
  color: var(--color-orange-dark);
}

.blog-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto 16px;
}

.blog-post-header time {
  color: var(--color-gray);
  font-size: 1rem;
}

.blog-post-image {
  max-width: 900px;
  margin: -20px auto 0;
  padding: 0 24px;
}

.blog-post-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.blog-post-content {
  padding: 60px 0;
}

.blog-post-content .container {
  max-width: 800px;
}

.blog-post-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-post-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.blog-post-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.blog-post-content li {
  list-style: disc;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  line-height: 1.7;
  color: #555;
}

.blog-post-content ol li {
  list-style: decimal;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--color-yellow);
  padding-left: 20px;
  font-size: 1.1rem;
  margin: 24px 0;
  font-style: italic;
  color: #555;
}

.blog-post-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}

.blog-post-content a {
  color: var(--color-orange-dark);
  text-decoration: underline;
}

.blog-post-content a:hover {
  text-decoration: none;
}

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

  .blog-post-header {
    padding: 40px 0 30px;
  }

  .blog-post-content {
    padding: 40px 0;
  }
}

/* === APP SHOWCASE (FAN LAYOUT) === */
.app-showcase {
  position: relative;
  height: 505px;
  max-width: 1200px;
  margin: 0 auto;
}

.app-showcase img {
  display: block;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-showcase-center,
.app-showcase-side {
  position: absolute;
  transition: z-index 0s;
}

.app-showcase-center {
  width: 60%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.app-showcase-side:nth-child(1) {
  width: 50%;
  left: -2%;
  top: 40px;
  transform: rotate(-4deg);
  z-index: 2;
}

.app-showcase-side:nth-child(3) {
  width: 50%;
  right: -2%;
  left: auto;
  top: 40px;
  transform: rotate(4deg);
  z-index: 2;
}

.app-showcase-center:hover,
.app-showcase-side:hover {
  z-index: 10 !important;
}

.app-showcase img:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .app-showcase {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .app-showcase-center,
  .app-showcase-side {
    position: static;
    width: 100% !important;
    transform: none !important;
  }
}
