/*
  Bismillahir Rahmanir Rahim
  LiteWeb Studio V2
  Project image backgrounds added
*/

:root {
  --navy: #0F172A;
  --blue: #178BFF;
  --light-blue: #38BDF8;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #1E293B;
  --muted: #64748B;
  --border: #E2E8F0;
  --soft-blue: #EAF6FF;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23, 139, 255, 0.10), transparent 32rem),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 42%, #FFFFFF 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section-gap { padding: 96px 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 999; padding: 10px 14px; border-radius: 10px; background: var(--navy); color: var(--white); transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(226,232,240,.9);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 222px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 15px; font-weight: 700; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--blue); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--navy); color: var(--white) !important; box-shadow: 0 12px 24px rgba(15,23,42,.14); }
.nav-cta:hover { background: var(--blue); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; display: block; margin: 5px auto; background: var(--navy); border-radius: 999px; }

.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: var(--blue); }
.hero h1 { margin-bottom: 22px; color: var(--navy); font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: -.06em; }
.hero-text { max-width: 650px; margin-bottom: 32px; color: var(--muted); font-size: 18px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 900; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 16px 34px rgba(23,139,255,.28); }
.btn-primary:hover { background: #0575E8; box-shadow: 0 18px 40px rgba(23,139,255,.36); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: rgba(23,139,255,.35); }
.trust-line { margin-top: 24px; margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 700; }

.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; }
.browser-card { position: relative; width: 100%; overflow: visible; border: 1px solid rgba(226,232,240,.9); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.floating-card { animation: float 5s ease-in-out infinite; }
.browser-top { height: 62px; display: flex; align-items: center; gap: 10px; padding: 0 24px; background: linear-gradient(135deg, var(--navy), #12366E); border-radius: 28px 28px 0px 0px;}
.browser-top span { width: 12px; height: 12px; border-radius: 999px; background: var(--white); opacity: .9; }
.browser-body { padding: 42px; }
.mockup-label { display: inline-flex; margin-bottom: 20px; padding: 8px 12px; border-radius: 999px; background: var(--soft-blue); color: var(--blue); font-size: 13px; font-weight: 900; }
.browser-body h2 { max-width: 360px; margin-bottom: 12px; color: var(--navy); font-size: 40px; line-height: 1.08; letter-spacing: -.04em; }
.browser-body p { max-width: 360px; color: var(--muted); }
.mockup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.mockup-grid span { padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg); color: var(--navy); font-weight: 900; }
.mini-stat {
  position: absolute;
  display: grid;
  gap: 4px;
  width: 87px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(14px);
  z-index: 4;
}

.mini-stat strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mini-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.stat-one {
  left: -24px;
  bottom: 74px;
}

.stat-two {
  right: -18px;
  top: 118px;
  width: 124px;
  padding: 16px 18px;
}

.stat-two strong {
  font-size: 28px;
}

.feature-strip { padding: 32px 0; border-block: 1px solid var(--border); background: rgba(255,255,255,.76); }
.strip-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; align-items: center; }
.strip-grid p { margin-bottom: 0; color: var(--navy); font-weight: 900; }
.strip-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.strip-items span, .tag-list span { display: inline-flex; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); color: var(--muted); font-size: 13px; font-weight: 800; }

.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .why-content h2, .contact-card h2, .about-content h2, .page-hero h1 { margin-bottom: 16px; color: var(--navy); font-size: clamp(32px, 4.2vw, 50px); line-height: 1.1; letter-spacing: -.05em; }
.section-heading p, .why-content p, .contact-card p, .about-content p, .page-hero p { color: var(--muted); font-size: 17px; }

.card-grid, .pricing-grid, .work-grid, .process-grid { display: grid; gap: 24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .price-card, .work-card, .process-step, .why-item, .about-panel, .legal-card, .service-detail-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(15,23,42,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover, .price-card:hover, .work-card:hover, .process-step:hover, .why-item:hover, .about-panel:hover, .service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23,139,255,.32);
  box-shadow: var(--shadow-sm);
}
.service-card { padding: 28px; display: block; }
.card-icon, .process-step span { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 22px; border-radius: 14px; background: var(--soft-blue); color: var(--blue); font-weight: 900; }
.service-card h3, .why-item h3, .price-card h3, .work-card h3, .process-step h3, .about-panel h3, .service-detail-card h2 { margin-bottom: 10px; color: var(--navy); line-height: 1.25; }
.service-card p, .why-item p, .price-card p, .work-card p, .process-step p { margin-bottom: 0; color: var(--muted); }
.service-card strong { display: inline-flex; margin-top: 18px; color: var(--blue); font-size: 14px; }

.about { background: var(--white); }
.about-grid, .service-detail-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 42px; align-items: center; }
.about-content p { margin-bottom: 18px; }
.about-panel { padding: 32px; }
.about-panel ul, .legal-card ul, .service-detail-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.about-panel li, .legal-card li, .service-detail-card li { position: relative; padding-left: 28px; color: var(--text); }
.about-panel li::before, .legal-card li::before, .service-detail-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.why { background: radial-gradient(circle at 80% 20%, rgba(23,139,255,.13), transparent 25rem), var(--navy); color: var(--white); }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.why-content h2, .why-content p { color: var(--white); }
.why-content p { opacity: .78; margin-bottom: 28px; }
.why-list { display: grid; gap: 18px; }
.why-item { padding: 26px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.why-item h3 { color: var(--white); }
.why-item p { color: rgba(255,255,255,.72); }

.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { position: relative; padding: 32px; }
.price-card.popular { border-color: rgba(23,139,255,.45); box-shadow: 0 24px 70px rgba(23,139,255,.13); }
.popular-badge { position: absolute; right: 24px; top: 24px; padding: 8px 12px; border-radius: 999px; background: var(--blue); color: var(--white); font-size: 12px; font-weight: 900; }
.best-for { min-height: 54px; }
.price { margin: 24px 0; color: var(--muted); font-weight: 800; }
.price strong { color: var(--navy); font-size: 44px; line-height: 1; letter-spacing: -.05em; }
.price-card ul { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 28px; color: var(--text); }
.price-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 900; }
.pricing-note { max-width: 760px; margin: 28px auto 0; color: var(--muted); text-align: center; }

.work-grid { grid-template-columns: repeat(2, 1fr); }
.work-card { overflow: hidden; }
.work-thumb {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work-thumb.dental {
  background-image: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url("../images/project-dental-clinic.jpg");
}

.work-thumb.garments {
  background-image: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url("../images/project-garments-company.jpg");
}

.work-thumb.service {
  background-image: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url("../images/project-service-business.jpg");
}

.work-thumb.portfolio {
  background-image: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url("../images/project-portfolio-website.jpg");
}

.work-thumb span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.work-body { padding: 28px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.center-cta { display: grid; justify-items: center; gap: 16px; max-width: 620px; margin: 40px auto 0; text-align: center; }
.center-cta p { margin: 0; color: var(--navy); font-size: 18px; font-weight: 900; }

.process { background: var(--bg); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-step { padding: 28px; }

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
details { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 12px 26px rgba(15,23,42,.04); }
summary { cursor: pointer; padding: 22px 24px; color: var(--navy); font-weight: 900; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--blue); font-size: 22px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

.contact-card { display: grid; grid-template-columns: 1fr .75fr; gap: 36px; align-items: center; padding: 52px; border-radius: 32px; background: radial-gradient(circle at top right, rgba(56,189,248,.3), transparent 25rem), var(--navy); color: var(--white); box-shadow: var(--shadow); }
.contact-card h2, .contact-card p { color: var(--white); }
.contact-card p { opacity: .76; }
.contact-actions { justify-content: flex-end; }
.contact-actions .btn-secondary { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.18); box-shadow: none; }
.contact-link { width: 100%; color: var(--light-blue); font-weight: 900; text-align: right; }

.page-hero { padding: 92px 0 50px; text-align: center; }
.page-hero p { max-width: 760px; margin-inline: auto; }
.breadcrumb { display: inline-flex; gap: 8px; margin-bottom: 18px; color: var(--blue); font-size: 14px; font-weight: 900; }
.service-detail-card, .legal-card { padding: 34px; }
.service-detail-grid { align-items: start; padding-bottom: 84px; }
.service-sidebar { display: grid; gap: 18px; }
.sidebar-box { padding: 28px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.sidebar-box h3 { color: var(--white); margin-bottom: 8px; }
.sidebar-box p { color: rgba(255,255,255,.75); }
.legal-wrap { max-width: 900px; margin: 0 auto; display: grid; gap: 22px; padding-bottom: 88px; }
.legal-card p { color: var(--muted); }

.site-footer { padding: 70px 0 28px; background: var(--navy); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr .9fr; gap: 36px; }
.footer-brand img { width: 230px; margin-bottom: 18px; }
.footer-brand p { max-width: 420px; }
.site-footer h3 { margin-bottom: 16px; color: var(--white); font-size: 16px; }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--light-blue); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--light-blue); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1024px) {
  .hero-grid, .why-grid, .contact-card, .strip-grid, .about-grid, .service-detail-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .stat-one, .stat-two { position: static; display: inline-grid; margin: 18px 12px 0 0; }
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-items, .contact-actions { justify-content: flex-start; }
  .contact-link { text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .brand img { width: 184px; }
  .section-gap { padding: 72px 0; }
  .hero-grid { gap: 42px; }
  .browser-body { padding: 30px; }
  .browser-body h2 { font-size: 32px; }
  .mockup-grid { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .work-grid, .process-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 34px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--container)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 160px; }
  .hero h1 { font-size: 42px; }
  .hero-text { font-size: 16px; }
  .btn { width: 100%; }
  .hero-actions, .contact-actions { width: 100%; }
  .service-card, .price-card, .work-body, .process-step, .why-item, .about-panel, .service-detail-card, .legal-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.included-section { padding: 82px 0; background: var(--bg); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.included-card { padding: 26px; border: 1px solid var(--border); border-radius: 22px; background: #ffffff; box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04); }
.included-card strong { display: inline-flex; margin-bottom: 12px; color: var(--blue); font-size: 14px; }
.included-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 20px; line-height: 1.25; }
.included-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

.related-services-section { padding: 82px 0; background: #ffffff; }
.related-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-mini-card { display: block; padding: 26px; border: 1px solid var(--border); border-radius: 24px; background: #ffffff; box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05); transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.related-mini-card:hover { transform: translateY(-5px); border-color: rgba(23, 139, 255, 0.32); box-shadow: var(--shadow-sm); }
.related-mini-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 21px; }
.related-mini-card p { margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.related-mini-card strong { color: var(--blue); font-size: 14px; }
@media (max-width: 1024px) { .included-grid, .related-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .included-grid, .related-mini-grid { grid-template-columns: 1fr; } }


/* Dynamic project cards */
.project-image-thumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.project-link:hover {
  transform: translateY(-2px);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(23, 139, 255, 0.22);
}

.project-status {
  display: inline-flex;
  margin-top: 20px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}



.work-more-cta {
  margin-top: 42px;
}


.services-more-cta,
.work-more-cta {
  margin-top: 42px;
}

/* LiteWeb Studio Fresh Responsive Fix Start */
html, body { max-width: 100%; overflow-x: hidden; }
body { -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; height: auto; }
.site-header { position: sticky; top: 0; z-index: 1000; }
.services-more-cta, .work-more-cta { margin-top: 38px; }
.project-image-thumb { background-size: cover; background-position: center; background-repeat: no-repeat; }

@media (max-width: 1024px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-nav { gap: 18px; }
  .brand img { width: 188px; }
  .hero-grid, .why-grid, .contact-card, .strip-grid, .about-grid, .service-detail-grid, .service-keyword-grid, .overview-grid { grid-template-columns: 1fr !important; }
  .hero-grid { gap: 44px; }
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .process-grid, .included-grid, .related-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-panel { position: static !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 12px; border-radius: 12px; color: var(--navy); }
  .site-nav a:hover { background: var(--soft-blue); }
  .nav-cta { margin-top: 8px; text-align: center; }
  .header-inner { min-height: 72px; }
  .brand img { width: 166px; }
  .section-gap { padding: 72px 0; }
  .section-heading { max-width: 680px; margin-bottom: 38px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .hero-visual { display: none !important; }
  .contact-actions { justify-content: flex-start; }
  .contact-link { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--container)); }
  .section-gap { padding: 60px 0; }
  .page-hero { padding: 64px 0 36px; }
  .eyebrow { margin-bottom: 12px; font-size: 12px; }
  .eyebrow::before { width: 22px; }
  .section-heading, .center-cta { text-align: center; }
  .section-heading h2, .why-content h2, .contact-card h2, .about-content h2, .page-hero h1 { font-size: clamp(28px, 8vw, 38px); line-height: 1.12; }
  .section-heading p, .why-content p, .contact-card p, .about-content p, .page-hero p { font-size: 15.5px; }
  .hero { padding-top: 18px; }
  .hero h1 { font-size: clamp(36px, 10vw, 46px); line-height: 1.04; text-align: center; }
  .hero .eyebrow, .hero-text, .trust-line { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero-text { margin-bottom: 24px; font-size: 16px; }
  .hero-actions, .contact-actions { width: 100%; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .btn, .hero-actions .btn, .contact-actions .btn, .center-cta .btn, .price-card .btn { width: 100%; }
  .feature-strip { padding: 24px 0; }
  .strip-grid { gap: 16px; text-align: center; }
  .strip-items { justify-content: center; }
  .services-grid, .pricing-grid, .work-grid, .process-grid, .included-grid, .related-mini-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .service-card, .price-card, .work-body, .process-step, .why-item, .about-panel, .service-detail-card, .legal-card, .included-card, .related-mini-card, .keyword-content-card, .overview-text-box { padding: 22px !important; }
  .card-icon, .process-step span { width: 40px; height: 40px; margin-bottom: 16px; border-radius: 12px; }
  .about-content, .why-content { text-align: center; }
  .about-panel, .why-item { text-align: left; }
  .why { background: var(--navy); }
  .why-content p { margin-bottom: 22px; }
  .popular-badge { position: static; width: fit-content; margin-bottom: 14px; }
  .best-for { min-height: auto; }
  .price strong { font-size: 38px; }
  .work-thumb { min-height: 190px; padding: 22px; }
  .work-thumb span { padding: 10px 14px; font-size: 12px; }
  .project-link, .project-status { width: 100%; justify-content: center; margin-top: 16px; text-align: center; }
  .center-cta { margin-top: 30px; justify-items: stretch; }
  .center-cta p { font-size: 16px; }
  summary { padding: 18px 18px; }
  details p { padding: 0 18px 18px; }
  .contact-card { padding: 28px !important; border-radius: 24px; text-align: center; }
  .contact-link { width: 100%; text-align: center; word-break: break-word; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand img { width: 190px; margin-inline: auto; }
  .footer-brand p { margin-inline: auto; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; margin-top: 34px; }
  .service-keyword-hero { padding: 64px 0 52px !important; }
  .service-keyword-hero h1, .service-keyword-hero p { text-align: center; }
  .service-summary-strip { grid-template-columns: 1fr !important; gap: 10px; }
  .summary-item { padding: 15px; text-align: center; }
  .service-hero-image, .service-side-image, .visual-break-card { border-radius: 20px; }
  .visual-break-card img { max-height: 260px; }
  .keyword-content-card h2 { font-size: 25px !important; }
  .content-card-cta { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 20px, var(--container)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 146px; }
  .nav-toggle { width: 40px; height: 40px; }
  .site-nav { top: 66px; left: 10px; right: 10px; }
  .hero h1 { font-size: 34px; }
  .section-heading h2, .why-content h2, .contact-card h2, .about-content h2, .page-hero h1 { font-size: 29px; }
  .service-card, .price-card, .work-body, .process-step, .why-item, .about-panel, .service-detail-card, .legal-card, .included-card, .related-mini-card, .keyword-content-card, .overview-text-box { padding: 20px !important; }
  .work-thumb { min-height: 168px; }
}
/* LiteWeb Studio Fresh Responsive Fix End */

/* Final sticky header fix */
html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@supports not (overflow-x: clip) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    top: 68px;
    z-index: 10000;
  }
}

/* Mobile menu glass background */
@media (max-width: 820px) {
  .site-nav {
    background: rgba(248, 250, 252, 0.97) !important;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-nav a {
    color: var(--navy);
  }

  .site-nav a:hover {
    background: rgba(234, 246, 255, 0.85);
    color: var(--blue);
  }

  .site-nav .nav-cta {
    background: rgba(15, 23, 42, 0.95);
    color: var(--white) !important;
  }
}


/* LiteWeb Studio Review Slider Section Start */
.reviews {
  background: var(--white);
}

.review-slider {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 16px;
  align-items: center;
}

.review-viewport {
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(23, 139, 255, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.review-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.review-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.review-status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.review-stars {
  margin-bottom: 14px;
  color: var(--blue);
  letter-spacing: 2px;
  font-size: 14px;
}

.review-text {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
}

.review-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.review-role {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.review-control {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.review-control:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 255, 0.35);
  background: var(--blue);
  color: var(--white);
}

.review-control:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 640px) {
  .reviews .section-heading {
    text-align: center;
  }

  .review-slider {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 62px;
  }

  .review-card {
    flex-basis: 100%;
    padding: 22px;
    text-align: center;
  }

  .review-top {
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-stars {
    text-align: center;
  }

  .review-control {
    position: absolute;
    bottom: 0;
    width: 46px;
    height: 46px;
  }

  .review-prev {
    left: calc(50% - 54px);
  }

  .review-next {
    right: calc(50% - 54px);
  }
}
/* LiteWeb Studio Review Slider Section End */


/* LiteWeb Studio Review Equal Card + Compact FAQ Fix Start */

/* Review cards: equal height, clean background, stable title/content alignment */
.review-track {
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  height: auto;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.review-top {
  min-height: 58px;
}

.review-stars {
  min-height: 22px;
}

.review-text {
  min-height: 132px;
}

.review-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
}

.review-role {
  margin-top: auto;
}

.review-control {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.review-prev {
  justify-self: end;
}

.review-next {
  justify-self: start;
}

/* FAQ: compact desktop layout to reduce homepage length */
.faq.section-gap {
  padding-top: 72px;
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-list details {
  margin: 0;
  height: fit-content;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-list details p {
  font-size: 15px;
  line-height: 1.65;
}

/* Keep opened FAQ readable, but compact */
.faq-list details[open] {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

/* Tablet */
@media (max-width: 1024px) {
  .review-card {
    min-height: 400px;
  }

  .review-text {
    min-height: 112px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .review-card {
    min-height: auto;
  }

  .review-text,
  .review-card h3,
  .review-top,
  .review-stars {
    min-height: auto;
  }

  .review-role {
    margin-top: 0;
  }

  .faq.section-gap {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-list summary {
    min-height: auto;
  }
}

/* LiteWeb Studio Review Equal Card + Compact FAQ Fix End */


/* LiteWeb Studio Refined Interaction + Review Background Fix Start */

/* Review section: remove visible rectangular edge/glow and keep the soft effect centered only */
.reviews {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.reviews::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(760px, 70vw);
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(23, 139, 255, 0.08), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.review-slider {
  padding-top: 12px;
  padding-bottom: 18px;
}

.review-viewport {
  padding: 10px 2px 20px;
}

.review-track {
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  height: auto;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
  transform: translateY(0);
}

.review-top {
  min-height: 58px;
}

.review-stars {
  min-height: 22px;
}

.review-text {
  min-height: 132px;
}

.review-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
}

.review-role {
  margin-top: auto;
}

/* Refined global interaction system: soft, premium, not jumpy */
.btn,
.nav-cta,
.project-link,
.content-card-cta,
.review-control,
.service-card,
.price-card,
.work-card,
.review-card,
.related-mini-card,
.included-card,
.process-step,
.why-item,
.about-panel,
.legal-card {
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background-color 0.34s ease,
    color 0.34s ease,
    opacity 0.34s ease;
}

.btn:hover,
.nav-cta:hover,
.project-link:hover,
.content-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 139, 255, 0.20);
}

.btn-primary:hover,
.nav-cta:hover,
.content-card-cta:hover {
  background: #0575e8;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card:hover,
.price-card:hover,
.work-card:hover,
.review-card:hover,
.related-mini-card:hover,
.included-card:hover,
.process-step:hover,
.why-item:hover,
.about-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 139, 255, 0.24);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.075);
}

/* Keep review card hover inside viewport without clipping */
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.work-thumb {
  overflow: hidden;
  transition: filter 0.38s ease;
}

.work-card:hover .work-thumb {
  filter: saturate(1.05) contrast(1.02);
}

/* FAQ smooth behavior with one-open-at-a-time JS */
.faq-list details {
  overflow: hidden;
  transition:
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    transform 0.34s ease,
    background-color 0.34s ease;
}

.faq-list details[open] {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 255, 0.26);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.075);
}

.faq-list summary {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.faq-list summary:hover {
  color: var(--blue);
}

.faq-list details p {
  animation: faqFadeDown 0.34s ease;
}

@keyframes faqFadeDown {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider arrows refined */
.review-control {
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.075);
}

.review-control:hover {
  transform: translateY(-2px);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .nav-cta,
  .project-link,
  .content-card-cta,
  .review-control,
  .service-card,
  .price-card,
  .work-card,
  .review-card,
  .related-mini-card,
  .included-card,
  .process-step,
  .why-item,
  .about-panel,
  .legal-card,
  .faq-list details,
  .faq-list summary,
  .faq-list details p {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .review-card {
    min-height: 400px;
  }

  .review-text {
    min-height: 112px;
  }

  .reviews::before {
    width: 620px;
    height: 240px;
  }
}

@media (max-width: 640px) {
  .reviews::before {
    width: 82vw;
    height: 220px;
    opacity: 0.75;
  }

  .review-slider {
    padding-top: 4px;
  }

  .review-viewport {
    padding: 4px 0 12px;
  }

  .review-card {
    min-height: auto;
  }

  .review-text,
  .review-card h3,
  .review-top,
  .review-stars {
    min-height: auto;
  }

  .review-role {
    margin-top: 0;
  }

  /* Avoid jumpy hover behavior on touch screens */
  .service-card:hover,
  .price-card:hover,
  .work-card:hover,
  .review-card:hover,
  .related-mini-card:hover,
  .included-card:hover,
  .process-step:hover,
  .why-item:hover,
  .about-panel:hover,
  .btn:hover,
  .nav-cta:hover,
  .project-link:hover,
  .content-card-cta:hover {
    transform: none;
  }
}

/* LiteWeb Studio Refined Interaction + Review Background Fix End */


/* LiteWeb Studio Split FAQ Layout Start */

/* Smooth navbar quote button transition */
.site-nav .nav-cta,
.nav-cta {
  transition:
    background-color 0.42s ease,
    color 0.42s ease,
    box-shadow 0.42s ease,
    transform 0.42s ease,
    border-color 0.42s ease !important;
}

.site-nav .nav-cta:hover,
.nav-cta:hover {
  background: #178bff !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 139, 255, 0.24);
}

/* Split FAQ: left questions, right answer panel */
.faq.section-gap {
  padding-top: 72px;
  padding-bottom: 72px;
}

.split-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
}

.split-faq-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.split-faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background-color 0.32s ease,
    color 0.32s ease;
}

.split-faq-question strong {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 16px;
  transition:
    transform 0.36s ease,
    background-color 0.36s ease,
    color 0.36s ease;
}

.split-faq-question:hover {
  transform: translateX(3px);
  border-color: rgba(23, 139, 255, 0.28);
  color: var(--blue);
}

.split-faq-question.active {
  border-color: rgba(23, 139, 255, 0.38);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(23, 139, 255, 0.10);
}

.split-faq-question.active strong {
  background: var(--blue);
  color: #ffffff;
  transform: translateX(2px);
}

.split-faq-panel {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(23, 139, 255, 0.08), transparent 18rem),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.065);
  overflow: hidden;
}

.split-faq-answer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease,
    transform 0.55s ease;
}

.split-faq-answer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.split-faq-count {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.split-faq-answer h3 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.split-faq-answer p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

/* Keep refined site-wide interaction */
.btn,
.project-link,
.content-card-cta,
.review-control,
.service-card,
.price-card,
.work-card,
.review-card,
.related-mini-card,
.included-card,
.process-step,
.why-item,
.about-panel,
.legal-card {
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background-color 0.34s ease,
    color 0.34s ease,
    opacity 0.34s ease;
}

.btn:hover,
.project-link:hover,
.content-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 139, 255, 0.20);
}

.btn-primary:hover,
.content-card-cta:hover {
  background: #0575e8;
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card:hover,
.price-card:hover,
.work-card:hover,
.review-card:hover,
.related-mini-card:hover,
.included-card:hover,
.process-step:hover,
.why-item:hover,
.about-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 139, 255, 0.24);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.075);
}

@media (max-width: 900px) {
  .split-faq {
    grid-template-columns: 1fr;
  }

  .split-faq-panel {
    min-height: 320px;
  }

  .split-faq-answer {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .faq.section-gap {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .split-faq {
    gap: 18px;
  }

  .split-faq-list {
    gap: 9px;
  }

  .split-faq-question {
    min-height: auto;
    padding: 14px 15px;
    font-size: 15px;
  }

  .split-faq-question:hover {
    transform: none;
  }

  .split-faq-panel {
    min-height: 360px;
    border-radius: 20px;
  }

  .split-faq-answer {
    justify-content: flex-start;
    padding: 28px 22px;
    text-align: center;
  }

  .split-faq-count {
    margin-left: auto;
    margin-right: auto;
  }

  .split-faq-answer h3 {
    font-size: 28px;
  }

  .split-faq-answer p {
    font-size: 16px;
    line-height: 1.7;
  }

  .site-nav .nav-cta:hover,
  .nav-cta:hover,
  .service-card:hover,
  .price-card:hover,
  .work-card:hover,
  .review-card:hover,
  .related-mini-card:hover,
  .included-card:hover,
  .process-step:hover,
  .why-item:hover,
  .about-panel:hover,
  .btn:hover,
  .project-link:hover,
  .content-card-cta:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .split-faq-question,
  .split-faq-question strong,
  .split-faq-answer,
  .btn,
  .nav-cta,
  .project-link,
  .content-card-cta,
  .service-card,
  .price-card,
  .work-card,
  .review-card,
  .related-mini-card,
  .included-card,
  .process-step,
  .why-item,
  .about-panel {
    transition: none !important;
  }
}

/* LiteWeb Studio Split FAQ Layout End */


/* LiteWeb Studio Mobile Review Arrow + FAQ Accordion Fix Start */

/* Review slider mobile control fix */
@media (max-width: 640px) {
  .review-slider {
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 84px !important;
  }

  .review-viewport {
    padding-bottom: 18px !important;
  }

  .review-control {
    position: absolute !important;
    bottom: 14px !important;
    top: auto !important;
    z-index: 5;
  }

  .review-prev {
    left: calc(50% - 58px) !important;
    right: auto !important;
  }

  .review-next {
    right: calc(50% - 58px) !important;
    left: auto !important;
  }
}

/* Mobile FAQ should behave like normal accordion: answer appears under selected question */
@media (max-width: 640px) {
  .split-faq {
    display: block;
  }

  .split-faq-list {
    display: grid;
    gap: 10px;
  }

  .split-faq-panel {
    display: none !important;
  }

  .split-faq-question {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: auto;
    margin: 0;
  }

  .split-faq-question::after {
    content: attr(data-mobile-answer);
    grid-column: 1 / -1;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    color: var(--muted);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.7;
    transition:
      max-height 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease,
      padding-top 0.35s ease;
  }

  .split-faq-question.active::after {
    max-height: 360px;
    opacity: 1;
    padding-top: 14px;
  }

  .split-faq-question.active strong {
    transform: rotate(90deg);
  }
}

/* LiteWeb Studio Mobile Review Arrow + FAQ Accordion Fix End */


/* LiteWeb Studio Mobile Content First + Review Alignment Final Fix Start */

/* Mobile review card title/role alignment fix */
@media (max-width: 640px) {
  .review-card,
  .review-card h3,
  .review-role,
  .review-text {
    text-align: center !important;
  }

  .review-card h3 {
    display: block !important;
    min-height: auto !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .review-role {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile service page final order:
   1. headline
   2. hero image
   3. content cards
   4. overview
   5. related services
*/
@media (max-width: 640px) {
  .best-static-service-page .service-keyword-hero {
    padding-top: 42px !important;
    padding-bottom: 34px !important;
  }

  .best-static-service-page .service-keyword-hero .eyebrow,
  .best-static-service-page .service-keyword-hero p,
  .best-static-service-page .service-keyword-hero .hero-actions,
  .best-static-service-page .service-summary-strip,
  .best-static-service-page .summary-strip,
  .best-static-service-page .summary-grid,
  .best-static-service-page .service-stats,
  .best-static-service-page .service-meta-grid,
  .best-static-service-page .summary-item,
  .best-static-service-page .stat-box,
  .best-static-service-page .service-stat-card {
    display: none !important;
  }

  .best-static-service-page .service-keyword-hero h1 {
    max-width: 100%;
    margin: 0 auto 24px !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    letter-spacing: -0.045em;
  }

  .best-static-service-page .service-hero-image,
  .best-static-service-page .service-keyword-hero img {
    display: block !important;
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 22px;
    margin: 0 auto !important;
  }

  /*
    The page's HTML has overview panel and content cards inside the same .service-overview section.
    On mobile, reorder them visually: content list first, overview panel second.
  */
  .best-static-service-page .service-overview {
    padding-top: 44px !important;
    padding-bottom: 52px !important;
  }

  .best-static-service-page .overview-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .best-static-service-page .keyword-content-list {
    order: 1 !important;
    display: grid !important;
    gap: 18px !important;
  }

  .best-static-service-page .overview-panel {
    order: 2 !important;
    position: static !important;
  }

  .best-static-service-page .keyword-content-card,
  .best-static-service-page .service-detail-card {
    margin-bottom: 0 !important;
  }

  .best-static-service-page .keyword-content-card h2,
  .best-static-service-page .service-detail-card h2 {
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  .best-static-service-page .keyword-content-card p,
  .best-static-service-page .service-detail-card p {
    font-size: 15.5px !important;
    line-height: 1.72 !important;
  }

  /* Overview panel should appear after content, without the extra side image */
  .best-static-service-page .overview-panel .service-side-image,
  .best-static-service-page .visual-break,
  .best-static-service-page .visual-break-card,
  .best-static-service-page .service-bottom-image,
  .best-static-service-page .service-extra-image {
    display: none !important;
  }

  .best-static-service-page .overview-text-box {
    text-align: left !important;
    padding: 22px !important;
  }

  .best-static-service-page .overview-text-box h2 {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }

  /* Hide What's Included and Process sections on mobile */
  .best-static-service-page .included-section,
  .best-static-service-page .included,
  .best-static-service-page .process,
  .best-static-service-page .service-included,
  .best-static-service-page .service-process,
  .best-static-service-page #included,
  .best-static-service-page #process {
    display: none !important;
  }

  /* Related services stays after overview */
  .best-static-service-page .related-services-section,
  .best-static-service-page .related-services,
  .best-static-service-page .related,
  .best-static-service-page .related-mini {
    display: block !important;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .best-static-service-page .related-mini-grid,
  .best-static-service-page .related-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* LiteWeb Studio Mobile Content First + Review Alignment Final Fix End */

