/* -------------------------------------------------------------
 * GRUDE DIGITAL - WARM MINIMALIST HUMANIZED REDESIGN
 * ------------------------------------------------------------- */

/* Reset & Variables */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette - Elegant, Warm, Natural Cream */
  --bg-main: #fcfbf9;
  --bg-soft: #f5f3ef;
  --bg-card: #ffffff;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.12);
  
  --text-main: #1c1c1e;
  --text-muted: #6b6b72;
  
  --accent-gold: #b38a4b;
  --accent-gold-hover: #987239;
  --accent-gold-soft: rgba(179, 138, 75, 0.06);
  
  --green-soft: #2e7d32;
  --red-soft: #c62828;
  
  --radius-card: 16px;
  --radius-btn: 8px; /* Classic elegant sharp-round */
  
  /* Fonts - Sophisticated Warm Editorial pairing */
  --font-heading: 'Playfair Display', 'Lora', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  --container-width: 1100px;
  --section-padding: 90px 0;
  
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.06);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--container-width), calc(100% - 40px));
  margin: 0 auto;
}

/* Typography elements */
h1, h2, h3, .serif-font {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-main);
}

.gold-text {
  color: var(--accent-gold);
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: none;
}

.btn-gold {
  background-color: var(--text-main);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-gold:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-glow-primary {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--text-main);
}

.btn-glow-primary:hover {
  background: var(--text-main);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
  color: var(--text-main);
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Header Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(252, 251, 249, 0.85);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.brand-mark-glow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--text-main);
  display: grid;
  place-items: center;
}

.brand-mark-inner {
  color: var(--bg-main);
  font-weight: 800;
  font-size: 18px;
}

.small-mark {
  width: 28px;
  height: 28px;
  font-size: 16px;
  border-radius: 6px;
  background: var(--text-main);
  display: grid;
  place-items: center;
  color: var(--bg-main);
  font-weight: 800;
}

/* Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--text-main);
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  max-width: 500px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.check-icon {
  color: var(--accent-gold);
  font-weight: 900;
}

/* Hero Visual Split Panel */
.visual-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 12px;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.window-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-left: 6px;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-medium);
}

.window-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  padding-right: 8px;
  font-weight: 600;
}

.interactive-preview-container {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
  position: relative;
  border: 1px solid var(--border-light);
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.good-view-panel,
.bad-view-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.good-view-panel {
  background: var(--bg-soft);
  color: var(--text-main);
  z-index: 1;
}

.good-card-content {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.good-card-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.good-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.good-fake-button {
  background: var(--text-main);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-btn);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}

.bad-view-panel {
  background: #ffffff;
  color: var(--text-muted);
  z-index: 2;
  width: 50%;
  border-right: 1.5px solid var(--text-main);
}

.bad-card-content {
  width: 440px;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bad-card-content h2 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.messy-stripes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.messy-line {
  height: 6px;
  background: #eaeaea;
  border-radius: 4px;
}

.bad-fake-button {
  background: #777;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 12px;
  font-family: Arial, sans-serif;
}

.status-label {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.good-badge {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: 1px solid rgba(179, 138, 75, 0.2);
}

.bad-badge {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  border: 1px solid var(--border-light);
}

/* Slider Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--text-main);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.handle-line {
  flex-grow: 1;
  width: 1px;
  background: var(--text-main);
}

.handle-arrow-left, .handle-arrow-right {
  width: 24px;
  height: 24px;
  background: var(--text-main);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
  user-select: none;
}

/* Section Common headers */
.section-header {
  max-width: 650px;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}

/* Portfolio & Case Studies Section */
.portfolio-section {
  padding: var(--section-padding);
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.portfolio-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.portfolio-case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-medium);
}

.case-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--bg-soft);
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-case-card:hover .case-img {
  transform: scale(1.03);
}

.case-metric-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--text-main);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 4px;
}

.case-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.case-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.case-details p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.case-stat-pill {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.case-stat-pill strong {
  color: var(--text-main);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  font-family: var(--font-heading);
  font-size: 70px;
  color: rgba(179, 138, 75, 0.12);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-medium);
}

.user-info h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.user-info span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Honest & Real Section */
.roi-section {
  padding: var(--section-padding);
}

.roi-calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  display: grid;
}

.roi-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.roi-col-no {
  border-left: 1px solid var(--border-light);
  padding-left: 40px;
}

.calculator-inputs h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* What We Fix Section */
.process-section {
  padding: var(--section-padding);
  background: var(--bg-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.card-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: rgba(179, 138, 75, 0.15);
  position: absolute;
  top: 16px;
  right: 20px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-right: 36px;
}

.process-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing Grid */
.pricing-section {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.price-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.price-card-premium:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
}

.popular-card {
  border: 2px solid var(--text-main);
  box-shadow: var(--shadow-medium);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--text-main);
  color: #fff;
  font-weight: 700;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.price-card-premium {
  position: relative;
}

.price-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.price-header p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}

.price-freq {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-features li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 14px;
}

/* FAQ Accordion Section */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-soft);
}

.faq-accordion-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
  color: var(--text-main);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Contact Lead Form Section */
.contact-section {
  padding: var(--section-padding);
}

.contact-glass-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-medium);
}

.contact-info-panel h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

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

.benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.contact-direct {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Form Styling */
.glass-form {
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
}

.glass-form h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 13px;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--text-main);
}

.btn-submit {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.form-notice {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Footer styling */
.main-footer {
  background: #111112; /* Sleek rich dark slate */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff; /* Bright white headers */
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-contact p strong {
  color: #ffffff;
}

.footer-contact a {
  color: var(--accent-gold) !important;
  text-decoration: underline;
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: clamp(34px, 5vw, 48px);
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-wrapper,
  .trust-indicators {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-glass-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .desktop-nav,
  .header-action .header-cta {
    display: none;
  }
  
  .portfolio-showcase-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
  
  .footer-brand {
    grid-column: span 2 !important;
    text-align: center !important;
  }
  
  .footer-brand .brand-logo {
    justify-content: center !important;
  }
  
  .footer-brand p {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
  }
  
  .roi-section-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 20px;
  }
  
  .roi-col-no {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 32px;
  }
}

@media (max-width: 520px) {
  .hero-cta-wrapper .btn {
    width: 100%;
  }
  
  .contact-glass-box {
    padding: 20px;
  }
  
  .glass-form {
    padding: 16px;
  }
}

/* Scroll Reveal Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Menu Toggle button */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    font-size: 22px;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
  }
  
  .mobile-menu-toggle:active {
    transform: scale(0.9);
  }
}

/* Mobile Menu Overlay Container (Sleek Dark Mode Glassmorphism) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 20, 0.98); /* Luxury dark theme */
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  z-index: 10000; /* Over everything */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Inner wrap to structure elements nicely */
.mobile-menu-inner {
  width: min(340px, 85%);
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Top Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-close:active {
  transform: scale(0.9) rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Vertical Links */
.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  width: 100%;
}

.mobile-overlay-link {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  transition: all 0.25s ease;
  padding: 4px 0;
  opacity: 0;
  transform: translateY(16px);
}

/* Slide up animation for open menu */
.mobile-menu-overlay.active .mobile-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger transition delay for each link */
.mobile-menu-overlay.active .mobile-overlay-link:nth-child(1) { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.08s; }
.mobile-menu-overlay.active .mobile-overlay-link:nth-child(2) { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s; }
.mobile-menu-overlay.active .mobile-overlay-link:nth-child(3) { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.22s; }
.mobile-menu-overlay.active .mobile-overlay-link:nth-child(4) { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.29s; }
.mobile-menu-overlay.active .mobile-overlay-cta {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.36s;
}

.mobile-overlay-cta {
  opacity: 0;
  transform: translateY(16px);
}

.nav-number {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  flex-shrink: 0;
}

.mobile-overlay-link:active {
  padding-left: 8px;
  color: var(--accent-gold);
}

/* Footer details inside menu */
.mobile-menu-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-wa-link {
  color: var(--accent-gold);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Return WhatsApp float button to its original clean mobile styles */
@media (max-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }
  
  .whatsapp-float-btn {
    bottom: 24px !important;
    right: 24px !important;
    width: 56px !important;
    height: 56px !important;
  }
  
  .whatsapp-float-btn i {
    font-size: 32px !important;
  }
}

/* Premium Success Modal Overlay */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Elegant Success Modal Card */
.success-modal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Animated Success Icon */
.success-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.success-check-icon {
  color: #22c55e;
  font-size: 30px;
  animation: checkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.check-circle-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 4px solid rgba(34, 197, 94, 0.2);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

/* Modal Copywriting Styles */
.success-modal-card h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.success-modal-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Suggestive WhatsApp Box */
.modal-wa-suggestion {
  background: var(--bg-soft);
  border: 1px dashed var(--border-light);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
}

.wa-suggestion-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.modal-wa-suggestion p {
  font-size: 12.5px;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Modal Buttons Actions */
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-cta {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25) !important;
}

.modal-cta:hover {
  background: #20ba56 !important;
  transform: translateY(-2px);
}

.btn-modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.btn-modal-close:hover {
  color: var(--text-main);
}

/* Keyframes Animations */
@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Direct Checkout Premium Link Styles */
.direct-checkout-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.2s ease;
  opacity: 0.85;
}

.direct-checkout-link:hover {
  color: #fff;
  opacity: 1;
}


