@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #64748b;
  --accent: #38bdf8;
  --bg: #ffffff;
  --card-bg: rgba(248, 250, 252, 0.8);
  --text: #0f172a;
  --text-muted: #475569;
  --glass: rgba(15, 23, 42, 0.03);
  --glass-border: rgba(15, 23, 42, 0.1);
  --danger: #ef4444;
  --success: #10b981;
  --brand-pink: #e91e63;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

body.dark-mode {
  --bg: #0f172a;
  --card-bg: rgba(30, 41, 59, 0.7);
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background gradient blobs */
.blob {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  border-radius: 50%;
}

.blob-1 { top: -200px; right: -100px; }
.blob-2 { bottom: -200px; left: -100px; }

/* Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.dark-mode .main-nav {
  background: rgba(15, 23, 42, 0.95);
}

.nav-center {
  display: flex;
  gap: 2rem;
}

.nav-center a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-center a.active {
  border-bottom: 2px solid var(--brand-pink);
}

.dark-mode .nav-center a {
  color: #94a3b8;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
}

.btn-primary {
  background: var(--brand-pink);
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.dark-mode .logo {
  color: white;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

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

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-pink), #ff4081);
  color: white;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d81b60, #e91e63);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: var(--transition);
  z-index: -1;
}

.btn-secondary:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brand-pink);
  color: var(--brand-pink);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(233, 30, 99, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 5%;
  position: relative;
  background: white;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  color: #333;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Sections */
.section-container {
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.section-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.section-item:nth-child(even) {
  direction: rtl;
}

.section-item:nth-child(even) .section-content {
  direction: ltr;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
  width: 100%;
}

.sub-actions {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

.sub-actions .btn {
  flex: 1;
  text-align: center;
}

.btn.full-width {
  width: 100%;
  text-align: center;
  display: block;
}

.section-actions .btn {
  padding: 1rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.section-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text);
  line-height: 1.4;
}

.section-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.section-image:hover img {
  transform: scale(1.05);
}

.highlight {
  color: var(--danger);
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 5%;
  background: #0f172a;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.comparison-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.comparison-content p {
  color: #94a3b8;
  margin-bottom: 2rem;
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8fafc;
}

.checkmark-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkmark-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkmark-list li i {
  color: var(--primary);
}

.comparison-visual {
  display: flex;
  gap: 1rem;
  position: relative;
}

.comparison-card {
  flex: 1;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.comparison-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.card-header {
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(0,0,0,0.3);
}

.card-header.then { color: #94a3b8; }
.card-header.now { background: var(--primary); color: white; }

.comparison-card:has(.card-header.now) {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.comparison-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .checkmark-list {
    align-items: center;
  }
}

/* Tabs System */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2rem;
  padding: 0.4rem;
  flex-wrap: wrap;
  background: var(--glass);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.tab-btn {
  padding: 1rem 2.5rem;
  border-radius: 100px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active[onclick*="features"] { 
  background: linear-gradient(135deg, #2563eb, #06b6d4); 
}
.tab-btn.active[onclick*="pricing"] { 
  background: linear-gradient(135deg, #7c3aed, #d946ef); 
}
.tab-btn.active[onclick*="faq"] { 
  background: linear-gradient(135deg, #059669, #10b981); 
}
.tab-btn.active[onclick*="contact"] { 
  background: linear-gradient(135deg, #ea580c, #f59e0b); 
}

.tab-btn.active {
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2), inset 0 0 10px rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.tab-btn.active svg {
  opacity: 1;
}

.tab-content {
  display: none;
  animation: tabSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-content.active {
  display: block;
}

@keyframes tabSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Feature detail cards enhancement */
.feature-card {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-card h3 {
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.pricing-card {
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.pricing-card.recommended {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: var(--text);
}

.pricing-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-card li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

/* FAQs */
.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.faq-item {
  background: var(--glass);
  margin-bottom: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  padding: 2rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.2);
}

.faq-item h4 {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.contact-left {
  text-align: left;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-method-card:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: var(--primary);
}

.dark-mode .contact-method-card:hover {
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.method-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-pink), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.method-info {
  display: flex;
  flex-direction: column;
}

.method-info label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.method-info a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.method-info a:hover {
  color: var(--primary);
}

.contact-availability {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 100px;
  width: fit-content;
}

.contact-form {
  /* Light mode: Elegant soft red background */
  background: #fffafa; 
  border: 2px solid transparent;
  background-image: linear-gradient(#fffafa, #fffafa), 
                    linear-gradient(135deg, var(--brand-pink), var(--primary));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dark-mode .contact-form {
  background: var(--surface);
  background-image: linear-gradient(var(--surface), var(--surface)), 
                    linear-gradient(135deg, var(--brand-pink), var(--primary));
}

.contact-form:hover {
  transform: translateY(-5px);
  background: #fff5f5; /* Slightly deeper on hover */
  background-image: linear-gradient(#fff5f5, #fff5f5), 
                    linear-gradient(135deg, var(--brand-pink), var(--primary));
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.1);
}

.dark-mode .contact-form:hover {
  background: var(--surface2);
  background-image: linear-gradient(var(--surface2), var(--surface2)), 
                    linear-gradient(135deg, var(--brand-pink), var(--primary));
}

.contact-form:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.15);
}

.form-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid-mini {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.contact-form input, 
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
    background: rgba(255,255,255,0.05);
    color: white;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.submit-btn {
    padding: 1rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Modern Footer */
footer {
  padding: 5rem 5% 2rem;
  background: #020617;
  color: #f8fafc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-pink), transparent);
  opacity: 0.3;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo {
  font-size: 1.8rem;
  color: white;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--brand-pink);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--brand-pink);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item div {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-contact-item b {
  display: block;
  color: white;
  margin-bottom: 0.2rem;
}

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

.footer-bottom p {
  color: #64748b;
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--brand-pink);
  transform: translateY(-3px);
  border-color: var(--brand-pink);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .section-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .section-item:nth-child(even) {
    direction: ltr;
  }
  .feature-list {
    align-items: center;
  }
  .section-actions {
    align-items: center;
  }
  .sub-actions {
    justify-content: center;
  }
}

/* Split Hero Styles (LocalWell Style) */
.retail-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 80vh;
  padding: 0 5%;
  gap: 2rem;
  background: white;
  overflow: hidden;
}

.hero-left {
  padding-right: 2rem;
  z-index: 2;
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #333;
  margin-bottom: 2rem;
}

.hero-left p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.expanded {
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  display: block;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.read-more {
  color: var(--brand-pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-dashboard-preview {
  margin-top: 3rem;
  max-width: 550px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.hero-dashboard-preview img {
  width: 100%;
  display: block;
}

/* Pricing variant for retail */
.pricing-card .btn-primary {
  background: var(--brand-pink);
}

.hero-right {
  position: relative;
  height: 100%;
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-image-wrapper img {
  height: 90vh;
  width: auto;
  object-fit: contain;
  margin-left: auto;
}

.image-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(to right, white, transparent);
  z-index: 1;
}

.btn.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* Registration & OTP Modal Gate */
/* Registration & OTP Modal Gate - Light Theme */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9); /* Clean light overlay */
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

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

.gate-modal {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 4rem);
  padding: 0;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gate-modal-content {
  overflow-y: auto;
  padding: 3rem;
  padding-top: 4.5rem;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}

.gate-modal-content::-webkit-scrollbar {
  width: 6px;
}

.gate-modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

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

.close-gate {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  color: #64748b;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.close-gate:hover {
  color: var(--brand-pink);
  background: rgba(0,0,0,0.1);
  transform: rotate(90deg);
}

.gate-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-pink), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.gate-modal h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.gate-modal p {
  color: #64748b;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.gate-form, .otp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.gate-form label, .otp-form label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: -0.75rem;
}

.gate-input {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  color: #1e293b;
  font-size: 1rem;
  transition: all 0.2s;
  width: 100%;
}

.gate-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.gate-btn {
  background: linear-gradient(135deg, var(--brand-pink), var(--primary));
  color: white;
  border: none;
  padding: 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
}

.gate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.otp-inputs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1rem 0;
}

.otp-box {
  width: 50px;
  height: 60px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  outline: none;
  transition: all 0.2s;
}

.otp-box:focus {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.resend-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  cursor: pointer;
}

@media (max-height: 700px) {
  .gate-modal-content {
    padding: 2rem;
    padding-top: 3.5rem;
  }
  .gate-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .gate-modal h2 {
    font-size: 1.5rem;
  }
}

/* Utilities */
.hidden {
  display: none !important;
}

.otp-box {
  width: 50px;
  height: 60px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  outline: none;
  transition: all 0.2s;
}

.otp-box:focus {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.resend-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  cursor: pointer;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .retail-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
  }
  .hero-left { padding-right: 0; }
  .hero-actions { justify-content: center; }
  .hero-dashboard-preview { transform: none; text-align: center; }
  .image-fade { display: none; }
  .hero-image-wrapper img { height: auto; width: 100%; }
}

/* Feature Overlapping Layout */
/* Feature Overlapping Layout */
.feature-row-split {
  display: grid;
  grid-template-columns: var(--text-width, 1.1fr) var(--image-width, 0.9fr);
  align-items: center;
  min-height: 65vh;
  padding: 0 5%;
  gap: 2rem;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.5s ease;
}

.feature-row-split.reverse {
  grid-template-columns: var(--image-width, 0.9fr) var(--text-width, 1.1fr);
  background: linear-gradient(to right, rgba(37,99,235,0.015), transparent);
}

.dark-mode .feature-row-split.reverse {
  background: linear-gradient(to right, rgba(255,255,255,0.02), transparent);
}

.feature-row-split:hover {
  background: radial-gradient(circle at center, rgba(37,99,235,0.03) 0%, var(--bg) 100%);
}

.dark-mode .feature-row-split:hover {
  background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, var(--bg) 100%);
}

.feature-text-side {
  padding: 4rem 2rem 4rem 0;
  z-index: 2;
  position: relative;
}

.feature-row-split.reverse .feature-text-side {
  order: 2;
  padding: 4rem 0 4rem 2rem;
}

.feature-text-side h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 30%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-mode .feature-text-side h2 {
  background: linear-gradient(135deg, #f8fafc 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-text-side p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 90%;
}

.feature-image-side {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.feature-row-split.reverse .feature-image-side {
  order: 1;
}

.feature-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.feature-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: right center;
  margin-left: auto;
  transform: scale(1.1) translateX(5%);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.feature-row-split:hover .feature-image-wrapper img {
  transform: scale(1.12) translateX(3%);
}

.feature-row-split.reverse .feature-image-wrapper img {
  margin-left: initial;
  margin-right: auto;
  object-position: left center;
  transform: scale(1.1) translateX(-5%);
}

.feature-row-split.reverse:hover .feature-image-wrapper img {
  transform: scale(1.12) translateX(-3%);
}

/* Enhancing overlap blend similar to retail-hero */
.fade-overlay-left, .fade-overlay-right {
  position: absolute;
  top: 0;
  width: 350px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fade-overlay-left {
  left: -2rem; 
  background: linear-gradient(to right, var(--bg) 0%, rgba(255,255,255,0.4) 30%, transparent 100%);
}

.fade-overlay-right {
  right: -2rem; 
  background: linear-gradient(to left, var(--bg) 0%, rgba(255,255,255,0.4) 30%, transparent 100%);
}

.fade-none {
  display: none !important;
}

.dark-mode .fade-overlay-left {
  background: linear-gradient(to right, var(--bg) 0%, rgba(15, 23, 42, 0.4) 30%, transparent 100%);
}

.dark-mode .fade-overlay-right {
  background: linear-gradient(to left, var(--bg) 0%, rgba(15, 23, 42, 0.4) 30%, transparent 100%);
}

.feature-row-split:hover .fade-overlay-left {
  background: linear-gradient(to right, rgba(253, 254, 255, 1) 0%, rgba(255,255,255,0.7) 40%, transparent 100%);
}

.dark-mode .fade-overlay-left {
  background: linear-gradient(to right, var(--bg) 0%, rgba(15, 23, 42, 0.7) 40%, transparent 100%);
}

.dark-mode .feature-row-split:hover .fade-overlay-left {
  background: linear-gradient(to right, rgba(14, 21, 38, 1) 0%, rgba(15, 23, 42, 0.7) 40%, transparent 100%);
}

.feature-row-split.reverse .fade-overlay-left {
  left: auto;
  right: -2rem;
  background: linear-gradient(to left, var(--bg) 0%, rgba(255,255,255,0.7) 40%, transparent 100%);
}

.feature-row-split.reverse:hover .fade-overlay-left {
  background: linear-gradient(to left, rgba(253, 254, 255, 1) 0%, rgba(255,255,255,0.7) 40%, transparent 100%);
}

.dark-mode .feature-row-split.reverse .fade-overlay-left {
  background: linear-gradient(to left, var(--bg) 0%, rgba(15, 23, 42, 0.7) 40%, transparent 100%);
}

.dark-mode .feature-row-split.reverse:hover .fade-overlay-left {
  background: linear-gradient(to left, rgba(14, 21, 38, 1) 0%, rgba(15, 23, 42, 0.7) 40%, transparent 100%);
}

@media (max-width: 1024px) {
  .feature-row-split, .feature-row-split.reverse {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: auto;
  }
  .feature-text-side, .feature-row-split.reverse .feature-text-side {
    max-width: 100%;
    padding: 3rem 5% !important;
    order: 2 !important;
  }
  .feature-image-side, .feature-row-split.reverse .feature-image-side {
    position: relative;
    width: 100%;
    height: 350px;
    order: 1 !important;
  }
  .feature-image-wrapper img, .feature-row-split.reverse .feature-image-wrapper img {
    height: 100%;
    width: 100%;
    max-height: none;
    min-height: auto;
    object-fit: cover;
    transform: none;
  }
  .feature-row-split:hover .feature-image-wrapper img,
  .feature-row-split.reverse:hover .feature-image-wrapper img {
    transform: none;
  }
  .fade-overlay-left, .feature-row-split.reverse .fade-overlay-left {
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(255,255,255,0.5) 40%, transparent 100%);
    width: 100%;
    height: 150px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .dark-mode .fade-overlay-left, .dark-mode .feature-row-split.reverse .fade-overlay-left {
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(15, 23, 42, 0.5) 40%, transparent 100%);
  }
}


/* Contact Section Enhancements */
.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-section .section-item {
  background: var(--glass);
  padding: 4rem;
  border-radius: 40px;
  border: 1px solid var(--glass-border);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-list .footer-contact-item {
  background: var(--bg);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  width: fit-content;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dark-mode .contact-info-list .footer-contact-item {
  background: rgba(255,255,255,0.05);
}

.contact-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.contact-form .gate-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.dark-mode .contact-form .gate-input {
  background: rgba(15, 23, 42, 0.5);
}

.contact-form .gate-input:focus {
  outline: none;
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .contact-section .section-item {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
}
