/* Custom properties */
:root {
  --navy: #0A1A2F;
  --navy-light: #0D2240;
  --navy-dark: #050D17;
  --blue: #0057B8;
  --blue-light: #E8F1FC;
  --teal: #00E0C8;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray: #6B7280;
  --dark: #1A1A2E;
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 32px; width: auto; }
.footer .nav-logo-img { height: 28px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--dark); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  padding: 0.6rem 1.5rem; background: var(--blue); color: white !important;
  border-radius: 6px; font-weight: 500; transition: background 0.3s !important;
}
.nav-cta:hover { background: #004a9e !important; }

.mobile-toggle { display: none; background: none; border: none; color: var(--dark); cursor: pointer; padding: 0.5rem; }
.mobile-menu {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid #E5E7EB; padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 0.75rem 0; color: var(--dark); text-decoration: none; font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid #f0f0f0; }
.mobile-menu a:hover { color: var(--blue); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding-top: 70px;
  background: #0A1A2F url('../images/hero-bg.png') right center / 75% 100% no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,26,47,0.92) 0%, rgba(10,26,47,0.7) 40%, rgba(10,26,47,0.3) 70%, rgba(10,26,47,0.1) 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem;
  display: flex; align-items: center; min-height: 520px;
}

.hero-content { max-width: 550px; }

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1.25rem;
}
.hero-content p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  padding: 0.875rem 2rem; background: var(--blue); color: white; text-decoration: none;
  font-weight: 600; border-radius: 8px; transition: all 0.3s; display: inline-block; font-size: 0.9rem;
}
.btn-primary:hover { background: #004a9e; box-shadow: 0 4px 20px rgba(0,87,184,0.4); }
.btn-outline {
  padding: 0.875rem 2rem; border: 2px solid rgba(255,255,255,0.4); color: white;
  text-decoration: none; font-weight: 600; border-radius: 8px; transition: all 0.3s; display: inline-block; font-size: 0.9rem;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline-blue {
  padding: 0.875rem 2rem; border: 2px solid var(--blue); color: var(--blue);
  text-decoration: none; font-weight: 600; border-radius: 8px; transition: all 0.3s; display: inline-block; font-size: 0.9rem;
}
.btn-outline-blue:hover { background: var(--blue); color: white; }

.hero-image { display: none; }

/* Floating network dots on hero */
.hero-dots {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; overflow: hidden;
}
.hero-dots::before {
  content: ''; position: absolute; top: 10%; left: 5%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,87,184,0.2) 0%, transparent 70%); border-radius: 50%;
}
.hero-dots::after {
  content: ''; position: absolute; bottom: 10%; right: 5%; width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(0,224,200,0.15) 0%, transparent 70%); border-radius: 50%;
}

@media (max-width: 768px) {
  .hero { background-position: center; }
  .hero::before { background: rgba(10,26,47,0.85); }
  .hero-inner { padding: 3rem 1.5rem; min-height: 60vh; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
}

/* ==================== SERVICES SECTION ==================== */
.services-section { padding: 5rem 1.5rem; background: var(--white); }
.services-section .section-inner { max-width: 1280px; margin: 0 auto; }

.section-label { text-align: center; color: var(--blue); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.section-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--dark); margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.service-card {
  padding: 2rem; border: 1px solid #E5E7EB; border-radius: 12px;
  transition: all 0.3s; text-align: center;
}
.service-card:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(0,87,184,0.1); transform: translateY(-4px); }

.service-card-icon {
  width: 56px; height: 56px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.service-card-icon img { width: 28px; height: 28px; }

.service-card h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==================== STATS / FEATURES BAR ==================== */
.stats-section {
  padding: 5rem 1.5rem; background: var(--gray-light); border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB;
}
.stats-inner { max-width: 1280px; margin: 0 auto; }
.stats-title { text-align: center; font-size: 1.75rem; font-weight: 700; color: var(--dark); margin-bottom: 3rem; }

.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.stat-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: 16px; border: 1px solid #E5E7EB;
  transition: all 0.3s;
}
.stat-card:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(0,87,184,0.08); transform: translateY(-4px); }
.stat-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.stat-icon img { width: 26px; height: 26px; }
.stat-card .number { font-size: 1.4rem; font-weight: 700; color: var(--blue); margin-bottom: 0.25rem; }
.stat-card .label { font-size: 0.85rem; color: var(--dark); font-weight: 600; margin-bottom: 0.5rem; }
.stat-card .stat-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==================== INDUSTRIES SECTION ==================== */
.industries-section {
  padding: 5rem 1.5rem; color: white; position: relative; overflow: hidden;
  background: var(--navy) url('../images/backgrounds/network-grid.svg') center/cover no-repeat;
}
.industries-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.industries-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }

.industries-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.industry-card {
  display: flex; align-items: center; gap: 0.75rem; padding: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  transition: all 0.3s;
}
.industry-card:hover { background: rgba(0,87,184,0.2); border-color: rgba(0,87,184,0.4); }
.industry-card-icon { width: 40px; height: 40px; background: rgba(0,87,184,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.industry-card-icon img { width: 20px; height: 20px; }
.industry-card p { font-size: 0.85rem; color: rgba(255,255,255,0.9); font-weight: 500; }

.industries-image { border-radius: 16px; overflow: hidden; height: 400px; position: relative; }
.industries-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .industries-inner { grid-template-columns: 1fr; }
  .industries-image { height: 280px; }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 4rem 1.5rem; text-align: center; position: relative; overflow: hidden;
  background: var(--blue) url('../images/cta-background.svg') center/cover no-repeat;
}
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.7; }
.btn-white {
  padding: 0.875rem 2rem; background: white; color: var(--blue); text-decoration: none;
  font-weight: 600; border-radius: 8px; transition: all 0.3s; display: inline-block; font-size: 0.9rem;
}
.btn-white:hover { background: #f0f0f0; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/* ==================== FOOTER ==================== */
.footer { background: var(--navy); padding: 4rem 1.5rem 2rem; color: white; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-col h4 { font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--teal); }

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

/* ==================== PAGE HEADERS ==================== */
.page-header {
  padding: 8rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0A1A2F, #0D2240);
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ==================== SERVICES PAGE DETAIL ==================== */
.services-detail-section { padding: 5rem 1.5rem; background: var(--white); }
.services-detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-detail { display: flex; flex-direction: column; background: var(--light); border-radius: 12px; padding: 2rem; }
.service-detail:nth-child(even) { flex-direction: column; }
.service-detail-image { flex: 1; border-radius: 12px; overflow: hidden; border: 1px solid #E5E7EB; }
.service-detail-image img { width: 100%; height: 270px; object-fit: cover; }
.service-detail-content { flex: 1; }
.service-detail-content h2 { display: flex; align-items: center; gap: 0.75rem; font-size: 1.4rem; color: var(--dark); margin-bottom: 1rem; }
.service-detail-content h2 img { width: 36px; height: 36px; }
.service-detail-content > p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.9rem; }
.feature-list { display: grid; grid-template-columns: 1fr; gap: 0.5rem; list-style: none; }
.feature-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray); }
.feature-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

@media (max-width: 992px) {
  .services-detail-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-detail-inner { grid-template-columns: 1fr; }
  .service-detail, .service-detail:nth-child(even) { flex-direction: column; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section { padding: 5rem 1.5rem; background: var(--light); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-inner .section-title { text-align: center; font-size: 2rem; margin-bottom: 3rem; color: var(--dark); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card { background: var(--white); border-radius: 12px; padding: 2rem; border: 1px solid #E5E7EB; transition: transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.pricing-category { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); margin-bottom: 0.5rem; }
.pricing-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 1rem; }
.pricing-amount { font-size: 2.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.pricing-amount span { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pricing-card > p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-badge { display: inline-block; background: #E6F9F5; color: #059669; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 20px; }

/* Calculator */
.calculator-wrapper { margin-top: 3rem; background: var(--white); border-radius: 12px; padding: 2.5rem; border: 1px solid #E5E7EB; }
.calculator-wrapper h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 1.5rem; text-align: center; }
.calculator { max-width: 600px; margin: 0 auto; }
.calc-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.calc-row label { flex: 1; font-size: 0.9rem; color: var(--dark); }
.calc-row input { width: 80px; padding: 0.5rem; border: 1px solid #E5E7EB; border-radius: 8px; font-size: 1rem; text-align: center; }
.calc-row input:focus { outline: none; border-color: var(--blue); }
.calc-rate { font-size: 0.8rem; color: var(--gray); width: 80px; }
.calc-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 2px solid var(--blue); }
.calc-total span:first-child { font-size: 1rem; font-weight: 600; color: var(--dark); }
#calc-result { font-size: 2rem; font-weight: 700; color: var(--blue); }

@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .calc-row { flex-wrap: wrap; }
  .calc-row label { flex: 1 1 100%; margin-bottom: 0.25rem; }
}

/* ==================== INDUSTRIES PAGE ==================== */
.industries-detail-section { padding: 5rem 1.5rem; background: var(--white); }
.industries-detail-inner { max-width: 1100px; margin: 0 auto; }
.industries-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.industry-detail-card {
  border: 1px solid #E5E7EB; border-radius: 12px; overflow: hidden; transition: all 0.3s;
}
.industry-detail-card:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(0,87,184,0.08); }
.industry-detail-card-image { height: 160px; position: relative; overflow: hidden; background: var(--navy); }
.industry-detail-card-image img { width: 100%; height: 100%; object-fit: cover; }
.industry-detail-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,47,0.8), transparent); }
.industry-detail-card-title { position: absolute; bottom: 1rem; left: 1rem; display: flex; align-items: center; gap: 0.75rem; z-index: 1; }
.industry-detail-card-title img { width: 32px; height: 32px; }
.industry-detail-card-title h3 { font-size: 1.1rem; font-weight: 600; color: white; }
.industry-detail-card-body { padding: 1.5rem; }
.industry-detail-card-body p { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.6; }
.industry-needs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.375rem; list-style: none; }
.industry-needs li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--gray); }
.industry-needs li::before { content: ''; width: 4px; height: 4px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ==================== CONTACT PAGE ==================== */
.contact-section { padding: 5rem 1.5rem; background: var(--white); }
.contact-inner { max-width: 1100px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.contact-form { background: var(--gray-light); border: 1px solid #E5E7EB; border-radius: 12px; padding: 2rem; }
.contact-form h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--dark); font-weight: 500; margin-bottom: 0.375rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem; background: white; border: 1px solid #D1D5DB;
  border-radius: 8px; color: var(--dark); font-size: 0.9rem; transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: none; min-height: 100px; }
.form-submit { width: 100%; padding: 0.875rem; background: var(--blue); color: white; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: #004a9e; }

.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }
.contact-item p { color: var(--gray); font-size: 0.85rem; }

.assessment-box { background: var(--blue-light); border: 1px solid rgba(0,87,184,0.15); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; }
.assessment-box h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.75rem; }
.assessment-box p { color: var(--gray); font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.6; }
.assessment-box ul { list-style: none; }
.assessment-box li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray); margin-bottom: 0.5rem; }
.assessment-box li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==================== ABOUT PAGE ==================== */
.about-section { padding: 5rem 1.5rem; background: var(--white); }
.about-inner { max-width: 1100px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-grid h2 { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.about-grid p { color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.about-image { border-radius: 12px; overflow: hidden; border: 1px solid #E5E7EB; height: 320px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.about-stat { text-align: center; padding: 1rem; background: var(--gray-light); border-radius: 10px; }
.about-stat .number { font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.about-stat .label { font-size: 0.7rem; color: var(--gray); margin-top: 0.25rem; }

.values-section { padding: 5rem 1.5rem; background: var(--gray-light); }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { text-align: center; padding: 2rem; background: white; border-radius: 12px; border: 1px solid #E5E7EB; }
.value-card img { width: 48px; height: 48px; margin: 0 auto 1rem; }
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

.certs-section { padding: 4rem 1.5rem; background: var(--white); text-align: center; }
.certs-inner { max-width: 1100px; margin: 0 auto; }
.certs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.cert-badge { padding: 0.625rem 1.25rem; background: var(--blue-light); border-radius: 8px; font-size: 0.8rem; color: var(--dark); font-weight: 500; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
