/* Fonts: Inter + Poppins */
:root {
  --brand: #004aad;
  --text: #0b1b33;
  --muted: #5a6b85;
  --bg: #ffffff;
  --card: #f6f8fb;
  --border: #e5ecf6;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(150%) blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; }
.brand-name { font-weight: 600; letter-spacing: .2px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 6px 10px; border-radius: 8px; }

/* Root variables and base styles */
:root {
  --brand: #004aad;
  --brand-light: #eaf2ff;
  --text: #0b1b33;
  --muted: #5a6b85;
  --bg: #ffffff;
  --card: #f6f8fb;
  --border: #e5ecf6;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}
/* Hero Section Styles */
.hero {
  padding: 40px 0;
  background: linear-gradient(135deg, #f7faff 0%, #eaf2ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.1);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.05);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 20px;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--brand);
  margin-top: 15px;
  border-radius: 2px;
}

.hero-content p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0, 74, 173, 0.15);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

/* Floating elements animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 50px;
    text-align: center;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 10px;
  }
  
  .hero-content h1::after {
    margin: 15px auto 0;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 85%;
    margin: 0 auto;
  }
}

/* Page Header */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--brand) 0%, #0056cc 100%);
  color: white;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: clamp(18px, 2.5vw, 20px);
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: #f7faff; }
.section-title { margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.2px; }
.section-subtitle { margin: 0 0 24px; color: var(--muted); }

/* Grid */
.grid { display: grid; gap: 18px; }
.features-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-grid { grid-template-columns: 1.1fr 1fr; gap: 28px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
}
.card.mini { padding: 16px; }
.feature-card .icon { color: var(--brand); background: #eaf2ff; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 10px; }
.feature-card h3 { margin: 4px 0 6px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.price-card { text-align: center; padding: 28px; }
.price-card h3 { margin: 0 0 6px; }
.price-card p { color: var(--muted); margin: 0 0 14px; }

/* Callout */
.callout { display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-md); }
.callout-text h2 { margin: 0 0 6px; }
.callout-text p { margin: 0; color: var(--muted); }
@media (max-width: 700px) { .callout { grid-template-columns: 1fr; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 10px; font-weight: 600; border: 1px solid transparent; transition: .2s ease; }
.btn-sm { padding: 8px 12px; font-size: 14px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: #eaf2ff; }

/* Contact */
.contact-block address { font-style: normal; color: var(--muted); }
.contact-form-block form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; font-size: 14px; }
input, textarea, select { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid #cfe0ff; border-color: #b6cffc; }
.form-actions { display: flex; align-items: center; gap: 12px; }
#form-status { font-size: 14px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--brand); color: #fff; padding: 26px 0; margin-top: 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center; }
.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-links a { color: #e6eeff; margin: 0 10px; }
.footer-links a:hover { color: #fff; }
.footer-social .social { color: #e6eeff; margin-left: 10px; }
.footer-social .social:hover { color: #fff; }
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

/* Responsive Nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 64px; right: 4%; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; flex-direction: column; gap: 12px; box-shadow: var(--shadow-md); display: none; }
  .nav-links.open { display: flex; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Text Center Utility */
.text-center { text-align: center; }

/* Features Page Styles */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.feature-detail.reverse {
  direction: rtl;
}
.feature-detail.reverse > * {
  direction: ltr;
}
.feature-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.feature-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.placeholder-image {
  font-size: 120px;
  background: #f0f4ff;
  border-radius: 20px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

@media (max-width: 768px) {
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-detail.reverse {
    direction: ltr;
  }
}

/* Solutions Page Styles */
.solution-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.solution-card.reverse {
  direction: rtl;
}
.solution-card.reverse > * {
  direction: ltr;
}
.solution-icon {
  font-size: 64px;
  background: #f0f4ff;
  border-radius: 16px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.solution-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.solution-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.solution-features h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--text);
}
.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.solution-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.solution-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.solution-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.process-step {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 16px;
}
.process-step h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.process-step p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .solution-card.reverse {
    direction: ltr;
  }
  .solution-icon {
    margin: 0 auto;
  }
}

/* Demo Page Styles */
.demo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.demo-benefit {
  text-align: center;
  padding: 24px;
}
.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.demo-benefit h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.demo-benefit p {
  margin: 0;
  color: var(--muted);
}

.demo-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.demo-form-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.demo-form-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.demo-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}
.demo-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.demo-info-card h3 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 18px;
}
.demo-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.demo-info-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.demo-info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.demo-preview-item {
  text-align: center;
  padding: 24px;
}
.preview-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.demo-preview-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.demo-preview-item p {
  margin: 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-content p {
  font-style: italic;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.6;
}
.testimonial-author strong {
  display: block;
  color: var(--brand);
  margin-bottom: 4px;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .demo-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Pricing Page Styles */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-tab {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.pricing-tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}
.pricing-tab:hover:not(.active) {
  border-color: var(--brand);
  background: #f0f4ff;
}
.save-badge {
  background: #ff6b35;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--brand);
  transform: scale(1.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-header h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.price {
  margin-bottom: 16px;
}
.currency {
  font-size: 20px;
  color: var(--muted);
}
.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
}
.period {
  font-size: 16px;
  color: var(--muted);
}
.pricing-header p {
  margin: 0;
  color: var(--muted);
}
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.pricing-cta {
  text-align: center;
}

.custom-pricing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.custom-pricing-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.custom-pricing-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.custom-features h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--text);
}
.custom-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.custom-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.custom-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}
.service-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
}

@media (max-width: 768px) {
  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card.featured {
    transform: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.story-content h2 {
  font-size: 32px;
  margin: 0 0 24px;
  color: var(--brand);
}
.story-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.mission-card, .vision-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mission-icon, .vision-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.mission-card h3, .vision-card h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.mission-card p, .vision-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.value-card h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.member-photo {
  font-size: 64px;
  margin-bottom: 16px;
}
.team-member h3 {
  margin: 0 0 8px;
  color: var(--brand);
}
.member-role {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}
.member-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-weight: 600;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.tech-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tech-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.tech-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.tech-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.award-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.award-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.award-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.award-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .company-story {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  margin: 0 0 16px;
  color: var(--brand);
}
.contact-info-card address,
.contact-info-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--brand);
  text-decoration: none;
}
.contact-info-card a:hover {
  text-decoration: underline;
}
.contact-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 12px !important;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.contact-form-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}
.contact-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-info-sidebar h3 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 18px;
}
.contact-info-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-sidebar li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.contact-info-sidebar li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.office-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.office-info h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.office-info p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.office-details h4 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text);
}
.office-details p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.office-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.support-channel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.channel-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.support-channel h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.support-channel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .office-location {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}ottom: 1px solid var(--border);
  backdrop-filter: saturate(150%) blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; }
.brand-name { font-weight: 600; letter-spacing: .2px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); padding: 6px 10px; border-radius: 8px; }

/* Root variables and base styles */
:root {
  --brand: #004aad;
  --brand-light: #eaf2ff;
  --text: #0b1b33;
  --muted: #5a6b85;
  --bg: #ffffff;
  --card: #f6f8fb;
  --border: #e5ecf6;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}
/* Hero Section Styles */
.hero {
  padding: 40px 0;
  background: linear-gradient(135deg, #f7faff 0%, #eaf2ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.1);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.05);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 20px;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--brand);
  margin-top: 15px;
  border-radius: 2px;
}

.hero-content p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 15px 30px rgba(0, 74, 173, 0.15);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
}

/* Floating elements animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero {
    padding: 30px 0 50px;
    text-align: center;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 10px;
  }
  
  .hero-content h1::after {
    margin: 15px auto 0;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 85%;
    margin: 0 auto;
  }
}

/* Page Header */
.page-header {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--brand) 0%, #0056cc 100%);
  color: white;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.page-header p {
  font-size: clamp(18px, 2.5vw, 20px);
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: #f7faff; }
.section-title { margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.2px; }
.section-subtitle { margin: 0 0 24px; color: var(--muted); }

/* Grid */
.grid { display: grid; gap: 18px; }
.features-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.why-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-grid { grid-template-columns: 1.1fr 1fr; gap: 28px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
}
.card.mini { padding: 16px; }
.feature-card .icon { color: var(--brand); background: #eaf2ff; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 10px; }
.feature-card h3 { margin: 4px 0 6px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

.price-card { text-align: center; padding: 28px; }
.price-card h3 { margin: 0 0 6px; }
.price-card p { color: var(--muted); margin: 0 0 14px; }

/* Callout */
.callout { display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-md); }
.callout-text h2 { margin: 0 0 6px; }
.callout-text p { margin: 0; color: var(--muted); }
@media (max-width: 700px) { .callout { grid-template-columns: 1fr; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 10px; font-weight: 600; border: 1px solid transparent; transition: .2s ease; }
.btn-sm { padding: 8px 12px; font-size: 14px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: #eaf2ff; }

/* Contact */
.contact-block address { font-style: normal; color: var(--muted); }
.contact-form-block form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; font-size: 14px; }
input, textarea, select { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid #cfe0ff; border-color: #b6cffc; }
.form-actions { display: flex; align-items: center; gap: 12px; }
#form-status { font-size: 14px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--brand); color: #fff; padding: 26px 0; margin-top: 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center; }
.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-links a { color: #e6eeff; margin: 0 10px; }
.footer-links a:hover { color: #fff; }
.footer-social .social { color: #e6eeff; margin-left: 10px; }
.footer-social .social:hover { color: #fff; }
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

/* Responsive Nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 64px; right: 4%; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; flex-direction: column; gap: 12px; box-shadow: var(--shadow-md); display: none; }
  .nav-links.open { display: flex; }
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Text Center Utility */
.text-center { text-align: center; }

/* Features Page Styles */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.feature-detail.reverse {
  direction: rtl;
}
.feature-detail.reverse > * {
  direction: ltr;
}
.feature-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.feature-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.placeholder-image {
  font-size: 120px;
  background: #f0f4ff;
  border-radius: 20px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
}

@media (max-width: 768px) {
  .feature-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-detail.reverse {
    direction: ltr;
  }
}

/* Solutions Page Styles */
.solution-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.solution-card.reverse {
  direction: rtl;
}
.solution-card.reverse > * {
  direction: ltr;
}
.solution-icon {
  font-size: 64px;
  background: #f0f4ff;
  border-radius: 16px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}
.solution-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.solution-content p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.solution-features h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--text);
}
.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.solution-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.solution-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.solution-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.process-step {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 16px;
}
.process-step h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.process-step p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .solution-card.reverse {
    direction: ltr;
  }
  .solution-icon {
    margin: 0 auto;
  }
}

/* Demo Page Styles */
.demo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.demo-benefit {
  text-align: center;
  padding: 24px;
}
.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.demo-benefit h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.demo-benefit p {
  margin: 0;
  color: var(--muted);
}

.demo-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.demo-form-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.demo-form-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.demo-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}
.demo-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.demo-info-card h3 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 18px;
}
.demo-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.demo-info-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.demo-info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.demo-preview-item {
  text-align: center;
  padding: 24px;
}
.preview-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.demo-preview-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.demo-preview-item p {
  margin: 0;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testimonial-content p {
  font-style: italic;
  margin: 0 0 16px;
  color: var(--text);
  line-height: 1.6;
}
.testimonial-author strong {
  display: block;
  color: var(--brand);
  margin-bottom: 4px;
}
.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .demo-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Pricing Page Styles */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-tab {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.pricing-tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}
.pricing-tab:hover:not(.active) {
  border-color: var(--brand);
  background: #f0f4ff;
}
.save-badge {
  background: #ff6b35;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--brand);
  transform: scale(1.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-header h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.price {
  margin-bottom: 16px;
}
.currency {
  font-size: 20px;
  color: var(--muted);
}
.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
}
.period {
  font-size: 16px;
  color: var(--muted);
}
.pricing-header p {
  margin: 0;
  color: var(--muted);
}
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pricing-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.pricing-cta {
  text-align: center;
}

.custom-pricing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.custom-pricing-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.custom-pricing-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.custom-features h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--text);
}
.custom-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.custom-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.custom-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}
.service-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
}

@media (max-width: 768px) {
  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card.featured {
    transform: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* About Page Styles */
.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.story-content h2 {
  font-size: 32px;
  margin: 0 0 24px;
  color: var(--brand);
}
.story-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.story-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.mission-card, .vision-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mission-icon, .vision-icon {
  font-size: 64px;
  margin-bottom: 24px;
}
.mission-card h3, .vision-card h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.mission-card p, .vision-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.value-card h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.member-photo {
  font-size: 64px;
  margin-bottom: 16px;
}
.team-member h3 {
  margin: 0 0 8px;
  color: var(--brand);
}
.member-role {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
}
.member-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 24px;
}
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-weight: 600;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.tech-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.tech-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.tech-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.tech-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.award-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.award-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.award-item h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.award-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .company-story {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  margin: 0 0 16px;
  color: var(--brand);
}
.contact-info-card address,
.contact-info-card p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--brand);
  text-decoration: none;
}
.contact-info-card a:hover {
  text-decoration: underline;
}
.contact-note {
  font-size: 14px;
  font-style: italic;
  margin-top: 12px !important;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-content h2 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--brand);
}
.contact-form-content p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: auto;
  margin: 0;
}
.contact-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-info-sidebar h3 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 18px;
}
.contact-info-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-sidebar li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.contact-info-sidebar li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.office-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.office-info h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--brand);
}
.office-info p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}
.office-details h4 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text);
}
.office-details p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.office-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.support-channel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.channel-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.support-channel h3 {
  margin: 0 0 12px;
  color: var(--brand);
}
.support-channel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .office-location {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}