/* ========== CSS Variables / Design System ========== */
:root {
  --background: hsl(30, 50%, 97%);
  --foreground: hsl(30, 10%, 15%);
  --muted: hsl(30, 15%, 90%);
  --muted-foreground: hsl(30, 10%, 45%);
  --gold: hsl(40, 70%, 55%);
  --gold-light: hsl(40, 70%, 65%);
  --gold-dark: hsl(40, 70%, 45%);
  --border: hsl(30, 20%, 88%);
  --cream-dark: hsl(30, 40%, 94%);
  --secondary: hsl(30, 20%, 92%);
  --dark-bg: hsl(220, 25%, 12%);
  --dark-card: hsl(220, 20%, 18%);
  --dark-text: hsl(220, 15%, 70%);
  
  --font-serif: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  overflow-x: hidden;
  max-width: 100vw;
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  word-wrap: break-word;
}

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

a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ========== Container ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ========== Header / Navbar ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.logo-text span {
  color: var(--muted-foreground);
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 2rem;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--foreground);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-nav {
  background: var(--gold);
  color: var(--foreground);
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.btn-nav:hover {
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  color: var(--foreground);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .btn-gold {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-gold:hover {
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 9999px;
  border: 2px solid var(--foreground);
}

@media (min-width: 768px) {
  .btn-outline {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  padding: 1.5rem;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ========== Section Labels & Titles ========== */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-label {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}

.section-label.center {
  text-align: center;
}

.section-label.light {
  color: var(--gold);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: white;
}

.section-title .highlight {
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.section-subtitle.light {
  color: var(--dark-text);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: calc(100vh - 80px);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--background), var(--cream-dark));
  opacity: 0.5;
}

.hero-content {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-content {
    gap: 3rem;
    padding: 3rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 5rem 0;
  }
}

.hero-text {
  animation: fadeInLeft 0.6s ease-out 0.2s backwards;
}

.hero-glow {
  position: absolute;
  top: -40px;
  left: -120px;
  z-index: -1;
  display: none;
}

@media (min-width: 768px) {
  .hero-glow {
    display: block;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: hsla(40, 70%, 55%, 0.1);
  border: 1px solid hsla(40, 70%, 55%, 0.2);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .badge {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
  }
}

.badge-icon {
  color: var(--gold);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dark);
}

@media (min-width: 768px) {
  .badge-text {
    font-size: 0.875rem;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    margin-bottom: 3rem;
  }
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow svg {
  transition: transform 0.3s ease;
}

.btn-gold:hover .btn-arrow svg {
  transform: translateX(4px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-indicators {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .trust-indicators {
    gap: 2rem;
  }
}

.trust-avatars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatars-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-left: -8px;
}

@media (min-width: 768px) {
  .avatar {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }
}

.avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .trust-text {
    font-size: 0.875rem;
  }
}

.trust-text strong {
  color: var(--foreground);
}

.divider {
  display: none;
  width: 1px;
  height: 2rem;
  background: var(--border);
}

@media (min-width: 768px) {
  .divider {
    display: block;
  }
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
  fill: rgba(245, 159, 10, 1);
  color: var(--gold);
}

@media (min-width: 768px) {
  .star {
    width: 16px;
    height: 16px;
  }
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.6s ease-out 0.4s backwards;
}

@media (min-width: 1024px) {
  .hero-image {
    justify-content: flex-end;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-wrapper {
  position: relative;
  max-width: 100%;
}

.dots-pattern {
  position: absolute;
  opacity: 0.3;
  display: none;
}

@media (min-width: 768px) {
  .dots-pattern {
    display: block;
  }
}

.dots-top {
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
}

.dots-bottom {
  bottom: -20px;
  left: -40px;
  width: 80px;
  height: 80px;
  opacity: 0.2;
}

.phone-mockup {
  max-width: 100%;
  width: 320px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
  animation: float 4s ease-in-out infinite;
}

@media (min-width: 640px) {
  .phone-mockup {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .phone-mockup {
    width: 480px;
  }
}

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

/* ========== About Section ========== */
.about {
  padding: 3rem 0;
  background: var(--cream-dark);
}

@media (min-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
}

.about-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-content {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-description {
    font-size: 1.0625rem;
  }
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .about-card {
    padding: 1.5rem;
  }
}

.about-card-icon {
  width: 40px;
  height: 40px;
  background: hsla(40, 70%, 55%, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

@media (min-width: 768px) {
  .about-card-icon {
    width: 48px;
    height: 48px;
  }
}

.about-card-content h3 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .about-card-content h3 {
    font-size: 1rem;
  }
}

.about-card-content p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .about-card-content p {
    font-size: 0.875rem;
  }
}

/* ========== Features Section ========== */
.features {
  position: relative;
  padding: 3rem 0;
  background: var(--cream-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .features {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .features {
    padding: 6rem 0;
  }
}

.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 75, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.features-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .features-header {
    margin-bottom: 1.5rem;
  }
}

.features-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .features-header-icon {
    width: 40px;
    height: 40px;
  }
}

.features-header-icon.customer {
  background: var(--gold);
  color: white;
}

.features-header-icon.admin {
  background: var(--dark-bg);
  color: white;
}

.features-header h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .features-header h3 {
    font-size: 1.25rem;
  }
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 1.125rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .feature-card {
    padding: 1.25rem;
  }
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
  .feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
  }
}

.feature-icon.gold {
  background: hsla(40, 70%, 55%, 0.15);
  color: var(--gold);
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .feature-card h4 {
    font-size: 0.9375rem;
  }
}

.feature-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .feature-card p {
    font-size: 0.8125rem;
  }
}

/* ========== For Jewellers Section ========== */
.for-jewellers {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .for-jewellers {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .for-jewellers {
    padding: 6rem 0;
  }
}

.jeweller-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .jeweller-feature {
    gap: 2rem;
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .jeweller-feature {
    flex-direction: row;
    gap: 4rem;
    margin-top: 48px;
  }
}

.jeweller-feature.reverse {
  flex-direction: column;
}

@media (min-width: 1024px) {
  .jeweller-feature.reverse {
    flex-direction: row-reverse;
  }
}

.jeweller-feature-image {
  width: 100%;
}

@media (min-width: 1024px) {
  .jeweller-feature-image {
    width: 50%;
  }
}

.jeweller-feature-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.jeweller-feature-content {
  width: 100%;
}

@media (min-width: 1024px) {
  .jeweller-feature-content {
    width: 50%;
  }
}

.jeweller-feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .jeweller-feature-content h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .jeweller-feature-content h3 {
    font-size: 2rem;
  }
}

.jeweller-feature-content p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .jeweller-feature-content p {
    font-size: 1rem;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .feature-list li {
    font-size: 0.9375rem;
  }
}

.bullet {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== How It Works Section ========== */
.how-it-works {
  padding: 3rem 0;
  background: var(--dark-bg);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .how-it-works {
    padding: 6rem 0;
  }
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
  }
}

.step-card {
  position: relative;
  background: var(--dark-card);
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .step-card {
    padding: 2rem 1.5rem;
  }
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

@media (min-width: 768px) {
  .step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
  }
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .step-card h3 {
    font-size: 1.125rem;
  }
}

.step-card p {
  font-size: 0.8125rem;
  color: var(--dark-text);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .step-card p {
    font-size: 0.875rem;
  }
}

/* ========== Built For Section ========== */
.built-for {
  position: relative;
  padding: 3rem 0;
  background: var(--cream-dark);
  overflow: hidden;
}

@media (min-width: 768px) {
  .built-for {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .built-for {
    padding: 6rem 0;
  }
}

.built-for-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 168, 75, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.built-for-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .built-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .built-for-grid {
    margin-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .built-for-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.built-for-card {
  background: white;
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .built-for-card {
    padding: 2rem 1.5rem;
  }
}

.built-for-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

@media (min-width: 768px) {
  .built-for-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
}

.built-for-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .built-for-card h3 {
    font-size: 1.125rem;
  }
}

.built-for-card p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .built-for-card p {
    font-size: 0.875rem;
  }
}

/* ========== Why Choose Section ========== */
.why-choose {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .why-choose {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .why-choose {
    padding: 6rem 0;
  }
}

.why-choose-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-choose-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .why-list {
    margin-top: 2rem;
  }
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .why-item {
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
}

.why-icon {
  width: 36px;
  height: 36px;
  background: hsla(40, 70%, 55%, 0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

@media (min-width: 768px) {
  .why-icon {
    width: 40px;
    height: 40px;
  }
}

.why-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .why-item span {
    font-size: 0.9375rem;
  }
}

.pricing-card {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem;
    margin-top: 2rem;
  }
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .pricing-item {
    gap: 1rem;
    padding: 0.875rem 0;
    font-size: 1rem;
  }
}

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

.pricing-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ========== Pricing Plans Section ========== */
.pricing-plans {
  padding: 3rem 0;
  background: var(--cream-dark);
}

@media (min-width: 768px) {
  .pricing-plans {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .pricing-plans {
    padding: 6rem 0;
  }
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .title-underline {
    margin-bottom: 3rem;
  }
}

.plans-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  position: relative;
  background: white;
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .plan-card {
    padding: 2rem 1.5rem;
  }
}

.plan-card.popular {
  border: 2px solid var(--gold);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .popular-badge {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
  }
}

.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .plan-icon {
    width: 56px;
    height: 56px;
  }
}

.plan-icon.essential {
  background: hsla(43, 74%, 49%, 0.2);
  color: var(--muted-foreground);
}

.plan-icon.premium {
  background: hsla(190, 60%, 45%, 0.15);
  color: hsl(190, 60%, 45%);
}

.plan-icon.pro {
  background: hsla(43, 46%, 66%, 0.2);
  color: white;
}

.plan-icon.elite {
  background: hsla(40, 70%, 55%, 0.15);
  color: var(--gold);
}

.plan-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.plan-features {
  text-align: left;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .plan-features {
    margin-bottom: 1.5rem;
  }
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  padding: 0.375rem 0;
}

@media (min-width: 768px) {
  .plan-features li {
    font-size: 0.8125rem;
  }
}

.plan-features li.included svg {
  color: hsl(145, 60%, 45%);
}

.plan-features li.excluded {
  color: var(--muted-foreground);
}

.plan-features li.excluded svg {
  color: var(--muted-foreground);
}

.btn-plan-outline {
  width: 100%;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.6875rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .btn-plan-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.btn-plan-outline:hover {
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  color: var(--foreground);
}

.btn-plan-outline.gold {
  border-color: var(--gold);
}

.btn-plan-filled {
  width: 100%;
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  color: #ffffff;
  border: none;
  padding: 0.6875rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .btn-plan-filled {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.btn-plan-filled:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .pricing-note {
    margin-top: 2rem;
    font-size: 0.9375rem;
  }
}

.pricing-note a {
  color: var(--gold);
  font-weight: 500;
}

.pricing-note a:hover {
  text-decoration: none;
}

/* ========== Contact Section ========== */
.contact {
  padding: 3rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .contact {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .contact-grid {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-badge .bullet {
  width: 8px;
  height: 8px;
}

.contact-badge .bullet.gold {
  background: var(--gold);
}

.contact-badge span:last-child {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
}

@media (min-width: 768px) {
  .contact-badge span:last-child {
    font-size: 0.875rem;
  }
}

.contact-description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .contact-features li {
    font-size: 0.9375rem;
  }
}

.contact-features svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-form {
    gap: 1.25rem;
  }
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .form-group label {
    font-size: 0.875rem;
  }
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper svg {
  position: absolute;
  left: 1rem;
  color: var(--muted-foreground);
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}

@media (min-width: 768px) {
  .input-wrapper input,
  .input-wrapper textarea {
    padding: 0.875rem 1rem 0.875rem 3rem;
    font-size: 0.9375rem;
  }
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.input-wrapper.textarea {
  align-items: flex-start;
}

.input-wrapper.textarea svg {
  top: 1rem;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, hsla(43, 96%, 56%, 1), hsla(38, 92%, 50%, 1), hsla(30, 90%, 45%, 1));
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .form-note {
    font-size: 0.8125rem;
  }
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    gap: 3rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .footer-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .footer-logo-text {
    font-size: 1.25rem;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--dark-text);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .footer-brand p {
    font-size: 0.9375rem;
  }
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--dark-text);
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .footer-links a {
    font-size: 0.9375rem;
  }
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--dark-text);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom p {
    font-size: 0.875rem;
  }
}

/* ========== Tables - Horizontal Scroll ========== */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  min-width: 600px;
  width: 100%;
}

/* ========== Sidebar ========== */
.sidebar {
  transition: transform 0.3s ease, width 0.3s ease;
}

.sidebar.collapsed {
  transform: translateX(-100%);
  width: 0;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 200;
    width: 280px;
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .main-content {
    width: 100%;
    margin-left: 0;
  }
}

/* ========== Utility Classes ========== */
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.w-full {
  width: 100%;
}

.min-w-0 {
  min-width: 0;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Show only on mobile */
@media (min-width: 769px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* Prevent horizontal overflow */
* {
  max-width: 100%;
}

/* Ensure images don't cause overflow */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Text wrapping */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Smooth scrolling on touch devices */
@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}
