/* TechCriti — IT solutions theme inspired by the iTodo layout */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #eef3ff;
  --navy: #0f1225;
  --heading: #0d152e;
  --text: #6a7184;
  --muted: #8b92a5;
  --bg: #f6f8fc;
  --line: #e8ecf4;
  --footer: #12102c;
  --cta: #171534;
  --white: #ffffff;
  --danger: #e11d48;
  --ok: #059669;
  --radius: 10px;
  --pill: 50px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 6px 24px rgba(15, 23, 42, 0.06);
  --container: 1200px;
  --font: "Poppins", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.container { width: min(100% - 30px, var(--container)); margin-inline: auto; }

h1,h2,h3,h4,h5 { color: var(--heading); font-weight: 700; line-height: 1.25; }
.sec-kicker {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title { font-size: 36px; margin-bottom: 14px; }
.sec-lead { max-width: 640px; margin: 0 auto 20px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--pill);
  padding: 13px 28px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  transition: 0.25s;
}
.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); box-shadow: none; }
.btn-white:hover { background: var(--heading); color: #fff; border-color: var(--heading); }
.btn-outline { background: transparent; color: var(--primary); box-shadow: none; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--heading); border-color: var(--heading); box-shadow: none; }

/* Topbar */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.topbar a:hover { color: var(--primary); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  color: var(--heading); font-size: 13px;
}

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-sticky { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img, .logo svg { width: 46px; height: 46px; }
.logo-word {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.5px;
}
.logo-word span { color: var(--primary); }
.site-footer .logo-word { color: #fff; }
.nav-wrap { margin-left: 0; flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
}
.nav > li > a:hover,
.nav > li.active > a,
.nav > li > a.is-active { color: var(--primary); }
.nav .caret { font-size: 10px; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
  border: 1px solid var(--line);
}
.nav > li:hover > .dropdown,
.nav > li.open > .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: block;
  padding: 9px 20px;
  color: var(--heading);
  font-weight: 500;
  font-size: 14px;
}
.dropdown a:hover, .dropdown a.is-active { color: var(--primary); background: var(--primary-soft); }
.header-tools { display: flex; align-items: center; gap: 8px; margin-left: 12px; }
.header-tools a, .header-tools button {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 0; background: transparent; color: var(--heading); cursor: pointer; font-size: 15px;
}
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--primary); color: #fff;
  font-size: 10px; min-width: 16px; height: 16px;
  border-radius: 50%; display: grid; place-items: center; font-weight: 700;
}
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: var(--primary-soft);
  color: var(--primary); border-radius: 8px; cursor: pointer; font-size: 18px;
}

/* Heroes */
.home-hero, .page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
}
.home-hero { min-height: 640px; display: flex; align-items: center; }
.page-hero { min-height: 380px; display: flex; align-items: center; }
.home-hero::before, .page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(12, 18, 46, 0.82) 0%, rgba(37, 99, 235, 0.45) 58%, rgba(12, 18, 46, 0.35) 100%);
}
.hero-kicker {
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: rgba(255,255,255,.85);
}
.home-hero h1, .page-hero h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 16px;
}
.home-hero p { max-width: 480px; color: rgba(255,255,255,.86); margin-bottom: 28px; }
.page-hero-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.breadcrumb {
  background: var(--primary);
  color: #fff;
  border-radius: var(--pill);
  padding: 14px 26px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  white-space: nowrap;
}
.breadcrumb a { color: #fff; }
.breadcrumb span { opacity: .85; margin: 0 8px; }

/* Sections */
.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.bg-light { background: var(--bg); }
.bg-white { background: #fff; }

/* Feature trio */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-item { text-align: center; padding: 10px 18px; }
.feature-icon {
  width: 72px; height: 72px; margin: 0 auto 18px;
  border: 1px solid #dbe4f5;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--primary); font-size: 26px;
  transition: 0.25s;
}
.feature-item:hover .feature-icon {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(37,99,235,.25);
}
.feature-item h3 { font-size: 20px; margin-bottom: 8px; }

/* About split */
.about-grid, .split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}
.dot-pattern {
  position: absolute; left: -28px; top: -28px;
  width: 140px; height: 140px;
  background-image: radial-gradient(#c5d4f5 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  z-index: -1;
}
.play-btn {
  position: absolute; left: 18px; top: 18px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff; color: var(--primary);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  border: 0; cursor: pointer; font-size: 16px;
}
.progress-list { margin: 22px 0 18px; }
.progress-row { margin-bottom: 16px; }
.progress-row .meta { display: flex; justify-content: space-between; font-weight: 600; color: var(--heading); font-size: 14px; margin-bottom: 6px; }
.bar { height: 6px; background: #e8eef8; border-radius: 20px; overflow: hidden; }
.bar span { display: block; height: 100%; background: var(--primary); border-radius: 20px; }
.check-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.check-row span { display: flex; align-items: center; gap: 8px; color: var(--heading); font-weight: 600; font-size: 14px; }
.check-row i { color: var(--primary); }

/* Counters */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: center;
}
.counter-item strong {
  display: block;
  font-size: 42px;
  color: var(--heading);
  font-weight: 800;
}
.counter-item p { color: var(--muted); font-size: 14px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px 24px;
  position: relative;
  min-height: 230px;
  transition: 0.25s;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.process-num {
  position: absolute; right: 18px; top: 14px;
  font-size: 28px; font-weight: 800; color: #e9eef8;
}
.process-card i { color: var(--primary); font-size: 28px; margin-bottom: 16px; display: block; }
.process-card h3 { font-size: 18px; margin-bottom: 8px; }

/* Video banner */
.video-banner {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.video-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(15, 18, 40, 0.62);
}
.video-banner h2 { color: #fff; font-size: 42px; max-width: 640px; margin: 16px auto 0; }
.video-play {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--heading);
  display: grid; place-items: center; font-size: 26px; border: 0; cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255,255,255,.18);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.35); }
  70% { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(37,99,235,.35);
}
.price-card .plan { font-weight: 600; margin-bottom: 8px; }
.price-card .amount { font-size: 40px; font-weight: 800; color: var(--heading); margin: 6px 0 18px; }
.price-card.featured .amount, .price-card.featured .plan, .price-card.featured h3 { color: #fff; }
.price-card ul { text-align: left; margin: 0 auto 24px; max-width: 230px; }
.price-card li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 14px;
}
.price-card li i { color: var(--primary); }
.price-card.featured li i { color: #fff; }
.price-card.featured .btn { background: #fff; color: var(--primary); border-color: #fff; box-shadow: none; }
.price-card.featured .btn:hover { background: var(--heading); color: #fff; border-color: var(--heading); }

/* Icon strip */
.icon-strip {
  background: var(--primary);
  padding: 38px 0;
}
.icon-strip-row {
  display: flex; justify-content: space-around; align-items: center; gap: 18px; flex-wrap: wrap;
}
.icon-strip i { color: #fff; font-size: 34px; opacity: .95; }

/* Blog cards */
.blog-grid, .card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card, .project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: 0.25s;
}
.blog-card:hover, .project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card img, .project-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-body, .project-body { padding: 20px 22px 24px; }
.meta-line { display: flex; gap: 14px; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.meta-line i { color: var(--primary); }
.blog-card h3, .project-card h3 { font-size: 18px; margin-bottom: 10px; }
.read-more { color: var(--primary); font-weight: 600; font-size: 14px; }
.read-more i { font-size: 12px; }

/* Testimonials */
.testi-wrap { position: relative; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.testi-card .who { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.testi-card h3 { font-size: 18px; margin-bottom: 10px; }
.stars { color: #f5b301; font-size: 13px; margin: 12px 0 6px; }
.quote-nav {
  display: flex; justify-content: center; gap: 16px; margin-top: 28px; align-items: center;
}
.quote-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff; border: 0; cursor: pointer;
}
.quote-mid { color: var(--primary); font-size: 28px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-card img {
  width: 100%; height: 260px; object-fit: cover; object-position: top;
  border-radius: 12px; margin-bottom: 14px;
}
.team-card .role { color: var(--primary); font-size: 13px; font-weight: 600; }
.team-card h3 { font-size: 18px; }

/* Client logos */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 18px;
  align-items: center;
}
.logo-wall .brand {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #c5cad6; filter: grayscale(1); opacity: .8;
}
.logo-wall svg { height: 42px; width: auto; }
.logo-wall span { font-size: 12px; letter-spacing: 2px; font-weight: 700; }

/* CTA */
.cta-band {
  background: var(--cta);
  color: #fff;
  padding: 64px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cta-band h2 { color: #fff; font-size: 36px; max-width: 520px; }
.cta-mail { display: flex; align-items: center; gap: 14px; font-size: 18px; font-weight: 600; }
.cta-mail a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.mail-ico {
  width: 46px; height: 46px; border-radius: 10px; background: var(--primary);
  display: grid; place-items: center;
}

/* Footer */
.site-footer { background: var(--footer); color: #a9b0c4; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 28px;
  padding-bottom: 40px;
}
.footer-brand p { margin: 14px 0 18px; }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #fff;
}
.socials a:hover { background: var(--primary); }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.insta-grid img { width: 100%; height: 64px; object-fit: cover; border-radius: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}
.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.legal-links a:hover { color: #fff; }

/* Services grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  transition: 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card i { color: var(--primary); font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left; background: #fff; border: 0;
  padding: 18px 22px; font-weight: 600; color: var(--heading);
  display: flex; justify-content: space-between; gap: 12px; cursor: pointer; font-size: 16px;
}
.faq-item button i { color: var(--primary); }
.faq-item .faq-body { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-body { display: block; }
.faq-item.open button { color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.info-pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.info-pairs h4 { font-size: 16px; margin-bottom: 6px; }
.info-pairs i { color: var(--primary); margin-right: 8px; }
.form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.form-card h3 { margin-bottom: 18px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d9dee8;
  padding: 12px 2px;
  outline: none;
  background: transparent;
  color: var(--heading);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--primary); }
.field-error { color: var(--danger); font-size: 12px; margin-top: 4px; display: none; }
.form-group.error input, .form-group.error textarea, .form-group.error select { border-bottom-color: var(--danger); }
.form-group.error .field-error { display: block; }
.form-success {
  display: none;
  background: #ecfdf5;
  color: var(--ok);
  border: 1px solid #a7f3d0;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Blog detail */
.article { max-width: 820px; margin: 0 auto; }
.article-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 24px; }
.article p { margin-bottom: 16px; }
.article h2, .article h3 { margin: 28px 0 12px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag-list a {
  background: var(--bg); padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--heading);
}
.author-box {
  display: flex; gap: 16px; background: var(--primary); color: #fff;
  border-radius: 14px; padding: 22px; margin: 32px 0;
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.author-box h4, .author-box p { color: #fff; }
.related { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comment { display: flex; gap: 14px; margin-bottom: 18px; }
.comment img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.cart-table th, .cart-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); }
.cart-table th { background: var(--bg); color: var(--heading); font-size: 13px; }
.qty-input { width: 70px; padding: 8px; border: 1px solid var(--line); border-radius: 8px; }
.remove-item { color: var(--danger); background: none; border: 0; cursor: pointer; font-weight: 600; }
.cart-summary {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px;
}
.cart-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; }
.order-done {
  display: none;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 48px 28px;
  box-shadow: var(--shadow);
}
.order-done i { font-size: 48px; color: var(--ok); margin-bottom: 12px; }
.order-done h2 { margin-bottom: 10px; }

/* Legal */
.legal-content h2 { font-size: 22px; margin: 28px 0 10px; }
.legal-content h3 { font-size: 18px; margin: 18px 0 8px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 18px; list-style: disc; }
.legal-content ol { padding-left: 18px; }

/* Pagination */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.pager a, .pager span {
  min-width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 8px; background: #fff; border: 1px solid var(--line);
  font-weight: 600; color: var(--heading);
}
.pager .current, .pager a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Misc */
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #d5ddec; }
.dots span.active { background: var(--primary); }
.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 2000;
  background: var(--heading); color: #fff; padding: 12px 16px; border-radius: 10px;
  display: none; box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .team-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero h1, .page-hero h1 { font-size: 44px; }
}
@media (max-width: 991px) {
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .nav-wrap {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-top: 1px solid var(--line); padding: 12px 0 18px;
    box-shadow: var(--shadow);
  }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border: 0; }
  .nav > li.open > .dropdown { display: block; }
  .feature-row, .price-grid, .blog-grid, .card-grid-3, .testi-grid, .service-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .split-grid, .contact-grid, .cart-layout { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .home-hero { min-height: 520px; }
  .page-hero-row { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .price-card.featured { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .video-play { animation: none; }
  html { scroll-behavior: auto; }
}
@media (max-width: 640px) {
  .feature-row, .price-grid, .blog-grid, .card-grid-3, .testi-grid, .service-grid,
  .process-grid, .team-grid, .logo-wall, .related, .info-pairs, .footer-grid { grid-template-columns: 1fr !important; }
  .sec-title { font-size: 28px; }
  .home-hero h1, .page-hero h1 { font-size: 34px; }
  .home-hero { min-height: 460px; }
  .about-media img, .article-hero-img { height: 280px; }
  .header-inner { min-height: 72px; }
  .topbar { display: none; }
}
