/* ============================================================
   LoyalGraahak — Public Site Stylesheet
   Brand color: #fdbf03 (gold) | Dark bg: #080c17
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Outfit:wght@300;400;500;600;700;800;900&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap');

/* ── CSS Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #080c17;
  color: #e8e8e8;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Root Variables ───────────────────────────────────────── */
:root {
  --gold:        #fdbf03;
  --gold-dark:   #c99800;
  --gold-light:  #ffe566;
  --bg:          #080c17;
  --surface:     #0d1424;
  --surface-2:   #111827;
  --border:      rgba(253, 191, 3, 0.18);
  --border-soft: rgba(255, 255, 255, 0.07);
  --text:        #f0f0f0;
  --text-muted:  #8b8fa8;
  --text-dim:    #5a5e72;
  --text-primary: #ffffff;
  --text-secondary: #8b8fa8;
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1160px;
  --nav-h:       68px;
  --shadow-gold: 0 4px 32px rgba(253, 191, 3, 0.15);
  --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.35);
  --transition:  all 0.22s ease;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 56px 0;
}
.section-lg {
  padding: 112px 0;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 14px auto 0;
  line-height: 1.7;
}
.gold { color: var(--gold); }
.gold-gradient-text {
  background: linear-gradient(135deg, #ffe566 0%, #fdbf03 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #fdbf03 0%, #c99800 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(253, 191, 3, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253, 191, 3, 0.45);
}
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253, 191, 3, 0.06);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 12, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(253,191,3,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253,191,3,0.1);
  border: 1px solid rgba(253,191,3,0.25);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 820px;
  margin: 0 auto 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 18px;
  font-size: 0.825rem;
  color: var(--text-dim);
}

/* ── Cards Grid ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.cards-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(253,191,3,0.1);
  border: 1px solid rgba(253,191,3,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 6px;
}
.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}
.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.card-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Steps (How It Works) ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdbf03 0%, #c99800 100%);
  color: #000;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(253,191,3,0.3);
}
.step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.steps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
}
.steps-connector::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(33.33% - 4px);
  right: calc(33.33% - 4px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.3;
}

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(253,191,3,0.07) 0%, var(--surface) 60%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fdbf03 0%, #c99800 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-plan {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 1.25rem;
  font-weight: 700;
  vertical-align: super;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 20px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pricing-feature .check {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-feature .cross {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9875rem;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  margin-bottom: 8px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.breadcrumb-list li::after {
  content: '/';
  margin-left: 6px;
  color: var(--text-dim);
}
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }

/* ── Feature Section (Features page) ─────────────────────── */
.feature-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-section:last-child { border-bottom: none; }
.feature-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.feature-section p {
  font-size: 0.9875rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 800px;
}

/* ── Info Chips / Tags ────────────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(253,191,3,0.08);
  border: 1px solid rgba(253,191,3,0.2);
  color: var(--gold);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
}

/* ── Comparison Table ─────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  overflow: hidden;
  border-radius: var(--radius);
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table th {
  background: var(--surface-2);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td { color: var(--text-muted); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .check-mark { color: var(--gold); font-size: 1.1rem; }
.compare-table .cross-mark { color: var(--text-dim); font-size: 1rem; }
.compare-table .popular-col { background: rgba(253,191,3,0.04); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(253,191,3,0.1) 0%, rgba(253,191,3,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.blog-card-tag { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text); line-height: 1.35; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-dim); margin-top: auto; }

/* ── Article Layout ───────────────────────────────────────── */
.article-header { padding: 64px 0 40px; }
.article-header h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 16px; }
.article-meta { font-size: 0.875rem; color: var(--text-dim); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.article-meta strong { color: var(--text-muted); }
.article-body { max-width: 740px; margin: 0 auto; }
.article-body h2 { font-size: 1.375rem; font-weight: 800; margin: 40px 0 14px; color: var(--text); }
.article-body h3 { font-size: 1.125rem; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.article-body p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
.article-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; background: rgba(253,191,3,0.05); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--text-muted); }
.article-body strong { color: var(--text); font-weight: 700; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: var(--transition); }
.footer-bottom a:hover { color: var(--text-muted); }

/* ── Highlight Box ────────────────────────────────────────── */
.highlight-box {
  background: rgba(253,191,3,0.06);
  border: 1px solid rgba(253,191,3,0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}

/* ── Social Proof Bar ─────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.trust-item span { font-size: 1rem; }

/* ── Responsive ───────────────────────────────────────────── */
/* ── Premium Phone Mockups ───────────────────────────────── */
.hero-mockups-wrapper {
  position: relative;
  margin-top: 60px;
  width: 100%;
  max-width: 960px;
  height: 480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Background glow behind mockups */
.hero-mockups-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 191, 3, 0.08) 0%, rgba(8, 12, 23, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Phone chassis */
.phone-mockup {
  width: 240px;
  aspect-ratio: 9 / 19.5;
  background: #090e1a;
  border: 6px solid #1e293b;
  border-radius: 38px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s, z-index 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 15;
}

/* Dynamic Island notch */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 16px;
  background: #000;
  border-radius: 12px;
  z-index: 12;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Screen content container */
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #030712;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Positions & Tilt */
.phone-left {
  position: absolute;
  left: 12%;
  transform: rotate(-10deg) translateY(36px) scale(0.88);
  z-index: 5;
}

.phone-right {
  position: absolute;
  right: 12%;
  transform: rotate(10deg) translateY(36px) scale(0.88);
  z-index: 5;
}

.phone-center-wrapper {
  position: relative;
  z-index: 10;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-center {
  border-color: #0d1424;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(253, 191, 3, 0.15);
}

/* Hover effects */
.phone-left:hover {
  transform: rotate(-2deg) translateY(-10px) scale(0.96);
  z-index: 25;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.phone-right:hover {
  transform: rotate(2deg) translateY(-10px) scale(0.96);
  z-index: 25;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.phone-center-wrapper:hover {
  transform: scale(1.06);
  z-index: 25;
}

.phone-center-wrapper:hover .phone-center {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(253, 191, 3, 0.25);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(13, 20, 36, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 191, 3, 0.25);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 30;
  pointer-events: none;
  animation: float-badge 6s ease-in-out infinite;
  white-space: nowrap;
}

.badge-left {
  top: 15%;
  left: 4%;
  border-color: rgba(253, 191, 3, 0.4);
  animation-delay: 0s;
}

.badge-right {
  bottom: 25%;
  right: 4%;
  border-color: rgba(34, 197, 94, 0.4);
  animation-delay: 3s;
}

.badge-success-bubble {
  position: absolute;
  bottom: -15px;
  right: -60px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #e5e7eb;
  padding: 10px 18px;
  border-radius: 20px;
  animation: float-badge 5s ease-in-out infinite alternate;
  animation-delay: 1.5s;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.badge-success-bubble .check-circle {
  width: 24px;
  height: 24px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes float-badge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Simulated Customer Card UI inside Center Phone screen */
.screen-customer-card {
  padding: 12px;
  background: radial-gradient(circle at top, #0d1424 0%, #05080f 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: 'Inter', sans-serif;
  user-select: none;
  box-sizing: border-box;
}

.card-mock-header {
  text-align: center;
  padding: 12px 0 6px;
  margin-top: 14px;
}

.card-mock-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(253, 191, 3, 0.15);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  font-weight: 850;
  color: var(--gold);
  font-size: 0.75rem;
  box-shadow: 0 0 10px rgba(253, 191, 3, 0.2);
}

.card-mock-header h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
}

.card-mock-header p {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-mock-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 191, 3, 0.25);
  border-radius: 16px;
  padding: 10px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.card-mock-body-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-mock-label {
  font-size: 0.52rem;
  color: var(--text-muted);
}

.card-mock-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.card-mock-visits {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--gold);
}

.card-mock-stamp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 8px;
  justify-items: center;
}

.card-mock-stamp {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px dashed rgba(253, 191, 3, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.card-mock-stamp.filled {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(253, 191, 3, 0.12);
  color: var(--gold);
  box-shadow: 0 0 6px rgba(253, 191, 3, 0.2);
}

.card-mock-stamp.active {
  border-style: solid;
  border-color: var(--gold);
  animation: pulse-active-stamp 1.5s infinite ease-in-out;
}

@keyframes pulse-active-stamp {
  0%, 100% { box-shadow: 0 0 2px rgba(253, 191, 3, 0.1); }
  50% { box-shadow: 0 0 10px rgba(253, 191, 3, 0.5); background: rgba(253, 191, 3, 0.05); }
}

.card-mock-progress-bar {
  margin-top: 6px;
}

.card-mock-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  margin-bottom: 3px;
}

.card-mock-progress-fill-bg {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.card-mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffe566);
  border-radius: 2px;
}

.card-mock-qr-section {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 8px;
  margin-top: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-mock-qr-title {
  font-size: 0.52rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-mock-qr-image {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 6px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-mock-qr-image svg {
  width: 100%;
  height: 100%;
}

.card-mock-qr-footer {
  font-size: 0.5rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .hero { padding: 72px 0 56px; }
  .cards-grid, .cards-grid-3, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner { padding: 40px 24px; }
  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 960px) {
  .hero-mockups-wrapper {
    height: 400px;
    margin-top: 40px;
  }
  .phone-mockup {
    width: 200px;
  }
  .phone-left {
    left: 8%;
  }
  .phone-right {
    right: 8%;
  }
  .badge-left {
    left: 1%;
    top: 10%;
  }
  .badge-right {
    right: 1%;
    bottom: 20%;
  }
}

@media (max-width: 640px) {
  .hero-mockups-wrapper {
    height: 300px;
    margin-top: 30px;
  }
  .phone-mockup {
    width: 120px;
    border-width: 4px;
    border-radius: 20px;
  }
  .phone-notch {
    width: 36px;
    height: 8px;
    top: 5px;
    border-radius: 6px;
  }
  .phone-screen {
    border-radius: 16px;
  }
  .phone-mockup::before {
    border-radius: 16px;
  }
  .phone-left {
    left: 8%;
    transform: rotate(-8deg) translateY(20px) scale(0.9);
    display: block !important;
  }
  .phone-right {
    right: 8%;
    transform: rotate(8deg) translateY(20px) scale(0.9);
    display: block !important;
  }
  .phone-center-wrapper {
    transform: scale(1.0);
  }
  .phone-center-wrapper:hover {
    transform: scale(1.03);
  }
  .badge-left, .badge-right {
    display: none !important;
  }
  .badge-success-bubble {
    bottom: -5px;
    right: -10px;
    padding: 3px 6px;
    font-size: 8px;
  }
  .badge-success-bubble .check-circle {
    width: 12px;
    height: 12px;
  }
  .badge-success-bubble .check-circle span {
    font-size: 8px !important;
  }
  /* Scale customer card mockups in center phone */
  .screen-customer-card {
    padding: 10px;
  }
  .card-mock-header {
    margin-bottom: 8px;
  }
  .card-mock-header h4 {
    font-size: 10px;
  }
  .card-mock-header p {
    font-size: 7px;
  }
  .card-mock-body {
    padding: 10px;
    border-radius: 10px;
  }
  .card-mock-visits {
    font-size: 14px;
  }
  .card-mock-stamp-grid {
    gap: 4px;
    margin-top: 8px;
  }
  .card-mock-stamp {
    height: 24px;
  }
  .card-mock-stamp span {
    font-size: 10px !important;
  }
  .card-mock-redeem-btn {
    padding: 6px;
    font-size: 8px;
    border-radius: 6px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Redesigned Homepage Custom Premium Styles (Druto Style) ── */
.border-gap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
}
.border-gap-card {
  background: #090e1a;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  position: relative;
}
.border-gap-card:hover {
  background: #0d1424;
}
.border-gap-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
}
.border-gap-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature Showcase Styles */
.feature-showcase-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.feature-showcase-row.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.feature-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-showcase-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}
.feature-showcase-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.feature-showcase-phone {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  background: #090e1a;
  border: 8px solid #1e293b;
  border-radius: 42px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(253, 191, 3, 0.1);
  overflow: hidden;
  position: relative;
}
.feature-showcase-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Premium FAQ Accordion Styles */
.premium-faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.premium-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.premium-faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(253, 191, 3, 0.3);
}
.premium-faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  user-select: none;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
}
.premium-faq-item summary::-webkit-details-marker { display: none; }
.premium-faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.premium-faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.premium-faq-answer {
  padding: 0 28px 24px;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

/* Premium FAQ Accordion Details styling resets */
details.premium-faq-item summary {
  list-style: none;
}
details.premium-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Premium CTA Card Style */
.premium-cta-card {
  background: radial-gradient(circle at top right, rgba(253, 191, 3, 0.12) 0%, rgba(8, 12, 23, 0) 60%), linear-gradient(135deg, rgba(13, 20, 36, 0.8) 0%, rgba(9, 14, 26, 0.9) 100%);
  border: 1.5px solid rgba(253, 191, 3, 0.25);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(253, 191, 3, 0.05);
}
.premium-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 191, 3, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.premium-cta-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .feature-showcase-row, .feature-showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }
  .feature-showcase-row.reverse .feature-showcase-visual {
    order: -1;
  }
  .border-gap-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .border-gap-card {
    padding: 28px;
  }
  .premium-faq-item summary {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .premium-faq-answer {
    padding: 0 20px 18px;
    font-size: 0.9rem;
  }
  .premium-cta-card {
    padding: 48px 24px;
    border-radius: 20px;
  }
}

/* ── Contact Layout Responsive Fixes ──────────────────────── */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.contact-methods-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}
.contact-methods-grid .contact-method-card {
  flex: 1 1 300px;
}
@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem 0;
  }
  .contact-methods-grid {
    flex-direction: column;
  }
  .contact-methods-grid .contact-method-card {
    flex: 1 1 auto;
  }
}

