/* ============================================
   SmartOps Website — Global Styles
   Version: 1.0 | April 2026
============================================ */

:root {
  --navy:      #1B3D7A;
  --navy-dark: #0F2452;
  --teal:      #00B5B8;
  --teal-light:#26D0D3;
  --gold:      #F5A623;
  --dark:      #0D1B2A;
  --text:      #1A2B3C;
  --text-muted:#5D7A8A;
  --bg-light:  #F4F8FC;
  --bg-card:   #FFFFFF;
  --border:    #DDE8F0;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(27,61,122,0.10);
  --shadow-lg: 0 12px 48px rgba(27,61,122,0.15);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Tajawal', 'Cairo', 'Segoe UI', sans-serif;
  direction: rtl;
  text-align: right;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.3; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.35; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,181,184,0.1);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,181,184,0.25);
}
.section-label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.section-title { color: var(--navy); margin-bottom: 12px; }
.section-sub   { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto 48px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,181,184,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,181,184,0.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(27,61,122,0.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,61,122,0.08);
}
/* الـ navbar glass — النصوص داكنة والشعار واضح */
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo span {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  transition: var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--bg-light); }
.nav-links a.active { color: var(--navy); background: var(--bg-light); }

/* بعد التمرير — نفس الشكل بس أقوى */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(27,61,122,0.12);
  backdrop-filter: blur(10px);
}
.navbar.scrolled .navbar-logo span { color: var(--navy); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--navy); background: var(--bg-light); }
.navbar.scrolled .nav-links a.active { color: var(--navy); background: var(--bg-light); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-cta { margin-right: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-dark) 40%, #0B2D5F 70%, #0E3575 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,181,184,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,61,122,0.3) 0%, transparent 40%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,181,184,0.15);
  border: 1px solid rgba(0,181,184,0.35);
  color: var(--teal-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--teal); }
.hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--teal); }
.hero-stat span   { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: linear-gradient(145deg, #1A2B3C, #0D1B2A);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 20px 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,181,184,0.2);
  position: relative;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.phone-title { color: var(--white); font-weight: 700; font-size: 0.875rem; }
.phone-status { color: var(--teal); font-size: 0.7rem; }
.chat-msg {
  margin-bottom: 12px;
  font-size: 0.8rem;
  direction: rtl;
}
.chat-msg.user .bubble {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 14px;
  display: inline-block;
  max-width: 80%;
  float: right;
  clear: both;
}
.chat-msg.bot .bubble {
  background: rgba(0,181,184,0.15);
  border: 1px solid rgba(0,181,184,0.3);
  color: var(--teal-light);
  border-radius: 16px 16px 16px 4px;
  padding: 10px 14px;
  display: inline-block;
  max-width: 85%;
  float: left;
  clear: both;
}
.chat-msg::after { content: ''; display: table; clear: both; }
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(0,181,184,0.1);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 80%, 100% { transform: scale(1); opacity: 0.5; }
  40%            { transform: scale(1.2); opacity: 1; }
}

/* Float elements around phone */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
}
.hero-float:nth-child(2) { animation-delay: 2s; }
.hero-float:nth-child(3) { animation-delay: 4s; }
.float-1 { top: -20px; right: -40px; }
.float-2 { bottom: 60px; left: -50px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,181,184,0.3);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.card-icon.gold { background: linear-gradient(135deg, var(--gold), #e8901a); }
.card-icon.navy { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ===== FEATURE SECTION ===== */
.feature-section {
  background: linear-gradient(135deg, var(--dark), var(--navy-dark));
  position: relative;
  overflow: hidden;
}
.feature-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,181,184,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 42px; height: 42px;
  background: rgba(0,181,184,0.12);
  border: 1px solid rgba(0,181,184,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-top: 2px;
}
.feature-text h4 { color: var(--white); margin-bottom: 4px; }
.feature-text p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(to left, var(--teal), var(--navy));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0,181,184,0.35);
}
.step-card h3 { color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--teal);
  background: linear-gradient(145deg, #F0FCFC, #FFFFFF);
  box-shadow: 0 12px 48px rgba(0,181,184,0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-name { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.pricing-price { margin: 20px 0; }
.pricing-price .amount { font-size: 2.5rem; font-weight: 900; color: var(--navy); }
.pricing-price .currency { font-size: 1.2rem; color: var(--text-muted); }
.pricing-price .period { color: var(--text-muted); font-size: 0.875rem; }
.pricing-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(0,181,184,0.12);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.pricing-features li.disabled::before { content: '✗'; background: rgba(0,0,0,0.05); color: var(--text-muted); }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--navy); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 8px;
}
.stat-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,0.75); margin: 16px auto 40px; max-width: 500px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .arrow {
  width: 28px; height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question .arrow { background: var(--teal); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 16px 0 24px; max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo span { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.footer-tagline { font-size: 0.8rem; color: var(--teal); font-weight: 600; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: var(--teal); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 999;
  animation: wa-pulse 2s infinite;
}
.wa-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float a:hover { transform: scale(1.05); }
@keyframes wa-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(37,211,102,0)); }
  50%       { filter: drop-shadow(0 0 12px rgba(37,211,102,0.5)); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--navy-dark));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,181,184,0.1) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin: 16px auto 0; max-width: 600px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== UTILITY ===== */
.text-teal   { color: var(--teal) !important; }
.text-navy   { color: var(--navy) !important; }
.text-gold   { color: var(--gold) !important; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--text-muted) !important; }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--bg-light); }
.bg-dark     { background: var(--dark); }
.fw-700      { font-weight: 700; }
.fw-900      { font-weight: 900; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-16      { gap: 16px; }
.mb-0        { margin-bottom: 0 !important; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.tag {
  display: inline-block;
  background: rgba(0,181,184,0.1);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(0,181,184,0.2);
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid, .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-links.open + .nav-cta { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wa-float a span { display: none; }
  .wa-float a { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
