/* ===== FH Consultants - Shared Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #14b8a6;
  --sky: #0ea5e9;
  --gold: #f59e0b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-width: 1200px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 4px 20px rgba(15,23,42,0.1);
  --shadow-lg: 0 10px 40px rgba(15,23,42,0.12);
  --radius: 12px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--gray-700); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* ===== ANIMATIONS ===== */
.an { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.an.vis { opacity: 1; transform: translateY(0); }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  padding: 0.5rem 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .si {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gray-300); transition: color 0.2s; }
.topbar a:hover { color: var(--teal-light); }
.tb-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.tb-left span { display: flex; align-items: center; gap: 0.4rem; }
.tb-right { display: flex; gap: 1rem; align-items: center; }
.tb-right a { font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  background: var(--navy-light);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav .si {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo img { height: 62px; }
.nav-links { display: flex; gap: 0.3rem; align-items: center; }
.nav-links a {
  color: var(--gray-300);
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.25s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(13,148,136,0.15);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-300); margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 9999;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-300);
  font-size: 1.15rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(13,148,136,0.15); color: var(--white); }
.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== SHARED LAYOUT ===== */
.si { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(14,165,233,0.1));
  color: var(--teal);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(13,148,136,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(13,148,136,0.4); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal);
  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.35s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 55px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ===== HERO (home) ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c1e3a 50%, #0a2540 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero .section-label { margin-bottom: 1.5rem; }
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--teal-light); }
.hero-desc {
  color: var(--gray-400);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.hero-stars { color: var(--gold); letter-spacing: 2px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--teal-light);
  font-weight: 700;
}
.hero-stat-label { color: var(--gray-400); font-size: 0.85rem; margin-top: 0.2rem; }

/* ===== SOFTWARE STRIP ===== */
.software-strip {
  background: var(--gray-50);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.sw-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sw-label { color: var(--gray-400); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.sw-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.sw-logo-img { height: 40px; opacity: 0.6; transition: opacity 0.3s, transform 0.3s; cursor: default; }
.sw-logo-img:hover { opacity: 1; transform: scale(1.1); }
@media (max-width: 768px) { .sw-logo-img { height: 30px; } .sw-logos { gap: 1.5rem; } }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(14,165,233,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 700; }
.service-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { background: var(--gray-50); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--gray-500); }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
}
.industry-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(14,165,233,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.industry-card h3 { font-size: 1rem; color: var(--navy); font-weight: 600; }
.industry-card p { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { padding: 2rem; }
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
.pricing-card { padding: 1.8rem 1.3rem; position: relative; font-size: 0.92rem; }
.pricing-card.featured {
  border: 2px solid var(--teal);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.pricing-price { font-family: var(--font-heading); font-size: 2.5rem; color: var(--navy); font-weight: 700; margin: 1rem 0; }
.pricing-price span { font-size: 0.9rem; color: var(--gray-500); font-family: var(--font-body); font-weight: 400; }
.pricing-features { list-style: none; margin: 1.5rem 0; }
.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-q {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  background: var(--white);
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--teal); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.5rem; }

/* ===== CONTACT ===== */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--gray-500); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.contact-detail-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(14,165,233,0.1));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}
.contact-detail-text { font-size: 0.92rem; color: var(--gray-600); }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.1rem; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.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; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== BLOG LISTING ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card { overflow: hidden; padding: 0; }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13,148,136,0.9);
  color: var(--white);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-icon { font-size: 2.5rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.02rem; color: var(--navy); line-height: 1.4; margin-bottom: 0.6rem; font-weight: 700; }
.blog-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-link { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.blog-card-link:hover { color: var(--teal-dark); }

/* Blog filters */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.blog-filter-btn {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.blog-filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.blog-filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c1e3a 100%);
  padding: 5rem 0 3rem;
}
.article-hero .section-label { margin-bottom: 1rem; }
.article-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}
.article-meta { color: var(--gray-400); font-size: 0.9rem; }
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.article-content p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.article-cta {
  background: linear-gradient(135deg, var(--gray-50), #e0f2fe);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.article-cta p { font-weight: 600; color: var(--navy); font-size: 1.1rem; margin-bottom: 1rem; }

/* ===== PAGE HERO (services, about, contact) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c1e3a 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p { color: var(--gray-400); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.about-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; }
.about-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--teal);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
  margin: 1.5rem 0;
}
.trust-points { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 3rem; }
.trust-point { text-align: center; padding: 1.5rem 1rem; }
.trust-point-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.trust-point h4 { font-size: 0.85rem; color: var(--navy); font-weight: 700; }
.trust-point p { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card { font-size: 1rem; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-points { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .tb-left { flex-direction: column; gap: 0.3rem; }
  section { padding: 3.5rem 0; }
  .page-hero h1 { font-size: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
  .article-hero h1 { font-size: 1.8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .blog-filters { gap: 0.3rem; }
  .blog-filter-btn { padding: 0.4rem 0.8rem; font-size: 0.78rem; }
}
