:root {
  --primary: #16c7c2;
  --primary-light: #14d2c8;
  --primary-gradient: linear-gradient(to right, #14d2c8, #2e86ff);
  --secondary: #25d366; /* WhatsApp Green */
  --bg: #f0f7f7;
  --text: #2d3436;
  --text-muted: #636e72;
  --white: #ffffff;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --chat-bg: #e5ddd5;
  --chat-msg-agent: #ffffff;
  --chat-msg-user: #dcf8c6;
  --chat-msg-user-text: #111;
  --chat-header: #075e54;
  --chat-card-bg: #f8f9fa;
  --chat-card-media-bg: #eee;
  --chat-tip-bg: #fff7ed;
  --chat-tip-border: #f97316;
  --chat-border: #eee;
}

[data-theme='dark'] {
  --bg: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #bdc3c7;
  --white: #2d3436;
  --card-bg: #2d3436;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --chat-bg: #0b141a;
  --chat-msg-agent: #202c33;
  --chat-msg-user: #005c4b;
  --chat-msg-user-text: #ffffff;
  --chat-header: #202c33;
  --chat-card-bg: #111b21;
  --chat-card-media-bg: #2d3436;
  --chat-tip-bg: #1c1917;
  --chat-tip-border: #ea580c;
  --chat-border: #2a3942;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition:
    background-color 0.3s,
    color 0.3s;
}

body {
  font-family: 'Assistant', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:visited {
  color: var(--primary);
}

a:hover {
  opacity: 0.8;
}

.main-wrapper {
  width: 100%;
  background-color: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-top: 60px; /* Reduced space for fixed header */
  min-height: 100vh;
}

@media (max-width: 768px) {
  .main-wrapper {
    padding-top: 40px;
  }
}

[data-theme='dark'] .main-wrapper {
  background-color: var(--bg);
}

.text-center {
  text-align: center !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Theme Toggle --- */
.header-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.theme-toggle {
  background: var(--card-bg);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.theme-toggle:hover {
  background: var(--primary);
  color: white;
  transform: rotate(15deg);
}

/* --- Sticky Header --- */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(240, 247, 247, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme='dark'] .sticky-header {
  background: rgba(26, 26, 26, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
}

.logo-nav-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-nav {
  display: flex;
  align-items: center;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 8px;
}

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

.header-nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.header-nav ul li a:hover {
  color: var(--primary);
}

.mobile-only {
  display: none;
}

.header-nav ul li a.nav-cta,
.nav-cta {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.header-nav ul li a.nav-cta:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white !important;
}

/* --- Mobile Nav --- */
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 81px;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 30px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 1999;
    border-bottom: 3px solid var(--primary);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .header-nav ul li a {
    font-size: 1.2rem;
    display: block;
    padding: 10px;
  }

  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 10px 20px;
  }

  .header-controls {
    gap: 12px;
  }

  .logo img {
    height: 40px;
    width: 40px;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Hero Section --- */
.hero {
  padding: 40px 0;
  text-align: right;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 30px; /* Reduced gap */
}

.hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
  .hero-text {
    flex: 1;
    text-align: right;
    padding-left: 40px;
  }
  .hero-image-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
  }
}

.hero-image-circle {
  position: relative;
  width: 100%; /* Better for mobile */
  max-width: 320px; /* Limit size on small screens */
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-image-circle {
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .hero-image-circle {
    max-width: 650px;
  }
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(22, 199, 194, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

h1 span {
  color: var(--primary);
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #075e54 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.cta-button:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.cta-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* --- Steps Section --- */
.steps {
  background: var(--bg);
  padding: 10px 0 30px; /* Reduced top padding */
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/circuts_clean.png');
  background-size: cover;
  background-position: center;
  opacity: 1; /* Much more visible */
  z-index: 0;
  pointer-events: none;
}

[data-theme='dark'] .steps::before {
  opacity: 1;
  filter: invert(1);
}

.steps .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.step-card {
  padding: 20px;
  border-radius: 45px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.step-1 {
  background-color: #e6fffa;
  border-color: #b2f5ea;
}
.step-2 {
  background-color: #f3e8ff;
  border-color: #ead6ff;
}
.step-3 {
  background-color: #e0f2fe;
  border-color: #bae6fd;
}

[data-theme='dark'] .step-1 {
  background-color: rgba(56, 178, 172, 0.15);
  border-color: rgba(56, 178, 172, 0.2);
}
[data-theme='dark'] .step-2 {
  background-color: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}
[data-theme='dark'] .step-3 {
  background-color: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.step-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.step-1 .step-icon-container {
  background: linear-gradient(135deg, #81e6d9 0%, #319795 100%);
}
.step-2 .step-icon-container {
  background: linear-gradient(135deg, #d49bff 0%, #7c3aed 100%);
}
.step-3 .step-icon-container {
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%);
}

.step-number {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.step-1 .step-number {
  background-color: #38b2ac;
}
.step-2 .step-number {
  background-color: #9333ea;
}
.step-3 .step-number {
  background-color: #0284c7;
}

.step-icon {
  font-size: 1.5rem;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.step-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
  line-height: 1.2;
  min-height: 4.4rem; /* Aligns descriptions by giving all titles same space */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px;
  border-radius: 2px;
  opacity: 0.6;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 90%;
  margin-inline: auto; /* Centering the 90% block */
  text-wrap: balance;
}

/* --- Examples Section --- */
.examples {
  padding: 10px 0;
  background-color: var(--bg);
}

.whatsapp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

@media (max-width: 900px) {
  .whatsapp-grid {
    grid-template-columns: 1fr;
  }
}

.chat-label {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.whatsapp-container {
  padding: 0;
}

.whatsapp-chat {
  max-width: 450px;
  margin: 0 auto;
  background: var(--chat-bg);
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.2);
  border: 12px solid #333;
  height: 750px; /* Increased height */
  display: flex;
  flex-direction: column;
}

.chat-header {
  background-color: var(--chat-header);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme='dark'] .chat-body {
  background-color: #0b141a;
  background-blend-mode: color-burn;
}

[data-theme='dark'] .whatsapp-chat {
  border-color: #111;
}

.chat-body {
  padding: 10px 10px 40px; /* Added bottom padding */
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-repeat: repeat;
  background-size: 200px;
  overflow-y: auto;
  flex-grow: 1;
  scrollbar-width: none;
}

.chat-body::-webkit-scrollbar {
  display: none;
}

.msg {
  max-width: 85%; /* Wider bubbles for multi-columns */
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  text-align: right;
  line-height: 1.3;
}

.msg p {
  margin: 0 0 4px 0;
}

.msg p:last-child {
  margin-bottom: 0;
}

.msg.agent {
  background: var(--chat-msg-agent);
  color: var(--text);
  align-self: flex-start;
  border-top-right-radius: 12px;
  border-top-left-radius: 0;
}

.msg.user {
  background: var(--chat-msg-user);
  color: var(--chat-msg-user-text);
  align-self: flex-end;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

/* Card Styles */
.msg.agent.card {
  padding: 8px;
  max-width: 80%;
  background-color: var(--chat-card-bg) !important;
}

.card-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--chat-card-media-bg);
  border-radius: 8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* List Styles */
.msg.agent.list {
  padding: 10px;
}

.list-title {
  font-weight: 700;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--chat-border);
  padding-bottom: 4px;
}

.list-item {
  padding: 2px 0;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.msg.agent.tip {
  border-right: 4px solid var(--chat-tip-border);
  background: var(--chat-tip-bg);
  padding: 8px 12px;
}

.msg.agent.recipe-card {
  padding: 0;
  overflow: hidden;
  max-width: 85%;
  background-color: var(--chat-msg-agent) !important;
  display: flex;
  flex-direction: column;
}

.recipe-content {
  padding: 12px 14px 8px;
}

.recipe-content h4 {
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--text);
}

.recipe-tags {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.recipe-content p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.recipe-author {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.9;
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px dashed var(--chat-border);
}

.delete-btn {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: none;
  border-top: 1px solid var(--chat-border);
  color: #ef4444;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.2s;
}

[data-theme='dark'] .delete-btn {
  background: rgba(255, 255, 255, 0.03);
}

.delete-btn:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.msg-link {
  color: #00a5f4;
  text-decoration: underline;
  word-break: break-all;
}

.msg-time {
  font-size: 0.7rem;
  color: #8e8e93;
  text-align: left;
  display: block;
  margin-top: 2px;
}

/* --- Highlights Section --- */
.highlights {
  padding: 50px 0;
  background-color: var(--white);
}

.highlights-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 00px;
}

@media (min-width: 768px) {
  .highlights-container {
    flex-direction: row;
    text-align: right;
    align-items: center;
  }
  .highlights-text {
    flex: 1;
  }
  .highlights-visual {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

.highlights-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text);
  line-height: 1.2;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.highlights-list li span {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.5rem;
  min-width: 30px;
  height: 30px;
  background: rgba(22, 199, 194, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlights-icon-box {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.highlights-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Footer --- */
.footer-cta {
  padding: 60px 0;
  background-color: var(--bg);
  text-align: center;
}

.footer-cta-card {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.footer-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.footer-cta-card p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 600;
}

footer {
  margin-top: auto;
  padding: 80px 0 40px;
  background: #1a1a1a;
  color: #ffffff;
  border-top: 4px solid var(--primary);
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition:
    transform 0.3s,
    background 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-icon[title='WhatsApp']:hover {
  background: #25d366;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-name-footer {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
}

.footer-desc {
  color: #bdc3c7;
  font-size: 1rem;
  max-width: 300px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #636e72;
  font-size: 0.9rem;
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    padding: 20px 0 60px; /* Restored some breathing room */
    text-align: center;
  }
  .steps {
    padding: 00px 0 30px; /* Added spacing between sections */
  }
  .hero-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 20px; /* Increased gap between image and text */
    width: 100%;
    overflow: hidden;
  }
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-text * {
    text-align: center;
  }
  .hero-desc {
    text-align: center;
  }
  h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem); /* Slightly larger for impact */
    font-weight: 900; /* Extra bold */
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    letter-spacing: -0.02em;
    line-height: 1.5; /* Better readability */
    margin-bottom: 20px;
  }
  .hero-desc {
    font-size: 1.1rem; /* Slightly larger */
    line-height: 1.6; /* More airy */
    text-align: center;
    color: var(--text); /* More prominent color */
    opacity: 0.95;
    margin-bottom: 30px;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  .badge {
    font-size: 0.8rem;
    padding: 6px 15px;
    white-space: normal;
    text-align: center;
  }
  .highlights-text {
    text-align: center;
  }
  .highlights-text h2 {
    text-align: center;
  }
  .highlights-list {
    display: inline-block;
    text-align: right;
  }
  .highlights-list li {
    justify-content: flex-start;
  }
  footer {
    text-align: center;
  }
  .footer-grid {
    text-align: center;
  }
  .footer-column {
    text-align: center;
  }
  .footer-column ul {
    display: inline-block;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-desc {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .whatsapp-chat {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-width: 8px;
  }
  .highlights-icon-box img {
    width: 100%;
    height: 100%;
  }
  .hero-image-circle img {
    width: 100%;
    height: 100%;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-box {
  background: var(--card-bg);
  color: var(--text);
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  border-radius: var(--radius);
  position: relative;
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: sticky;
  top: -20px;
  left: -20px;
  float: left;
  z-index: 100;
  background: var(--card-bg);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: -20px;
  margin-left: -20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.modal-close:hover {
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.modal-box h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--primary);
}

.modal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.modal-content h3 {
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

/* Scrollbar for modal */
.modal-box::-webkit-scrollbar {
  width: 8px;
}
.modal-box::-webkit-scrollbar-track {
  background: transparent;
}
.modal-box::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 10px;
}

/* --- SEO Block --- */
.seo-block {
  padding: 60px 0;
  background-color: var(--bg);
}

.seo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
}

.seo-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.seo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.seo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.seo-content ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

/* --- FAQ Section --- */
.faq-section {
  padding: 60px 0;
  background-color: var(--bg);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: right;
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

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