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

/* ===== CSS Variables ===== */
:root {
  --primary: #1773ea;
  --primary-dark: #1260c7;
  --primary-light: #e8f0fd;
  --secondary: #17a2b8;
  --secondary-light: #e8f6f8;
  --accent: #17a2b8;
  --dark-navy: #061224;
  --dark-navy-2: #0a1a30;
  --foreground: #111827;
  --muted: #6b7280;
  --muted-bg: #f8fafc;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --white: #ffffff;
  --emerald: #10b981;
  --amber: #f59e0b;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.06);
  --transition: all 0.2s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}
h1{
    color:#fff;
}

/* Default logo color (before scroll) */
.site-header .logo {
  color: #ffffff;
}

/* Logo color when header is scrolled */
.site-header.scrolled .logo {
  color: #000000; /* black */
}

/* If SVG icon is using currentColor */
.site-header.scrolled .logo svg {
  color: #000000;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(23,115,234,0.3);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 0 28px rgba(23,115,234,0.4); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; height: 56px; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}
.logo-icon {
  background: var(--primary);
  color: #fff;
  padding: 0.45rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #1773ea;
}
.mobile-toggle svg { width: 26px; height: 26px; }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { background: var(--primary-light); color: var(--primary); }
.nav-mobile a.active { background: var(--primary-light); color: var(--primary); }
.nav-mobile-cta { margin-top: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark-navy);
  color: var(--slate-300);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; margin-top: 1rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item .label { font-size: 0.8rem; color: var(--slate-400); }
.footer-contact-item .value { font-size: 0.875rem; color: #fff; font-weight: 500; }
.footer-contact-item a.phone { font-size: 1.1rem; font-weight: 700; color: #fff; transition: color 0.2s; }
.footer-contact-item a.phone:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: #fff;
  flex-wrap: wrap;
}

/* ===== Page Hero (dark) ===== */
.page-hero {
  background: var(--dark-navy);
  color: #fff;
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.15rem; color: var(--slate-300); max-width: 700px; margin: 0 auto; }

/* ===== Section spacing ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--dark-navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-light { background: var(--muted-bg); }
.section-white { background: #fff; }

/* ===== Section Heading ===== */
.section-heading { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-heading h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-heading p { font-size: 1.05rem; color: var(--muted); }

/* ===== Cards ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-body { padding: 2rem; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon.primary { background: var(--primary-light); color: var(--primary); }
.card-icon.secondary { background: var(--secondary-light); color: var(--secondary); }
.card-icon.emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-top: 1rem; transition: gap 0.2s; }
.card-link:hover { gap: 0.6rem; }

/* ===== Grid Layouts ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.grid-2-text { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ===== Stats Bar ===== */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stat-item { padding: 1rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-value { display: block; font-size: 2.25rem; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== Check List ===== */
.check-list { display: flex; flex-direction: column; gap: 1.25rem; }
.check-item { display: flex; gap: 1rem; align-items: flex-start; }
.check-item-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-item-icon svg { width: 18px; height: 18px; }
.check-item-icon.primary { background: var(--primary-light); color: var(--primary); }
.check-item h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.check-item p { font-size: 0.9rem; color: var(--muted); }

/* ===== Security Dashboard Mock ===== */
.security-mock {
  background: var(--dark-navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.security-mock::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, rgba(23,115,234,0.3), rgba(23,162,184,0.2));
  z-index: -1;
  transform: rotate(2deg);
}
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mock-title { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 600; }
.mock-title svg { width: 22px; height: 22px; color: var(--primary); }
.mock-badge { background: rgba(16,185,129,0.15); color: #34d399; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.75rem; border-radius: 99px; }
.mock-row { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.mock-row-left { display: flex; align-items: center; gap: 0.75rem; color: #cbd5e1; font-size: 0.9rem; font-weight: 500; }
.mock-row-icon { background: rgba(23,115,234,0.15); padding: 0.45rem; border-radius: 8px; display: flex; }
.mock-row-icon svg { width: 16px; height: 16px; color: var(--primary); }
.mock-check svg { width: 20px; height: 20px; color: #34d399; }
.mock-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.mock-footer p { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 0.75rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  position: relative;
  transform: translateY(-12px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 99px;
}
.pricing-name { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-name.accent { color: var(--primary); }
.pricing-desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 0.25rem; }
.pricing-price .amount { font-size: 3rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.pricing-price .period { font-size: 0.9rem; color: var(--muted); }
.pricing-billing { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-features { flex-grow: 1; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; }
.pricing-feature.included svg { color: var(--primary); }
.pricing-feature.excluded { color: var(--muted); }
.pricing-feature.excluded svg { color: #d1d5db; }

/* Billing toggle */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
.toggle-label { font-size: 0.9rem; color: var(--slate-300); font-weight: 500; }
.toggle-label.active { color: #fff; }
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255,255,255,0.2);
  border-radius: 99px;
  transition: 0.3s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}
input:checked + .toggle-slider { background-color: var(--primary); }
input:checked + .toggle-slider:before { transform: translateX(22px); }
.annual-badge { font-size: 0.75rem; color: #34d399; font-weight: 700; }

/* ===== Testimonials ===== */
.testimonial-card { background: var(--muted-bg); border-radius: var(--radius); padding: 2rem; }
.stars { display: flex; gap: 0.2rem; color: var(--amber); margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-text { font-size: 0.95rem; color: var(--foreground); font-weight: 500; line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; }
.author-name { font-size: 0.875rem; font-weight: 700; }
.author-loc { font-size: 0.75rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--foreground);
}
.faq-question:hover { background: var(--muted-bg); }
.faq-question .icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--primary); }
.faq-question.open .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ===== CTA Strip ===== */
.cta-strip { background: var(--dark-navy); color: #fff; padding: 5rem 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-strip p { font-size: 1.1rem; color: var(--slate-300); max-width: 600px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== Feature Cards (Features page) ===== */
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(23,115,234,0.2); }
.feature-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.5rem; display: block; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.feature-icon { width: 56px; height: 56px; background: var(--muted-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon.primary svg { color: var(--primary); }
.feature-icon.secondary svg { color: var(--secondary); }
.feature-icon.emerald svg { color: var(--emerald); }

/* ===== Services page ===== */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual { background: var(--muted-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-visual svg { width: 120px; height: 120px; opacity: 0.7; }
.service-visual::before { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.service-block-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-block-icon svg { width: 28px; height: 28px; }
.service-block h2 { font-size: 1.85rem; margin-bottom: 1rem; }
.service-block p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: 0.75rem; }
.service-list-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.service-list-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ===== Comparison Table ===== */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.compare-table th { font-weight: 700; font-size: 1rem; }
.compare-table .col-center { text-align: center; }
.compare-table .accent-col { color: var(--primary); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--muted-bg); }
.check-icon { color: var(--emerald); width: 20px; height: 20px; }
.x-icon { color: #d1d5db; width: 20px; height: 20px; }

/* ===== Legal pages ===== */
.legal-content { padding: 4rem 0; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-date { color: var(--muted); font-size: 0.875rem; margin-bottom: 3rem; display: block; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2.5rem; margin-bottom: 0.75rem; color: var(--foreground); }
.legal-content p { margin-bottom: 1rem; color: #374151; line-height: 1.75; font-size: 0.95rem; }
.legal-content ul, .legal-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content ul li, .legal-content ol li { margin-bottom: 0.5rem; color: #374151; line-height: 1.75; font-size: 0.95rem; list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto; }
.contact-info-title { font-size: 1.85rem; margin-bottom: 1rem; }
.contact-info-desc { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-phone-card { background: rgba(23,115,234,0.05); border: 1px solid rgba(23,115,234,0.2); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.contact-phone-icon { background: var(--primary); color: #fff; padding: 0.75rem; border-radius: 50%; display: flex; flex-shrink: 0; }
.contact-phone-icon svg { width: 24px; height: 24px; }
.contact-phone-label { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-phone-num { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.contact-phone-avail { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; font-weight: 600; }
.contact-phone-avail svg { width: 14px; height: 14px; }
.contact-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-mini-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; text-align: center; box-shadow: var(--shadow-sm); }
.contact-mini-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.contact-mini-icon svg { width: 22px; height: 22px; }
.contact-mini-card h3 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-mini-card a, .contact-mini-card p { font-size: 0.8rem; color: var(--muted); }
.contact-mini-card a { color: var(--primary); }

/* Contact Form */
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--foreground); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(23,115,234,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #065f46; border-radius: var(--radius-sm); padding: 1rem; text-align: center; font-weight: 500; margin-top: 1rem; }
.form-success.visible { display: block; }

/* ===== About page ===== */
.about-stat-grid { display: grid; gap: 1rem; }
.about-stat { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.about-stat .val { font-size: 2.5rem; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans', sans-serif; display: block; margin-bottom: 0.25rem; }
.about-stat .lbl { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.about-stats-wrap { background: var(--muted-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ===== Guarantee Section ===== */
.guarantee-strip {
  background: rgba(23,115,234,0.05);
  border-top: 1px solid rgba(23,115,234,0.1);
  border-bottom: 1px solid rgba(23,115,234,0.1);
  padding: 3.5rem 0;
  text-align: center;
}
.guarantee-icon { color: var(--primary); width: 48px; height: 48px; margin: 0 auto 1rem; }
.guarantee-strip h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.guarantee-strip p { color: var(--muted); max-width: 550px; margin: 0 auto; }

/* ===== Hero badge ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  background: rgba(23,115,234,0.12);
  border: 1px solid rgba(23,115,234,0.25);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }

/* ===== Trust Badges ===== */
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--slate-400); }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--secondary); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { gap: 1rem; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-toggle { display: block; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-text { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-mini-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-wrap { margin-top: 2rem; }
  .cta-btns { flex-direction: column; align-items: stretch; text-align: center; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.5rem; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-mini-cards { grid-template-columns: 1fr; }

}
