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

:root {
  /* Colors */
  --primary: #FF7A00;
  --primary-hover: #E06B00;
  --primary-light: #FFEEDB;
  --secondary: #0F4C81;
  --secondary-dark: #0A3357;
  --secondary-light: #D9E8F5;
  --accent: #3A86C8;
  --accent-hover: #2E6FA7;
  --accent-light: #F0F7FD;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-main: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-dark: #0F172A;
  --bg-dark-soft: #1E293B;
  --border-color: #E2E8F0;
  --white: #FFFFFF;
  
  /* Alerts */
  --success: #10B981;
  --success-light: #ECFDF5;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-premium: 0 20px 30px -5px rgba(15, 76, 129, 0.08), 0 10px 15px -5px rgba(15, 76, 129, 0.04);
  
  /* Borders and Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section common styles */
.section {
  padding: 80px 0;
}
.section-soft {
  background-color: var(--bg-soft);
}
.section-dark {
  background-color: var(--bg-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.section-dark .section-header p {
  color: var(--text-light);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 55px;
}
.logo-img {
  height: 100%;
  width: auto;
}

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

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 5px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--bg-dark-soft);
}

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

.footer-brand .logo-container {
  height: 65px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 10px;
  border-radius: var(--radius-md);
  display: inline-block;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-dark-soft);
  color: var(--white);
  transition: var(--transition-fast);
}
.footer-socials a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
}
.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
}
.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}
.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  background-color: var(--bg-dark-soft);
  border: 1px solid var(--bg-dark-soft);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-form button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}
.newsletter-form button:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid var(--bg-dark-soft);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-block {
  display: flex;
  width: 100%;
}

/* Cards & Layout components */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-light);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
}
.badge-secondary {
  background-color: var(--secondary-light);
  color: var(--secondary);
}

/* Hero section */
.hero {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, var(--accent-light) 0%, rgba(255,255,255,1) 60%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background-color: var(--primary-light);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  max-width: 500px;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
}
.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image svg {
  width: 90%;
  filter: drop-shadow(0 20px 40px rgba(15, 76, 129, 0.12));
}

/* How It Works */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  margin-top: 40px;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-light), var(--secondary-light), var(--primary-light));
  z-index: 1;
}
.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 6px solid var(--primary-light);
}
.step-card:nth-child(2) .step-num {
  background-color: var(--secondary);
  border-color: var(--secondary-light);
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}
.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.pricing-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 50px;
  margin-bottom: 20px;
}
.pricing-price {
  margin-bottom: 30px;
}
.pricing-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  vertical-align: top;
  position: relative;
  top: 5px;
}
.pricing-price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
}
.pricing-price .period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-features {
  margin-bottom: 40px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.pricing-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Feature grid for additional services */
.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}
.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.service-box:nth-child(2) .service-icon {
  background-color: var(--secondary-light);
  color: var(--secondary);
}
.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.service-box p {
  color: var(--text-muted);
  margin-bottom: 25px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.service-list li svg {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Interactive WhatsApp Store Simulation */
.demo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.demo-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.demo-product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.demo-product-card:hover {
  box-shadow: var(--shadow-md);
}
.product-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 700;
}
.product-info {
  padding: 20px;
}
.product-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.product-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 15px;
  height: 40px;
  overflow: hidden;
}
.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.15rem;
}
.btn-add-cart {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.btn-add-cart:hover {
  background-color: var(--primary-hover);
}

.demo-cart-panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 110px;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.cart-header h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-count-badge {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}
.cart-items-list {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  padding: 30px 0;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.cart-item-details {
  flex: 1;
}
.cart-item-name {
  font-weight: 600;
}
.cart-item-price {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item-controls button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.cart-item-controls button:hover {
  background: var(--border-color);
}
.cart-total-row {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary);
}

.simulated-message-box {
  background-color: #E6F4EA;
  border: 1px dashed #A3D7A6;
  border-radius: var(--radius-md);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-family: 'Courier New', Courier, monospace;
  white-space: pre-wrap;
  color: #137333;
  display: none;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--bg-soft);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-answer p {
  padding-top: 15px;
}

/* Contact page styles & Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contact-info-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 35px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-card h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
.contact-method-card p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-soft);
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.contact-map-sim {
  height: 250px;
  background: linear-gradient(135deg, #e4e7eb 0%, #cbd5e1 100%);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}
.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.4); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 122, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

/* Blog list, grid, and layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-light);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 3rem;
  position: relative;
}
.blog-card-img-gradient-1 {
  background: linear-gradient(135deg, #FF7A00 0%, #FFB066 100%);
  color: var(--white);
}
.blog-card-img-gradient-2 {
  background: linear-gradient(135deg, #0F4C81 0%, #3A86C8 100%);
  color: var(--white);
}
.blog-card-img-gradient-3 {
  background: linear-gradient(135deg, #6366F1 0%, #A5B4FC 100%);
  color: var(--white);
}
.blog-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}
.blog-read-more {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.blog-read-more:hover {
  color: var(--primary-hover);
}
.blog-read-more:hover svg {
  transform: translateX(4px);
}
.blog-read-more svg {
  transition: var(--transition-fast);
}

/* Blog Single Page Viewer styling */
.blog-post-layout {
  max-width: 800px;
  margin: 0 auto;
}
.blog-post-header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-post-header h1 {
  font-size: 2.75rem;
  margin: 15px 0 20px 0;
  line-height: 1.2;
}
.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}
.blog-post-cover {
  height: 350px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  box-shadow: var(--shadow-md);
}
.blog-post-content {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
}
.blog-post-content p {
  margin-bottom: 25px;
}
.blog-post-content h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px 0;
}
.blog-post-content h3 {
  font-size: 1.35rem;
  margin: 30px 0 15px 0;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--secondary);
  font-size: 1.2rem;
}
.blog-post-content ul, .blog-post-content ol {
  margin-bottom: 25px;
  padding-left: 25px;
}
.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-share {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.share-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--secondary);
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.author-box {
  display: flex;
  gap: 20px;
  background-color: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 60px;
}
.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.author-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-color: var(--primary);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-banner p {
  color: var(--secondary-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 35px auto;
}
.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Plans Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 60px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}
.comparison-table th {
  background-color: var(--bg-soft);
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-weight: 700;
}
.comparison-table td:first-child, .comparison-table th:first-child {
  font-weight: 600;
  color: var(--secondary);
}
.comparison-table tr:hover td {
  background-color: var(--bg-soft);
}
.text-center {
  text-align: center;
}
.icon-check {
  color: var(--success);
}
.icon-times {
  color: var(--text-light);
}

/* Sub-page Hero section style */
.sub-hero {
  padding: 130px 0 60px 0;
  background: linear-gradient(135deg, var(--secondary-light) 0%, rgba(255,255,255,1) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.sub-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 15px;
}
.sub-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ROI Simulator on plans page */
.roi-simulator {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 80px;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.roi-control h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.roi-control p {
  color: var(--text-muted);
  margin-bottom: 25px;
}
.roi-slider-group {
  margin-bottom: 30px;
}
.roi-slider-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 10px;
}
.roi-slider {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
}
.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.roi-results {
  background-color: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
}
.roi-result-card {
  margin-bottom: 20px;
}
.roi-result-card:last-child {
  margin-bottom: 0;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.roi-result-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.roi-result-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}
.roi-result-value.saving {
  color: var(--success);
}

/* Animations classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Menu and Grids */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-card.popular {
    transform: none;
  }
  .demo-layout {
    grid-template-columns: 1fr;
  }
  .demo-cart-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .grid-2, .grid-3, .grid-4, .services-container, .contact-layout, .blog-grid, .roi-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Navigation */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 24px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero {
    padding: 120px 0 60px 0;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 30px auto;
  }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats {
    margin: 40px auto 0 auto;
    justify-content: center;
  }
  .steps-container {
    flex-direction: column;
    gap: 40px;
  }
  .steps-container::before {
    display: none;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }
  .cta-banner h2 {
    font-size: 1.85rem;
  }
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-buttons .btn {
    width: 100%;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
