@charset "UTF-8";

:root {
  --ink: #111827;
  --ink-2: #182238;
  --text: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f6f8fc;
  --soft-blue: #eef4ff;
  --soft-mint: #edfbf5;
  --primary: #5d4df5;
  --primary-2: #7568ff;
  --cyan: #20b8cd;
  --mint: #57d9a3;
  --lime: #c9f46a;
  --shadow: 0 24px 70px rgba(46, 45, 88, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(850px, 100%); }

/* Header and mega menu */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(228, 231, 236, .88);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(18px);
}
.header-shell {
  width: min(1440px, calc(100% - 36px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; font-size: 19px; letter-spacing: -.04em; }
.brand b { font-weight: 850; }
.brand-mark {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  background: linear-gradient(145deg, var(--primary), #8c7cff);
  box-shadow: 0 10px 24px rgba(93, 77, 245, .25);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.08em;
}
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 3px; margin: 0 auto; }
.nav-home, .nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  padding: 0 10px;
  color: #475467;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-home:hover, .nav-trigger:hover, .nav-item:focus-within .nav-trigger { background: var(--soft-blue); color: var(--primary); }
.nav-trigger span { color: #98a2b3; font-size: 12px; }
.nav-item { position: relative; }
.nav-panel {
  position: absolute;
  visibility: hidden;
  top: calc(100% + 14px);
  left: 50%;
  width: 250px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-panel::before { position: absolute; top: -17px; left: 0; width: 100%; height: 18px; content: ""; }
.nav-item:hover .nav-panel, .nav-item:focus-within .nav-panel { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nav-panel ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-panel li a, .nav-panel .menu-title a {
  display: block;
  border-radius: 10px;
  padding: 8px 10px;
  color: #475467;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.nav-panel li a:hover { background: var(--soft-blue); color: var(--primary); }
.nav-panel.mega-panel { position: fixed; top: 72px; left: 50%; width: min(1040px, calc(100vw - 48px)); padding: 24px; transform: translate(-50%, -7px); }
.nav-item:hover .mega-panel, .nav-item:focus-within .mega-panel { transform: translate(-50%, 0); }
.menu-title { margin: 0 0 8px; color: var(--primary); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.menu-title a { padding: 0 !important; color: var(--primary) !important; }
.menu-grid { grid-template-columns: repeat(3, 1fr); }
.mega-columns { display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; }
.mega-columns > div:first-child { padding-right: 28px; border-right: 1px solid var(--line); }
.mega-columns > div:first-child ul { grid-template-columns: repeat(2, 1fr); }
.mega-columns > div:last-child ul { grid-template-columns: repeat(2, 1fr); }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.header-link { padding: 10px 2px; color: #475467; font-size: 12px; font-weight: 800; white-space: nowrap; }
.header-link:hover { color: var(--primary); }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu > summary { display: grid; width: 42px; height: 42px; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; list-style: none; }
.mobile-menu > summary::-webkit-details-marker { display: none; }
.mobile-menu > summary span { width: 18px; height: 2px; border-radius: 3px; background: var(--ink); }
.mobile-panel { position: fixed; z-index: 120; top: 78px; right: 0; left: 0; max-height: calc(100vh - 78px); overflow: auto; padding: 18px 24px 28px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 20px 50px rgba(16, 24, 40, .12); }
.mobile-panel > a, .mobile-panel summary { display: flex; width: 100%; min-height: 47px; align-items: center; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 800; cursor: pointer; list-style: none; }
.mobile-panel details summary::-webkit-details-marker { display: none; }
.mobile-panel details summary::after { margin-left: auto; color: var(--primary); content: "+"; }
.mobile-panel details[open] summary::after { content: "−"; }
.mobile-panel details div { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 12px; padding: 8px 0 14px 14px; }
.mobile-panel details div a { padding: 7px 0; color: var(--muted); font-size: 12px; }
.mobile-panel .mobile-cta { justify-content: center; margin-top: 16px; border: 0; border-radius: 13px; background: var(--primary); color: #fff; }

/* Shared typography and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 25px; height: 2px; border-radius: 4px; background: currentColor; content: ""; }
.eyebrow-light { color: #b7aefe; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(48px, 6vw, 80px); }
h2 { font-size: clamp(36px, 4.2vw, 58px); }
h3 { font-size: 22px; }
p { color: var(--text); }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: 0 14px 30px rgba(93, 77, 245, .23); color: #fff; }
.button-primary:hover { box-shadow: 0 18px 38px rgba(93, 77, 245, .3); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 12px; }
.button-outline { border-color: #d0d5dd; background: rgba(255, 255, 255, .72); color: var(--ink); }
.button-outline:hover { border-color: var(--primary); color: var(--primary); }
.button-dark { background: var(--ink); color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.section { padding: 104px 0; }
.section-soft { background: linear-gradient(160deg, #f8f9fc, #f1f5ff); }
.section-ink { overflow: hidden; background: linear-gradient(135deg, #111827, #1e2742); color: #fff; }
.section-ink p { color: #aeb8ca; }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 800px; margin: 16px 0 0; }
.section-heading.split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.section-heading.split > p { margin: 0; color: var(--muted); line-height: 1.8; }
.section-heading.centered { text-align: center; }
.section-heading.centered h2 { margin-inline: auto; }
.center-action { display: flex; justify-content: center; margin-top: 42px; }

/* Home hero */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding: 104px 0 0; background: linear-gradient(145deg, #fff 0%, #f7f6ff 52%, #effcf8 100%); }
.home-grid-bg { position: absolute; z-index: -3; inset: 0; opacity: .42; background-image: linear-gradient(rgba(93,77,245,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(93,77,245,.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, #000, transparent 88%); }
.home-orb { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); }
.home-orb-1 { top: 90px; right: -170px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(93,77,245,.18), rgba(93,77,245,0) 70%); }
.home-orb-2 { bottom: 60px; left: -140px; width: 430px; height: 430px; background: radial-gradient(circle, rgba(87,217,163,.2), rgba(87,217,163,0) 70%); }
.home-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 58px; min-height: 650px; }
.home-copy { padding-bottom: 50px; }
.home-copy h1 { max-width: 760px; margin: 24px 0 24px; color: var(--ink); font-weight: 780; }
.home-copy h1 em { color: var(--primary); font-style: normal; }
.home-copy > p { max-width: 680px; margin: 0; color: #667085; font-size: 18px; line-height: 1.75; }
.home-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); }
.home-proof div { display: grid; gap: 4px; }
.home-proof strong { font-size: 13px; }
.home-proof span { color: #98a2b3; font-size: 10px; }
.visual-stage { position: relative; display: grid; min-height: 620px; place-items: center; }
.visual-stage::before, .visual-stage::after { position: absolute; border-radius: 50%; content: ""; }
.visual-stage::before { width: 510px; height: 510px; border: 1px solid rgba(93,77,245,.14); }
.visual-stage::after { width: 390px; height: 390px; border: 1px dashed rgba(32,184,205,.25); transform: rotate(17deg); }
.phone { position: relative; z-index: 2; width: 288px; height: 580px; padding: 9px; border: 1px solid #d9dce5; border-radius: 44px; background: linear-gradient(145deg, #4e5769, #0d1320 55%, #3a4352); box-shadow: 0 42px 80px rgba(50, 47, 110, .26), 0 0 0 8px rgba(93, 77, 245, .05); transform: rotate(2deg); }
.phone-notch { position: absolute; z-index: 4; top: 17px; left: 50%; width: 82px; height: 23px; border-radius: 999px; background: #0a0e16; transform: translateX(-50%); }
.phone-ui { position: relative; overflow: hidden; height: 100%; padding: 48px 16px 14px; border-radius: 35px; background: #f8f9fc; }
.ui-head { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; }
.ui-head > span { display: grid; height: 38px; place-items: center; border-radius: 13px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 900; }
.ui-head div { display: grid; }
.ui-head small { color: #98a2b3; font-size: 8px; }
.ui-head b { font-size: 10px; }
.ui-main { position: relative; overflow: hidden; min-height: 176px; margin-top: 20px; padding: 22px; border-radius: 25px; background: linear-gradient(145deg, #6657f7, #4032d5); color: #fff; box-shadow: 0 18px 35px rgba(93,77,245,.25); }
.ui-main::after { position: absolute; right: -48px; bottom: -70px; width: 165px; height: 165px; border: 28px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.ui-main small { display: block; color: #d9d5ff; font-size: 7px; font-weight: 850; letter-spacing: .15em; }
.ui-main strong { display: block; margin-top: 24px; font-size: 42px; letter-spacing: -.06em; }
.ui-main i { display: block; width: 70%; height: 6px; margin-top: 15px; border-radius: 99px; background: linear-gradient(90deg, var(--lime) 82%, rgba(255,255,255,.18) 82%); }
.phone-ui h3 { margin: 20px 3px 10px; font-size: 12px; letter-spacing: -.02em; }
.ui-task { display: grid; grid-template-columns: 36px 1fr 20px; align-items: center; gap: 9px; margin-top: 9px; padding: 11px; border: 1px solid #eaecf0; border-radius: 16px; background: #fff; }
.ui-task.active { border-color: #d8d3ff; background: #eeecff; }
.ui-task > span { display: grid; height: 36px; place-items: center; border-radius: 11px; background: var(--ink); color: #fff; font-size: 8px; font-weight: 900; }
.ui-task div { display: grid; }
.ui-task b { font-size: 9px; }
.ui-task small { color: #98a2b3; font-size: 7px; }
.ui-task em { color: var(--primary); font-size: 11px; font-style: normal; font-weight: 900; }
.ui-nav { position: absolute; right: 12px; bottom: 13px; left: 12px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 9px; border-radius: 15px; background: #fff; box-shadow: 0 8px 24px rgba(16,24,40,.08); }
.ui-nav i { display: grid; place-items: center; color: var(--primary); font-size: 11px; font-style: normal; }
.ui-nav small { color: #98a2b3; font-size: 5px; }
.visual-card { position: absolute; z-index: 3; display: flex; min-width: 176px; align-items: center; gap: 11px; padding: 12px; border: 1px solid rgba(255,255,255,.8); border-radius: 17px; background: rgba(255,255,255,.87); box-shadow: 0 18px 45px rgba(50,47,110,.15); backdrop-filter: blur(14px); }
.visual-card > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: var(--lime); font-weight: 900; }
.visual-card div { display: grid; }
.visual-card b { font-size: 10px; }
.visual-card small { color: #98a2b3; font-size: 7px; }
.card-top { top: 128px; left: -8px; }
.card-bottom { right: -12px; bottom: 94px; }
.card-bottom > span { background: #dff8ff; color: #138ca0; }
.tech-bar { display: grid; grid-template-columns: repeat(7, 1fr); min-height: 96px; align-items: center; border-top: 1px solid var(--line); color: #667085; font-size: 13px; font-weight: 800; text-align: center; }

/* Shared cards and page hero */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 98px 0 92px; background: linear-gradient(145deg, #fff, #f4f2ff 62%, #ecfbf6); }
.page-hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); }
.orb-a { top: -230px; right: -130px; width: 570px; height: 570px; border: 85px solid rgba(93,77,245,.07); }
.orb-b { bottom: -220px; left: 35%; width: 430px; height: 430px; border: 60px solid rgba(87,217,163,.08); }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .55fr; align-items: center; gap: 80px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 36px; color: #98a2b3; font-size: 11px; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs strong { color: #667085; font-weight: 700; }
.page-hero h1 { max-width: 820px; margin: 20px 0 20px; }
.page-hero-grid > div:first-child > p { max-width: 780px; margin: 0; color: #667085; font-size: 18px; line-height: 1.75; }
.hero-stat-card { padding: 30px; border: 1px solid rgba(255,255,255,.8); border-radius: 30px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-stat-card > span { color: var(--primary); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.hero-stat-card > strong { display: block; margin: 16px 0 28px; font-size: 29px; line-height: 1.1; letter-spacing: -.045em; }
.hero-stat-card > strong em { color: var(--primary); font-style: normal; }
.hero-stat-card > div { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.hero-stat-card b { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 9px; background: var(--soft-blue); color: var(--primary); font-size: 8px; }
.hero-stat-card p { margin: 0; color: #475467; font-size: 11px; font-weight: 650; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.info-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(16,24,40,.08); }
.info-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--soft-blue); color: var(--primary); font-size: 10px; font-weight: 900; }
.info-card h3 { margin: 34px 0 14px; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.feature-layout h2 { margin: 18px 0 20px; }
.feature-layout h2 em { color: #a79cff; font-style: normal; }
.feature-layout > div:first-child p { max-width: 500px; color: inherit; opacity: .72; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.05); color: #e6eaf2; font-size: 14px; }
.check-list span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; background: var(--lime); color: var(--ink); font-size: 11px; font-weight: 900; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.process-grid article { min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.process-grid b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 10px; }
.process-grid h3 { margin: 36px 0 12px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 78px; align-items: center; gap: 20px; color: var(--ink); font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { margin-left: auto; color: var(--primary); font-size: 23px; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -8px 0 25px; color: var(--muted); }
.cta-section { padding-top: 0; }
.cta-card { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; overflow: hidden; padding: 54px 58px; border-radius: 32px; background: linear-gradient(135deg, #dcd8ff, #daf8ec 80%); }
.cta-card h2 { max-width: 760px; margin: 14px 0; font-size: clamp(34px, 4vw, 54px); }
.cta-card p { max-width: 720px; margin: 0; color: #5b6475; }

/* Listing pages */
.link-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.link-card { position: relative; display: flex; min-height: 290px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.link-card:hover { transform: translateY(-6px); border-color: #b7b1f8; box-shadow: 0 24px 50px rgba(72,60,181,.1); }
.link-card > span { color: var(--primary); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.link-card h3 { margin: 32px 0 13px; }
.link-card p { margin: 0; color: var(--muted); font-size: 13px; }
.link-card b { margin-top: auto; padding-top: 28px; color: var(--primary); font-size: 11px; }
.section-soft .link-card { border-color: rgba(93,77,245,.1); }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.module-grid > div { min-height: 210px; padding: 26px; border: 1px solid rgba(93,77,245,.11); border-radius: 21px; background: rgba(255,255,255,.82); }
.module-grid i { color: var(--primary); font-size: 9px; font-style: normal; font-weight: 900; }
.module-grid h3 { margin: 28px 0 10px; font-size: 19px; }
.module-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.feature-layout-light { padding: 58px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, #fff, #f8f9fc); }
.tech-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-cloud span, .tech-row span { padding: 14px 18px; border: 1px solid #ddd9ff; border-radius: 999px; background: #f5f3ff; color: #4d3ee3; font-size: 12px; font-weight: 800; }

/* Home content */
.featured-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.featured-services a { display: flex; min-height: 285px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.featured-services a:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(16,24,40,.08); }
.featured-services span { color: var(--primary); font-size: 10px; font-weight: 900; }
.featured-services h3 { margin: 34px 0 13px; }
.featured-services p { margin: 0; color: var(--muted); font-size: 13px; }
.featured-services b { margin-top: auto; padding-top: 22px; color: var(--primary); font-size: 11px; }
.solution-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.solution-showcase a { position: relative; min-height: 255px; overflow: hidden; padding: 26px; border: 1px solid rgba(93,77,245,.11); border-radius: 22px; background: rgba(255,255,255,.82); }
.solution-showcase a::after { position: absolute; right: -55px; bottom: -55px; width: 120px; height: 120px; border: 20px solid rgba(93,77,245,.06); border-radius: 50%; content: ""; transition: transform .25s ease; }
.solution-showcase a:hover::after { transform: scale(1.4); }
.solution-showcase > a > span { float: right; color: var(--primary); font-weight: 900; }
.solution-showcase h3 { margin: 42px 0 12px; font-size: 19px; }
.solution-showcase p { margin: 0; color: var(--muted); font-size: 12px; }
.home-projects { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 15px; }
.home-case { display: flex; min-height: 430px; flex-direction: column; overflow: hidden; padding: 34px; border-radius: 27px; }
.home-case-1 { background: linear-gradient(145deg, #d8ff82, #bbf0ce); color: var(--ink); }
.home-case-2 { background: linear-gradient(145deg, #6557f7, #4534cb); }
.home-case-3 { background: linear-gradient(145deg, #ddf8ff, #bde4ff); color: var(--ink); }
.home-case > span { font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.home-case h3 { margin: 38px 0 14px; font-size: 32px; }
.home-case p { margin: 0; color: inherit; font-size: 13px; opacity: .75; }
.home-case strong { margin-top: auto; padding-top: 38px; font-size: 18px; }
.home-case b { margin-top: 18px; font-size: 11px; }
.process-home { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.process-home > div { align-self: start; position: sticky; top: 120px; }
.process-home h2 { margin: 17px 0; }
.process-home > div p { color: var(--muted); }
.process-home ol { margin: 0; padding: 0; list-style: none; }
.process-home li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.process-home li:first-child { padding-top: 0; }
.process-home li > b { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--soft-blue); color: var(--primary); font-size: 9px; }
.process-home h3 { margin: 2px 0 8px; }
.process-home li p { margin: 0; color: var(--muted); font-size: 13px; }

/* Projects */
.project-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.case-card { display: flex; min-height: 420px; flex-direction: column; padding: 34px; border-radius: 27px; transition: transform .22s ease; }
.case-card:hover { transform: translateY(-6px); }
.case-1 { background: linear-gradient(145deg, #d9ff8a, #c4f1d1); }
.case-2 { background: linear-gradient(145deg, #6152f2, #4132c5); color: #fff; }
.case-3 { background: linear-gradient(145deg, #d8f5ff, #c9dcff); }
.case-card > span { font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.case-card h3 { margin: 35px 0 13px; font-size: clamp(28px, 3vw, 40px); }
.case-card p { max-width: 470px; margin: 0; color: inherit; font-size: 13px; opacity: .72; }
.case-tech { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.case-tech i { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 8px; font-style: normal; font-weight: 800; opacity: .65; }
.case-card strong { margin-top: auto; padding-top: 30px; font-size: 18px; }
.case-card > b { margin-top: 18px; font-size: 11px; }
.case-overview { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: 100px; }
.case-overview h2 { margin: 17px 0 20px; }
.case-overview p { color: var(--muted); line-height: 1.8; }
.case-overview dl { margin: 0; border-top: 1px solid var(--line); }
.case-overview dl div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.case-overview dt { color: #98a2b3; font-size: 11px; }
.case-overview dd { margin: 0; font-size: 13px; font-weight: 800; }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.challenge-grid article { padding: 44px; border: 1px solid rgba(93,77,245,.1); border-radius: 28px; background: rgba(255,255,255,.84); }
.challenge-grid article > span { color: var(--primary); font-size: 10px; font-weight: 900; }
.challenge-grid h2 { margin: 40px 0 18px; font-size: 36px; }
.challenge-grid p { color: var(--muted); }
.tech-row { display: flex; flex-wrap: wrap; gap: 12px; }
.screen-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.screen-gallery > div { min-height: 430px; padding: 30px 18px; border: 7px solid #4b566a; border-radius: 34px; background: #f8f9fc; color: var(--ink); box-shadow: 0 26px 48px rgba(0,0,0,.2); }
.screen-gallery span { display: block; color: var(--primary); font-size: 8px; font-weight: 900; }
.screen-gallery strong { display: block; margin: 30px 0 45px; font-size: 19px; }
.screen-gallery i { display: block; height: 64px; margin-top: 10px; border-radius: 14px; background: #e9e7ff; }
.screen-gallery i:nth-of-type(2) { background: linear-gradient(135deg, #6354f6, #8174ff); }
.screen-gallery i:nth-of-type(3) { height: 38px; background: #def6ec; }
.result-section { padding-top: 70px; }
.result-card { padding: 70px; border-radius: 32px; background: linear-gradient(135deg, #d7ff81, #d7f8ef); text-align: center; }
.result-card > span { color: #4b5565; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.result-card strong { display: block; margin: 18px 0; font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -.06em; }
.result-card p { max-width: 720px; margin: 0 auto; color: #58616f; }

/* Pricing, forms and contact */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { display: flex; min-height: 440px; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.price-card.featured { border-color: #9389ff; background: linear-gradient(155deg, #f2f0ff, #effbf6); box-shadow: 0 25px 55px rgba(93,77,245,.12); }
.price-card > span { color: var(--primary); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.price-card h3 { margin: 26px 0 13px; font-size: 30px; }
.price-card p { color: var(--muted); font-size: 13px; }
.price-card ul { display: grid; gap: 12px; margin: 25px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; color: #475467; font-size: 12px; }
.price-card a { margin-top: auto; color: var(--primary); font-size: 12px; font-weight: 900; }
.number-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.number-list li { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: #475467; font-size: 13px; font-weight: 750; }
.number-list b { color: var(--primary); font-size: 9px; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 100px; }
.form-layout h2 { margin: 17px 0; }
.form-layout > div > p { color: var(--muted); }
.contact-points { display: grid; gap: 10px; margin-top: 38px; }
.contact-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; }
.contact-points > div > span { display: grid; height: 42px; place-items: center; border-radius: 12px; background: var(--soft-blue); color: var(--primary); font-size: 8px; font-weight: 900; }
.contact-points p { display: grid; margin: 0; color: var(--muted); font-size: 11px; }
.contact-points b { color: var(--ink); font-size: 13px; }
.request-form { display: grid; gap: 19px; padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 25px 60px rgba(16,24,40,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form label { display: grid; gap: 7px; color: #475467; font-size: 11px; font-weight: 800; }
.request-form input, .request-form select, .request-form textarea { width: 100%; border: 1px solid #d0d5dd; border-radius: 12px; outline: none; background: #fff; padding: 13px 14px; color: var(--ink); font-size: 13px; font-weight: 500; transition: border .2s ease, box-shadow .2s ease; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(93,77,245,.1); }
.request-form textarea { resize: vertical; }
.request-form fieldset { margin: 0; border: 1px solid var(--line); border-radius: 14px; padding: 15px; }
.request-form legend { padding: 0 6px; color: #475467; font-size: 11px; font-weight: 800; }
.choice-row { display: flex; flex-wrap: wrap; gap: 12px; }
.choice-row label { display: flex; align-items: center; gap: 6px; }
.choice-row input, .consent input { width: 16px; height: 16px; accent-color: var(--primary); }
.request-form .consent { display: flex; grid-template-columns: 16px 1fr; align-items: flex-start; gap: 9px; color: var(--muted); font-weight: 500; }
.consent a { color: var(--primary); text-decoration: underline; }
.request-form .button { justify-self: start; border: 0; }
.contact-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card-grid a { display: flex; min-height: 280px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.contact-card-grid a:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(16,24,40,.08); }
.contact-card-grid span { color: var(--primary); font-size: 10px; font-weight: 900; }
.contact-card-grid h3 { margin: 35px 0 12px; }
.contact-card-grid p { color: var(--muted); font-size: 13px; }
.contact-card-grid b { margin-top: auto; color: var(--primary); font-size: 11px; }
.office-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 100px; }
.office-grid h2 { margin: 17px 0; }
.office-grid > div > p { color: var(--muted); }
.office-grid dl { margin: 0; }
.office-grid dl div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.office-grid dt { color: #98a2b3; font-size: 11px; }
.office-grid dd { margin: 0; font-size: 13px; font-weight: 800; }
.office-grid dd a:hover { color: var(--primary); }

/* Resources and legal */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.article-grid article { display: flex; min-height: 285px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 23px; background: #fff; }
.article-grid article > span { color: var(--primary); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.article-grid h3 { margin: 32px 0 13px; font-size: 21px; }
.article-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.article-grid a { margin-top: auto; padding-top: 20px; color: var(--primary); font-size: 11px; font-weight: 900; }
.pill-links { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-links a { padding: 13px 17px; border: 1px solid #ddd9ff; border-radius: 999px; background: #fff; color: var(--primary); font-size: 12px; font-weight: 800; }
.pill-links a:hover { background: var(--primary); color: #fff; }
.legal-layout { display: grid; grid-template-columns: 230px 1fr; align-items: start; gap: 90px; }
.legal-layout aside { position: sticky; top: 112px; display: grid; padding: 22px; border: 1px solid var(--line); border-radius: 18px; }
.legal-layout aside strong { margin-bottom: 12px; font-size: 13px; }
.legal-layout aside a { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.legal-layout aside a:hover { color: var(--primary); }
.legal-copy { max-width: 760px; }
.legal-copy .lead { margin: 0 0 45px; color: var(--text); font-size: 20px; line-height: 1.7; }
.legal-copy h2 { margin: 45px 0 14px; font-size: 27px; }
.legal-copy p { color: var(--muted); line-height: 1.85; }
.legal-copy a { color: var(--primary); text-decoration: underline; }
.legal-note { margin-top: 50px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; }

/* Footer */
.site-footer { padding: 90px 0 0; background: #111827; color: #fff; }
.footer-top { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; padding-bottom: 70px; }
.brand-footer { margin-bottom: 34px; }
.footer-lead h2 { max-width: 430px; margin: 0 0 16px; font-size: 38px; }
.footer-lead p { margin: 0 0 28px; color: #98a2b3; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3 { margin: 0 0 13px; color: #fff; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: #98a2b3; font-size: 11px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #667085; font-size: 10px; }

@media (max-width: 1250px) {
  .header-shell { gap: 14px; }
  .desktop-nav { gap: 0; }
  .nav-home, .nav-trigger { padding-inline: 7px; font-size: 11.5px; }
  .header-link { display: none; }
}

@media (max-width: 1060px) {
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu { display: block; }
  .header-shell { min-height: 72px; }
  .mobile-panel { top: 72px; max-height: calc(100vh - 72px); }
  .home-hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .home-hero-grid { padding-top: 30px; }
  .home-copy { padding-bottom: 0; }
  .visual-stage { min-height: 590px; }
  .page-hero { padding-top: 70px; }
  .hero-stat-card { display: none; }
  .section-heading.split { grid-template-columns: 1fr; gap: 22px; }
  .feature-layout, .process-home, .case-overview, .form-layout, .office-grid { grid-template-columns: 1fr; gap: 55px; }
  .process-home > div, .legal-layout aside { position: static; }
  .featured-services, .link-card-grid, .module-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-showcase { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }
  .header-shell { width: calc(100% - 24px); }
  .brand { font-size: 17px; }
  .brand-mark { width: 38px; height: 38px; }
  .mobile-panel { padding-inline: 16px; }
  .mobile-panel details div { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 38px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(33px, 10vw, 45px); }
  .home-hero { padding-top: 76px; }
  .home-copy > p, .page-hero-grid > div:first-child > p { font-size: 16px; }
  .home-proof { grid-template-columns: 1fr; }
  .visual-stage { min-height: 545px; transform: scale(.88); margin: -25px -35px 0; }
  .phone { width: 274px; height: 550px; }
  .card-top { left: 0; }
  .card-bottom { right: 0; }
  .tech-bar { grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 25px 0; }
  .page-hero { padding: 58px 0 68px; }
  .breadcrumbs { margin-bottom: 27px; }
  .featured-services, .link-card-grid, .module-grid, .article-grid, .content-grid, .pricing-grid, .contact-card-grid, .project-list-grid, .challenge-grid { grid-template-columns: 1fr; }
  .solution-showcase { grid-template-columns: 1fr; }
  .home-projects { grid-template-columns: 1fr; }
  .home-case { min-height: 350px; }
  .feature-layout-light { padding: 30px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 38px 27px; }
  .cta-card .button { justify-self: start; }
  .screen-gallery { grid-template-columns: 1fr 1fr; gap: 9px; }
  .screen-gallery > div { min-height: 340px; border-width: 5px; border-radius: 25px; padding: 22px 13px; }
  .result-card { padding: 48px 25px; }
  .field-row { grid-template-columns: 1fr; }
  .request-form { padding: 25px 20px; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-layout aside { display: none; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 40px 22px; }
  .footer-bottom { flex-direction: column; justify-content: center; gap: 4px; }
}

@media (max-width: 430px) {
  .screen-gallery { grid-template-columns: 1fr; }
  .screen-gallery > div { min-height: 390px; }
  .footer-links { grid-template-columns: 1fr; }
}

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

/* Detailed SEO service pages */
.service-seo-hero { padding-bottom: 82px; }
.service-hero-lead { max-width: 820px !important; }
.service-promise-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 30px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.service-promise-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 32px solid rgba(93, 77, 245, .07);
  border-radius: 50%;
  content: "";
}
.service-promise-card > span { color: var(--primary); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.service-promise-card h2 { position: relative; z-index: 1; margin: 18px 0 32px; font-size: 30px; line-height: 1.12; }
.service-stat-row { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.service-stat-row div { display: grid; gap: 4px; padding: 13px 9px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.8); }
.service-stat-row strong { font-size: 10px; }
.service-stat-row small { color: #98a2b3; font-size: 7px; }
.service-anchor-nav { position: sticky; z-index: 60; top: 78px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(16px); }
.service-anchor-nav .shell { display: flex; min-height: 57px; align-items: center; justify-content: center; gap: 34px; overflow-x: auto; scrollbar-width: none; }
.service-anchor-nav .shell::-webkit-scrollbar { display: none; }
.service-anchor-nav a { position: relative; flex: 0 0 auto; color: #667085; font-size: 11px; font-weight: 800; }
.service-anchor-nav a::after { position: absolute; right: 100%; bottom: -18px; left: 0; height: 2px; background: var(--primary); content: ""; transition: right .2s ease; }
.service-anchor-nav a:hover { color: var(--primary); }
.service-anchor-nav a:hover::after { right: 0; }
#genel-bakis, #hizmet-kapsami, #surec, #teknik-kararlar, #teslimatlar, #sss { scroll-margin-top: 145px; }
.service-copy-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.sticky-title { position: sticky; top: 170px; align-self: start; }
.sticky-title h2 { margin: 18px 0 0; }
.long-copy > p { margin: 0 0 22px; color: #536071; font-size: 17px; line-height: 1.85; }
.inline-proof { display: grid; gap: 8px; margin-top: 35px; padding: 26px; border-left: 4px solid var(--primary); border-radius: 0 18px 18px 0; background: var(--soft-blue); }
.inline-proof strong { font-size: 16px; }
.inline-proof span { color: #667085; font-size: 13px; }
.seo-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.seo-scope-grid article { min-height: 260px; padding: 29px; border: 1px solid rgba(93,77,245,.11); border-radius: 24px; background: rgba(255,255,255,.86); transition: transform .2s ease, box-shadow .2s ease; }
.seo-scope-grid article:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(45,43,95,.08); }
.seo-scope-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; background: #eeeaff; color: var(--primary); font-size: 9px; font-weight: 900; }
.seo-scope-grid h3 { margin: 31px 0 13px; font-size: 20px; }
.seo-scope-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.service-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-principles article { min-height: 275px; padding: 31px; border: 1px solid rgba(255,255,255,.11); border-radius: 23px; background: rgba(255,255,255,.05); }
.service-principles b { color: #b7aefe; font-size: 10px; letter-spacing: .1em; }
.service-principles h3 { margin: 41px 0 14px; color: #fff; }
.service-principles p { margin: 0; color: #aeb8ca; font-size: 13px; }
.service-process-list { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.service-process-list li { display: grid; grid-template-columns: 110px 1fr; gap: 38px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.service-process-list > li > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--soft-blue); color: var(--primary); font-size: 10px; font-weight: 900; }
.service-process-list h3 { margin: 1px 0 10px; font-size: 25px; }
.service-process-list p { max-width: 720px; margin: 0; color: var(--muted); font-size: 14px; }
.decision-intro { max-width: 850px; margin-bottom: 50px; }
.decision-intro h2 { margin: 18px 0; }
.decision-intro > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.decision-grid article { min-height: 210px; padding: 30px; border: 1px solid rgba(93,77,245,.12); border-radius: 22px; background: rgba(255,255,255,.86); }
.decision-grid h3 { margin-bottom: 15px; font-size: 21px; }
.decision-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.deliverable-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 100px; }
.deliverable-layout > div { position: sticky; top: 170px; }
.deliverable-layout h2 { margin: 18px 0; }
.deliverable-layout > div p { color: var(--muted); line-height: 1.8; }
.deliverable-list { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.deliverable-list li { display: grid; grid-template-columns: 50px 1fr 28px; align-items: center; gap: 14px; min-height: 70px; border-bottom: 1px solid var(--line); color: #344054; font-size: 14px; font-weight: 780; }
.deliverable-list li > span { color: var(--primary); font-size: 9px; font-weight: 900; }
.deliverable-list li > b { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 9px; background: var(--soft-mint); color: #17865c; font-size: 10px; }
.service-faq details p { max-width: 790px; line-height: 1.8; }
.related-section { padding-top: 90px; }
.related-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-service-grid a { display: flex; min-height: 280px; flex-direction: column; padding: 29px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.related-service-grid a:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(16,24,40,.08); }
.related-service-grid span { color: var(--primary); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.related-service-grid h3 { margin: 33px 0 13px; }
.related-service-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.related-service-grid b { margin-top: auto; padding-top: 23px; color: var(--primary); font-size: 11px; }

@media (max-width: 1060px) {
  .service-promise-card { display: none; }
  .service-copy-layout, .deliverable-layout { grid-template-columns: 1fr; gap: 45px; }
  .sticky-title, .deliverable-layout > div { position: static; }
  .service-principles, .seo-scope-grid, .related-service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-anchor-nav { top: 72px; }
}

@media (max-width: 720px) {
  .service-anchor-nav .shell { justify-content: flex-start; gap: 24px; }
  .service-anchor-nav a { font-size: 10px; }
  .service-anchor-nav a::after { bottom: -19px; }
  .long-copy > p { font-size: 15px; }
  .seo-scope-grid, .service-principles, .decision-grid, .related-service-grid { grid-template-columns: 1fr; }
  .seo-scope-grid article, .service-principles article { min-height: 230px; }
  .service-process-list li { grid-template-columns: 52px 1fr; gap: 18px; }
  .service-process-list h3 { font-size: 21px; }
  .deliverable-list li { grid-template-columns: 36px 1fr 27px; }
}

/* Customer-acquisition solution and sector pages */
.solution-lead-hero { padding-bottom: 84px; }
.solution-promise > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 22px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
}
.lead-assurance { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 25px; }
.lead-assurance span { color: #475467; font-size: 10px; font-weight: 800; }
.pain-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pain-solution-grid article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.pain-solution-grid article > span { color: var(--primary); font-size: 10px; font-weight: 900; }
.pain-solution-grid h3 { margin: 38px 0 14px; font-size: 22px; }
.pain-solution-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.pain-solution-grid b { margin-top: auto; padding-top: 24px; color: var(--primary); font-size: 10px; }
.conversion-note {
  display: grid;
  grid-template-columns: .48fr 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid #dcd7ff;
  border-radius: 20px;
  background: var(--soft-blue);
}
.conversion-note strong { font-size: 16px; }
.conversion-note p { margin: 0; color: #667085; font-size: 12px; }
.conversion-note a, .text-cta { color: var(--primary); font-size: 11px; font-weight: 900; white-space: nowrap; }
.outcome-cards article { min-height: 245px; }
.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  padding: 34px;
  border-radius: 24px;
  background: #111827;
  color: #fff;
}
.quote-band span { color: #b7aefe; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.quote-band h3 { max-width: 700px; margin: 11px 0 0; color: #fff; font-size: 22px; }
.trust-section { background: #111827; color: #fff; }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.trust-layout h2 { margin: 18px 0; color: #fff; }
.trust-layout > div:first-child > p { max-width: 570px; margin: 0 0 28px; color: #aeb8ca; line-height: 1.8; }
.trust-points { display: grid; }
.trust-points > div { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.trust-points strong { color: #b7aefe; font-size: 10px; }
.trust-points p { display: grid; gap: 7px; margin: 0; color: #aeb8ca; font-size: 13px; }
.trust-points b { color: #fff; font-size: 17px; }
.lead-cta { align-items: center; }
.lead-cta p { max-width: 700px; margin: 14px 0 0; color: #667085; }
.cta-actions { display: grid; justify-items: center; gap: 14px; }
.cta-actions > a:last-child { color: var(--primary); font-size: 11px; font-weight: 900; }
#is-firsati, #ozellikler, #kazanimlar, #surec, #maliyet, #teslimatlar, #sss { scroll-margin-top: 145px; }

@media (max-width: 1060px) {
  .pain-solution-grid { grid-template-columns: repeat(2, 1fr); }
  .conversion-note { grid-template-columns: 1fr; gap: 15px; }
  .trust-layout { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 720px) {
  .lead-assurance { gap: 10px 14px; }
  .pain-solution-grid { grid-template-columns: 1fr; }
  .pain-solution-grid article { min-height: 245px; }
  .quote-band { grid-template-columns: 1fr; padding: 28px 23px; }
  .quote-band .button { justify-self: start; }
  .trust-points > div { grid-template-columns: 38px 1fr; gap: 14px; }
  .cta-actions { justify-items: start; }
}

/* Persistent call and WhatsApp actions */
.floating-contact {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.floating-contact-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 7px 17px 7px 7px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(16,24,40,.2);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-contact-button:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(16,24,40,.27); }
.floating-contact-button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.floating-call { background: #5d4df5; }
.floating-whatsapp { background: #19a767; }
.floating-contact-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.17);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.floating-whatsapp-icon { font-size: 10px; letter-spacing: -.03em; }
.centered-actions { justify-content: center; }
.resource-choice-grid a { min-height: 305px; }

@media (max-width: 720px) {
  .floating-contact { right: 14px; bottom: 14px; display: flex; }
  .floating-contact-button { min-height: 50px; padding: 6px; }
  .floating-contact-icon { width: 38px; height: 38px; }
  .floating-contact-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .resource-choice-grid a { min-height: 250px; }
}
