/* ============================================================
   KODLY — Services Pages Shared Stylesheet
   Extends: css/style.css (must be loaded first)
   Used by: android.html, ios.html, shopify.html
============================================================ */

/* ── Page Hero ── */
.service-page-hero {
  padding: 160px 0 90px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.service-page-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,43,119,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,43,119,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.service-page-hero-orb1 {
  position: absolute;
  top: -100px; right: -140px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,43,119,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.service-page-hero-orb2 {
  position: absolute;
  bottom: -60px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,80,200,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.sph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.sph-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.sph-title {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sph-title span { color: var(--primary); }
.sph-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 32px;
}
.sph-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.sph-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.sph-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.sph-trust-item i { color: var(--primary); font-size: 0.9rem; }

/* Breadcrumb (reuse from about.css pattern) */
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.breadcrumb-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color 0.18s;
}
.breadcrumb-item:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 600; }
.breadcrumb-sep { font-size: 0.7rem; color: var(--border); }

/* ── Hero Visual (phone/device mockup) ── */
.sph-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.sph-device-wrap {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  animation: floatDevice 5s ease-in-out infinite;
}
@keyframes floatDevice {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.sph-phone {
  width: 220px;
  background: var(--text-dark);
  border-radius: 36px;
  padding: 14px 10px;
  box-shadow: 0 32px 80px rgba(15,17,35,0.25), 0 8px 24px rgba(15,17,35,0.12);
  position: relative;
}
.sph-phone--small {
  width: 180px;
  transform: translateY(20px);
  opacity: 0.85;
}
.sph-phone-notch {
  width: 60px; height: 18px;
  background: #111;
  border-radius: 20px;
  margin: 0 auto 10px;
}
.sph-phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
}
.sph-phone--small .sph-phone-screen { height: 270px; }

/* screen content */
.sph-screen-header {
  background: var(--primary);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sph-screen-header__title { font-size: 0.72rem; font-weight: 700; color: #fff; }
.sph-screen-header__dots { display: flex; gap: 4px; }
.sph-screen-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.sph-screen-dot--active { background: #28c840; }

.sph-screen-body { padding: 12px; }
.sph-screen-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 10px; }
.sph-screen-stat {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid var(--border);
}
.sph-screen-stat__lbl { font-size: 0.56rem; color: var(--text-muted); font-weight: 500; }
.sph-screen-stat__val { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.sph-screen-stat__chg { font-size: 0.55rem; color: #22a06b; font-weight: 600; }

.sph-screen-bar-row { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-bottom: 10px; }
.sph-screen-bar { border-radius: 3px 3px 0 0; background: var(--primary); flex: 1; opacity: 0.2; }
.sph-screen-bar--hi  { opacity: 1; }
.sph-screen-bar--mid { opacity: 0.55; }

.sph-screen-list-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.sph-screen-list-item:last-child { border-bottom: none; }
.sph-screen-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; font-weight: 700; color: #fff;
}
.sph-screen-avatar--g { background: linear-gradient(135deg,#11998e 0%,#38ef7d 100%); }
.sph-screen-avatar--p { background: linear-gradient(135deg,#667eea 0%,#764ba2 100%); }
.sph-screen-name { font-size: 0.6rem; font-weight: 600; color: var(--text-dark); }
.sph-screen-sub  { font-size: 0.52rem; color: var(--text-muted); }
.sph-screen-badge {
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  margin-left: auto;
}
.sph-screen-badge--green { background: rgba(34,160,107,0.12); color: #22a06b; }
.sph-screen-badge--blue  { background: rgba(42,43,119,0.1);   color: var(--primary); }
.sph-screen-badge--red   { background: rgba(229,62,62,0.1);   color: #e53e3e; }

/* Floating badge on hero visual */
.sph-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 150px;
  font-size: 0.75rem;
}
.sph-float-badge--tl { top: 20px; left: -20px; }
.sph-float-badge--br { bottom: 30px; right: -20px; }
.sph-float-badge__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.sph-float-badge__title { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); }
.sph-float-badge__sub   { font-size: 0.62rem; color: var(--text-muted); }

/* Shopify hero visual — browser mockup */
.sph-browser {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 72px rgba(42,43,119,0.15), 0 4px 16px rgba(42,43,119,0.08);
  overflow: hidden;
  animation: floatDevice 5s ease-in-out infinite;
}
.sph-browser-bar {
  background: var(--bg-soft);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.sph-browser-dots { display: flex; gap: 5px; }
.sph-browser-dot  { width: 10px; height: 10px; border-radius: 50%; }
.sph-browser-dot--r { background: #ff5f57; }
.sph-browser-dot--y { background: #febc2e; }
.sph-browser-dot--g { background: #28c840; }
.sph-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: monospace;
}
.sph-browser-screen { padding: 16px; }

/* Shopify store preview */
.shopify-store-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.shopify-store-nav__logo { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.shopify-store-nav__links { display: flex; gap: 14px; }
.shopify-store-nav__links span { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }
.shopify-store-nav__cart {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.shopify-store-nav__cart-badge {
  position: absolute;
  top: -4px; right: -6px;
  width: 12px; height: 12px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.45rem;
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.shopify-product-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.shopify-product-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.shopify-product-card:hover { box-shadow: var(--shadow-sm); }
.shopify-product-img {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.shopify-product-img--a { background: linear-gradient(135deg, #f8f8fc 0%, #e8e8f5 100%); }
.shopify-product-img--b { background: linear-gradient(135deg, #fdf6ec 0%, #fde8c8 100%); }
.shopify-product-img--c { background: linear-gradient(135deg, #ecfdf5 0%, #c8f0e0 100%); }
.shopify-product-info { padding: 7px 8px; }
.shopify-product-name  { font-size: 0.6rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.shopify-product-price { font-size: 0.65rem; font-weight: 800; color: var(--primary); }
.shopify-product-old   { font-size: 0.55rem; color: var(--text-muted); text-decoration: line-through; margin-left: 3px; }

.shopify-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopify-banner__text { font-size: 0.65rem; font-weight: 700; color: #fff; }
.shopify-banner__btn  {
  background: #fff;
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* ── Overview / Intro ── */
.service-overview-section { padding: 96px 0; background: var(--bg-soft); }

.overview-lead {
  font-size: 1.12rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 680px;
}
.overview-feature-list { list-style: none; padding: 0; margin: 0; }
.overview-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}
.overview-feature-list li:last-child { border-bottom: none; }
.overview-feature-list li i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.overview-highlight-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.overview-highlight-card::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.overview-highlight-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  margin-bottom: 20px;
}
.overview-highlight-card__title { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 12px; line-height: 1.2; }
.overview-highlight-card__text  { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.overview-highlight-card__stat  { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.overview-highlight-card__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── Services / Features Grid ── */
.features-section { padding: 96px 0; background: #fff; }

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover {
  background: #fff;
  border-color: rgba(42,43,119,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(42,43,119,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.25s;
}
.feature-card:hover .feature-card__icon { background: var(--primary); color: #fff; }
.feature-card__title { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card__desc  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Process / How It Works ── */
.process-section { padding: 96px 0; background: var(--bg-soft); }

.process-steps { position: relative; }
.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: -36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(42,43,119,0.1));
}
.process-step:last-child::after { display: none; }

.process-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(42,43,119,0.25);
  position: relative;
  z-index: 1;
}
.process-step__content { padding-top: 8px; }
.process-step__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.process-step__desc  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.process-visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.process-visual-card__title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.process-timeline-mini { }
.ptm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ptm-item:last-child { border-bottom: none; }
.ptm-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(42,43,119,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
}
.ptm-icon--done { background: rgba(34,160,107,0.1); color: #22a06b; }
.ptm-label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.ptm-sub   { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }
.ptm-check { margin-left: auto; color: #22a06b; font-size: 0.9rem; }
.ptm-pending { margin-left: auto; }
.ptm-pending-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
}

/* ── Tech Stack ── */
.tech-section { padding: 96px 0; background: #fff; }

.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}
.tech-pill:hover {
  background: rgba(42,43,119,0.07);
  border-color: rgba(42,43,119,0.2);
  color: var(--primary);
}
.tech-pill i { font-size: 1rem; color: var(--primary); }
.tech-pill__icon-img { width: 18px; height: 18px; object-fit: contain; }

.tech-category { margin-bottom: 32px; }
.tech-category:last-child { margin-bottom: 0; }
.tech-category__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ── Portfolio / Case Studies ── */
.portfolio-section { padding: 96px 0; background: var(--bg-soft); }

.portfolio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.portfolio-card__thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.portfolio-card__thumb--a { background: linear-gradient(135deg, #e8e8f8 0%, #d0d0f0 100%); }
.portfolio-card__thumb--b { background: linear-gradient(135deg, #e8f4fd 0%, #c8e8f8 100%); }
.portfolio-card__thumb--c { background: linear-gradient(135deg, #edf7f0 0%, #c8ecd5 100%); }
.portfolio-card__thumb--d { background: linear-gradient(135deg, #fdf2e8 0%, #f8dfc0 100%); }
.portfolio-card__thumb--e { background: linear-gradient(135deg, #fde8ef 0%, #f8c8d8 100%); }
.portfolio-card__thumb--f { background: linear-gradient(135deg, #f0e8fd 0%, #d8c8f8 100%); }

.portfolio-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.portfolio-card__body { padding: 20px 22px 24px; }
.portfolio-card__title { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.portfolio-card__desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.portfolio-card__stats { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid var(--border); }
.portfolio-stat__num   { font-size: 1.1rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.portfolio-stat__lbl   { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; }

/* ── Pricing ── */
.pricing-section { padding: 96px 0; background: #fff; }

.pricing-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card--featured {
  background: var(--primary);
  border-color: var(--primary);
}
.pricing-card--featured:hover { box-shadow: 0 16px 48px rgba(42,43,119,0.3); }

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card__tier   { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.pricing-card--featured .pricing-card__tier { color: rgba(255,255,255,0.6); }
.pricing-card__price  { font-size: 2.4rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-card--featured .pricing-card__price { color: #fff; }
.pricing-card__period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.6); }
.pricing-card__name   { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pricing-card--featured .pricing-card__name { color: #fff; }
.pricing-card__desc   { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.15); }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-body);
  padding: 7px 0;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card__features li i { color: var(--primary); flex-shrink: 0; }
.pricing-card--featured .pricing-card__features li i { color: rgba(255,255,255,0.8); }

.btn-pricing-featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.93rem;
  width: 100%;
  transition: all 0.22s;
  text-decoration: none !important;
}
.btn-pricing-featured:hover { background: var(--bg-soft); color: var(--primary); transform: translateY(-2px); }
.btn-pricing-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.93rem;
  width: 100%;
  transition: all 0.22s;
  text-decoration: none !important;
}
.btn-pricing-outline:hover { border-color: var(--primary); background: rgba(42,43,119,0.05); transform: translateY(-2px); }

/* ── FAQ ── */
.faq-section { padding: 96px 0; background: #ffffff; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item:last-child { margin-bottom: 0; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-question__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-question__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.25s;
}
.faq-item.open .faq-question__icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .service-page-hero { padding: 130px 0 70px; }
  .sph-device-wrap { gap: 12px; }
  .sph-phone { width: 180px; }
  .sph-phone--small { width: 150px; }
  .sph-phone-screen { height: 280px; }
  .sph-phone--small .sph-phone-screen { height: 220px; }
  .sph-float-badge--tl { left: 0; top: 10px; }
  .sph-float-badge--br { right: 0; bottom: 20px; }
  .overview-highlight-card { margin-top: 32px; }
}
@media (max-width: 767px) {
  .sph-phone--small { display: none; }
  .sph-phone { width: 220px; }
  .sph-phone-screen { height: 320px; }
  .shopify-product-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { gap: 8px; }
}

/* ============================================================
   ODOO FEATURE ROWS — Alternating image / text layout
   Used by: odoo-crm.html (and future Odoo pages)
============================================================ */

.odoo-features-section { padding: 96px 0; background: #fff; }
.odoo-features-section--soft { padding: 96px 0; background: var(--bg-soft); }

/* Each feature row */
.odoo-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.odoo-feat-row:last-child { border-bottom: none; padding-bottom: 0; }
.odoo-feat-row:first-child { padding-top: 0; }

/* Image column */
.odoo-feat-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(42,43,119,0.10);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.odoo-feat-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Placeholder visual when no real image available */
.odoo-feat-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #e8e8f5 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 12px 48px rgba(42,43,119,0.08);
}

/* Text column */
.odoo-feat-text { }
.odoo-feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.odoo-feat-eyebrow i { font-size: 0.85rem; }
.odoo-feat-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.odoo-feat-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.odoo-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.odoo-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
.odoo-feat-list li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Reverse layout: image right, text left */
.odoo-feat-row--reverse .odoo-feat-img-wrap,
.odoo-feat-row--reverse .odoo-feat-img-placeholder { order: 2; }
.odoo-feat-row--reverse .odoo-feat-text { order: 1; }

/* Section divider used between feature groups */
.odoo-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

/* Responsive */
@media (max-width: 991px) {
  .odoo-feat-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .odoo-feat-row--reverse .odoo-feat-img-wrap,
  .odoo-feat-row--reverse .odoo-feat-img-placeholder { order: 0; }
  .odoo-feat-row--reverse .odoo-feat-text { order: 0; }
}
