/* DevSell — White-primary agency theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-muted: #eef1f4;
  --bg-warm: #f8f5f1;
  --text: #12151a;
  --text-muted: #5a6270;
  --text-soft: #7a8494;
  --accent: #0d6e56;
  --accent-hover: #0a5744;
  --accent-soft: #e8f5f0;
  --accent-mid: #1a8f72;
  --cta: #d4b896;
  --cta-hover: #c4a574;
  --cta-text: #1a1510;
  --dark: #141820;
  --dark-soft: #1e2430;
  --border: #e4e7ec;
  --shadow: 0 8px 30px rgba(18, 21, 26, 0.06);
  --shadow-lg: 0 20px 50px rgba(18, 21, 26, 0.1);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --header-h: 78px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --container: 1180px;
  --whatsapp: #25d366;
  --phone: #0d6e56;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button:not(.form-submit) { cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1320px);
  margin-inline: auto;
}

/* —— Typography —— */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-soft); transform: translateY(-1px); }

.btn-cta {
  background: var(--cta);
  color: var(--cta-text);
}
.btn-cta:hover { background: var(--cta-hover); }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-hover); }

.btn-outline {
  background: #fff;
  border: 1.5px solid var(--text);
  color: var(--text);
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}
.btn-outline:hover { background: var(--text); color: #fff; }

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

.btn-header {
  border-radius: 10px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.4rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.btn-header.call {
  background: linear-gradient(135deg, #0d6e56, #129670);
}
.btn-header.call:hover {
  background: linear-gradient(135deg, #0a5744, #0d6e56);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(13, 110, 86, 0.35);
}
.btn-header.wa {
  background: linear-gradient(135deg, #1ebe57, #25d366);
}
.btn-header.wa:hover {
  background: linear-gradient(135deg, #18a34a, #1ebe57);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.btn-header.schedule {
  background: linear-gradient(135deg, #7c3aed, #0d6e56);
}
.btn-header.schedule:hover {
  background: linear-gradient(135deg, #6d28d9, #0a5744);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

.btn-header svg { width: 16px; height: 16px; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 1.5rem, 1400px);
  margin-inline: auto;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  z-index: 1002;
  transition: visibility 0.2s, opacity 0.2s;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo-name span { color: var(--accent); }
.logo-tag {
  font-size: 0.65rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  position: static;
  overflow: visible;
}

.nav-drawer-head { display: none; }
.nav-overlay { display: none; }

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.dropdown a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

/* Mega menu — positioned to header so left columns never clip */
.nav-item.mega {
  position: static;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1080px, calc(100vw - 2rem));
  max-width: calc(100% - 0px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  box-sizing: border-box;
}
.mega-menu.mega-menu-3 {
  width: min(920px, calc(100vw - 2rem));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-item.mega:hover > .mega-menu,
.nav-item.mega:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col {
  min-width: 0;
}
.mega-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  min-width: 0;
}
.mega-col a:hover { color: var(--accent); }
.mega-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* AI & SaaS menu CTA */
.nav-cta-item {
  margin-left: 0.35rem;
}
.nav-ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed 0%, #0d6e56 50%, #0891b2 100%);
  background-size: 200% 200%;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease;
  white-space: nowrap;
  max-width: 220px;
}
.nav-ai-cta-text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-ai-cta-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.nav-ai-cta:hover,
.nav-ai-cta.active {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 110, 86, 0.4);
  background-position: 100% 50%;
  color: #fff;
}

/* —— Hero —— */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13, 110, 86, 0.06), transparent),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 1.5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero-slider { position: relative; }

.hero-slide {
  display: none;
  animation: heroFade 0.55s ease;
}
.hero-slide.active { display: block; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.hero-badge svg { color: #e8a317; width: 14px; height: 14px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.hero h1 .hl { color: var(--accent-mid); }

.hero-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}
.hero-stats div span {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hero-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  background: #fff;
  transition: var(--transition);
}
.hero-nav-btn:hover { background: var(--accent); color: #fff; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dots button.active { background: var(--accent); width: 22px; border-radius: 4px; }

.device-laptop {
  width: 88%;
  margin: 0 auto;
  background: #2a2e35;
  border-radius: 14px 14px 6px 6px;
  padding: 10px 10px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.device-laptop-screen {
  background: #111;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.device-laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.device-laptop-base {
  height: 12px;
  background: linear-gradient(180deg, #3a3f48, #2a2e35);
  border-radius: 0 0 8px 8px;
  margin: 0 -18px;
  position: relative;
}
.device-laptop-base::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 6px;
  background: #1a1d22;
  border-radius: 0 0 10px 10px;
}

.device-phone {
  position: absolute;
  right: 2%;
  bottom: 8%;
  width: 22%;
  max-width: 110px;
  background: #1a1d22;
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 2px solid #333;
}
.device-phone img {
  border-radius: 10px;
  aspect-ratio: 9/16;
  object-fit: cover;
  width: 100%;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 4;
  animation: floatY 4s ease-in-out infinite;
}
.float-card.perf {
  top: 8%;
  left: 0;
  font-size: 0.78rem;
}
.float-card.perf strong { color: var(--accent); font-size: 1.1rem; }
.float-card.projects {
  top: 22%;
  right: 0;
  font-size: 0.75rem;
  max-width: 150px;
}
.float-card.appt {
  bottom: 18%;
  left: 0;
  font-size: 0.72rem;
}
.float-bubble {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.float-bubble.ai { top: 5%; right: 18%; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.float-bubble.tele { bottom: 28%; right: 0; animation: floatY 4.2s ease-in-out infinite 1s; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
.hero-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow);
}
.hero-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* —— Introduce —— */
.introduce-section {
  padding: 3.5rem 0;
  background: var(--bg);
}
.introduce-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #f4f8f6, #fafbfc);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
}
.introduce-section .eyebrow { display: block; margin-bottom: 0.75rem; }
.introduce-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.introduce-section p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.introduce-points {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.introduce-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.introduce-points li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}
.introduce-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.introduce-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Quick actions —— */
.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quick-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.quick-bar a:last-child { border-right: none; }
.quick-bar a:hover { background: var(--bg-soft); color: var(--accent); }

/* —— Intro section —— */
.intro-section {
  padding: 4rem 0;
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.intro-label {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.intro-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.intro-section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.intro-section h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  background: #111;
}
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.play-btn:hover { background: rgba(0, 0, 0, 0.35); }
.play-btn span {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.play-btn svg { width: 24px; height: 24px; margin-left: 3px; color: var(--accent); }

/* —— Services showcase —— */
.services-showcase {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, #fafbfc, #fff);
}
.services-showcase .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.svc-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  min-height: 560px;
}
.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%);
  z-index: -1;
}
.svc-card.tall {
  grid-row: span 2;
  min-height: 100%;
}
.svc-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.svc-icon {
  position: absolute;
  top: 1.15rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.svc-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.1rem;
  max-width: 360px;
}
.svc-card .btn { align-self: flex-start; }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.view-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* —— Clients —— */
.clients-section {
  padding: 4rem 0;
  background: var(--bg);
}
.clients-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.clients-grid .section-title { margin: 0.75rem 0 0; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.client-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.75rem;
  transition: var(--transition);
  text-align: center;
  color: inherit;
}
.client-logo svg { max-width: 100%; height: 34px; width: auto; }
.client-logo .brand-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.client-logo .brand-url {
  display: none;
}
.client-logo:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.client-logo:hover .brand-name { color: var(--accent); }

/* —— Why choose —— */
.why-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.9)),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(0,0,0,0.02) 48px, rgba(0,0,0,0.02) 49px),
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(0,0,0,0.02) 48px, rgba(0,0,0,0.02) 49px),
    var(--bg-soft);
  text-align: center;
}
.why-section .section-badge { margin-bottom: 0.85rem; }
.why-section .section-title { margin-bottom: 0.75rem; }
.why-section .section-sub { margin-bottom: 2.5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: left;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-icon.cost { background: linear-gradient(135deg, #e8f8ef, #d4f0e0); color: #0d8a5a; }
.why-icon.time { background: linear-gradient(135deg, #eef3ff, #dce6ff); color: #3b5bdb; }
.why-icon.quality { background: linear-gradient(135deg, #fff4e6, #ffe8cc); color: #e67700; }
.why-icon.pm { background: linear-gradient(135deg, #f3e8ff, #e5d4ff); color: #7c3aed; }
.why-icon.comms { background: linear-gradient(135deg, #e3fafc, #c5f6fa); color: #0c8599; }
.why-icon.support { background: linear-gradient(135deg, #ffe3e3, #ffc9c9); color: #e03131; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.why-wide {
  grid-column: span 2;
}
.why-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
  text-align: left;
}

/* —— CEO / About teaser —— */
.ceo-section {
  padding: 4.5rem 0;
  background: var(--bg);
}
.ceo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.ceo-photo-wrap {
  position: relative;
  background: linear-gradient(160deg, #eef6f3, #f5f7f9);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 0;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ceo-photo-wrap::before,
.ceo-photo-wrap::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(13,110,86,0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}
.ceo-photo-wrap::before { top: 20px; left: 20px; }
.ceo-photo-wrap::after { bottom: 40px; left: 20px; }
.ceo-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(13, 110, 86, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.ceo-photo {
  position: relative;
  z-index: 2;
  width: 295px;
  height: 442px;
  max-width: 85%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px 12px 0 0;
}
.ceo-content .eyebrow { margin-bottom: 0.75rem; display: block; }
.ceo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.ceo-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.ceo-content .ceo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 0.25rem;
  letter-spacing: -0.02em;
}
.ceo-content .ceo-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* —— Team —— */
.team-section {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, #f4f8f6, #fff);
  overflow: hidden;
}
.team-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.team-row {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  margin: 0 auto 1.1rem;
  width: fit-content;
  max-width: 100%;
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.team-row:nth-child(odd) { transform: translateX(-20px); }
.team-row:nth-child(even) { transform: translateX(20px); }
.team-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
  background: var(--bg-muted);
}

/* —— Portfolio —— */
.portfolio-section {
  padding: 4rem 0 2rem;
  background: var(--bg);
}
.portfolio-section > .container > .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.project-card {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.project-card.tone-a { background: linear-gradient(135deg, #f3f6f8, #eef2f5); }
.project-card.tone-b { background: linear-gradient(135deg, #f7f4f0, #f3ebe3); }
.project-card.tone-c { background: linear-gradient(135deg, #f0f5f3, #e8f0ec); }
.project-card.tone-d { background: linear-gradient(135deg, #f5f3f7, #efeaf3); }
.project-card.tone-e { background: linear-gradient(135deg, #f8f3f4, #f3e9eb); }

.project-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tag {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.7);
  color: var(--text-muted);
}
.project-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.project-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}
.project-mockups {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mock-imac {
  width: 78%;
  background: #2c3038;
  border-radius: 12px 12px 4px 4px;
  padding: 10px 10px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.mock-imac-screen {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.mock-imac-screen img { width: 100%; height: 100%; object-fit: cover; }
.mock-imac-chin {
  height: 18px;
  background: #3a3f48;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-imac-chin::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}
.mock-imac-stand {
  width: 28%;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, #aaa, #888);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.mock-macbook {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 2;
  background: #2a2e35;
  border-radius: 8px 8px 2px 2px;
  padding: 6px 6px 0;
  box-shadow: var(--shadow-lg);
}
.mock-macbook-screen {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.mock-macbook-screen img { width: 100%; height: 100%; object-fit: cover; }
.mock-macbook-base {
  height: 8px;
  background: #3a3f48;
  margin: 0 -10px;
  border-radius: 0 0 6px 6px;
}

/* —— Reviews —— */
.reviews-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #fafbfc, #fff);
}
.reviews-section .section-title { text-align: center; margin-bottom: 0.5rem; }
.reviews-section .section-sub { text-align: center; margin-bottom: 2.5rem; }
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.rating-score {
  text-align: center;
}
.rating-score strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.rating-score span { display: block; color: var(--text-soft); font-size: 0.85rem; margin-top: 0.35rem; }
.stars {
  color: #f59f00;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin: 0.35rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card .stars { font-size: 0.95rem; margin-bottom: 0.85rem; }
.review-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author strong { display: block; font-size: 0.92rem; }
.review-author span { font-size: 0.78rem; color: var(--text-soft); }

/* —— Blog —— */
.blog-section {
  padding: 4rem 0;
  background: var(--bg);
}
.blog-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.blog-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: stretch;
}
.blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  align-self: center;
  transition: var(--transition);
}
.blog-nav-btn:hover { background: var(--accent); color: #fff; }
.blog-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  overflow: hidden;
}
.blog-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--text);
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card .read-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-pager {
  text-align: center;
  margin: 1.5rem 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

/* —— Callback / Contact form —— */
.callback-section {
  padding: 4rem 0;
  background: var(--bg-soft);
}
.callback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.callback-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.callback-grid > div > p {
  color: var(--text-muted);
  font-size: 1rem;
}
.form-card {
  background: linear-gradient(165deg, #ffffff 0%, #f3fbf7 45%, #eef6ff 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(13, 110, 86, 0.12);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #0d6e56, #7c3aed, #25d366, #0891b2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, #0d6e56, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.form-card .form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #d5e8e0;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0d6e56;
  box-shadow: 0 0 0 3px rgba(13, 110, 86, 0.15);
  background: #fff;
}
.form-group textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.form-group input[type="date"],
.form-group input[type="time"] {
  color-scheme: light;
}

  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d5e8e0;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.form-card button.form-submit,
.form-submit {
  position: relative;
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.65rem;
  padding: 1rem 1.35rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #0d6e56 0%, #12a37f 38%, #7c3aed 100%);
  background-size: 220% 220%;
  box-shadow:
    0 12px 28px rgba(13, 110, 86, 0.38),
    0 4px 12px rgba(124, 58, 237, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-position 0.45s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.form-card button.form-submit::before,
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
  z-index: 0;
}
.form-card button.form-submit:hover::before,
.form-submit:hover::before {
  transform: translateX(120%);
}
.form-card button.form-submit:hover,
.form-submit:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(13, 110, 86, 0.42),
    0 8px 20px rgba(124, 58, 237, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.form-card button.form-submit:active,
.form-submit:active {
  transform: translateY(0);
}
.form-card button.form-submit:disabled,
.form-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}
.form-submit-icon,
.schedule-submit-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.callback-submit-label,
.schedule-submit-label {
  position: relative;
  z-index: 1;
}
.form-card button.form-submit.callback-submit {
  background: linear-gradient(135deg, #0d6e56 0%, #18b88a 42%, #6366f1 100%);
}
.form-card button.form-submit.schedule-submit {
  background: linear-gradient(135deg, #6d28d9 0%, #0d6e56 45%, #0891b2 100%);
}
.form-card button.form-submit.schedule-submit:hover,
.form-submit.schedule-submit:hover {
  box-shadow:
    0 16px 36px rgba(109, 40, 217, 0.38),
    0 8px 20px rgba(8, 145, 178, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-group { margin-bottom: 0.75rem; }
.captcha-box input { width: 18px; height: 18px; }
.form-privacy {
  font-size: 0.72rem;
  color: var(--text-soft);
  margin-top: 0.75rem;
  text-align: center;
}

/* —— Process / FAQ —— */
.process-section {
  padding: 3.5rem 0;
  background: var(--bg);
}
.process-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.process-block.reverse .process-info { order: 2; }
.process-block.reverse .accordion { order: 1; }
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.process-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.process-info p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.accordion { display: flex; flex-direction: column; gap: 0.65rem; }
.acc-item {
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
}
.acc-item.open {
  border-color: var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.acc-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.25s;
}
.acc-item.open .acc-plus { transform: rotate(45deg); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-panel-inner {
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* —— CTA banner —— */
.cta-banner {
  padding: 4rem 0;
  background: var(--bg-soft);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* —— Footer —— */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-top h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-top > div:first-child p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 0.85rem 0 1rem;
}
.footer-services {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.social-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a.facebook { background: #1877F2; }
.social-row a.youtube { background: #FF0000; }
.social-row a.linkedin { background: #0A66C2; }
.social-row a.whatsapp { background: #25D366; }
.social-row a:hover { transform: translateY(-2px); filter: brightness(1.08); }
.footer-contact {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-contact a { color: var(--accent); font-weight: 600; }
.footer-contact a:hover { text-decoration: underline; }

.footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-soft);
  max-width: 720px;
  line-height: 1.6;
}
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--accent); }

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.pay-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.pay-icon {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-legal a:hover { color: var(--accent); }

/* —— Floating FABs —— */
.fab {
  position: fixed;
  bottom: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
}
.fab:hover { transform: scale(1.08); }
.fab-wa {
  right: 1.5rem;
  background: var(--whatsapp);
}
.fab svg { width: 24px; height: 24px; }

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, #fafbfc, #fff);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.svc-hero .section-badge { margin-bottom: 0.85rem; }
.svc-detail { padding: 3.5rem 0; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}
.svc-detail p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.svc-detail h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.5rem 0 0.85rem;
}
.svc-feature-list {
  display: grid;
  gap: 0.55rem;
}
.svc-feature-list li {
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.svc-feature-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}
.svc-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.svc-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.svc-detail-media-stack {
  display: grid;
  gap: 1rem;
}
.svc-detail-media-stack .svc-detail-media:last-child img {
  aspect-ratio: 16/10;
}
.svc-process-list {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 1rem;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.svc-process-list li {
  counter-increment: step;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.svc-process-list li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.legal-content { padding: 2rem 0 4rem; }
.legal-wrap {
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.legal-wrap h2 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-updated {
  margin-top: 2rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem !important;
}

/* —— AI & SaaS page —— */
.ai-hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124, 58, 237, 0.1), transparent),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(13, 110, 86, 0.08), transparent),
    linear-gradient(180deg, #fafbfc, #fff);
}
.ai-hero .section-badge { margin-bottom: 1rem; }
.ai-intro { padding: 3.5rem 0; }
.ai-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.ai-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.ai-intro p { color: var(--text-muted); margin-bottom: 1rem; }
.ai-pillars {
  display: grid;
  gap: 0.85rem;
}
.ai-pillars li {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.ai-pillars strong { display: block; margin-bottom: 0.25rem; font-size: 0.95rem; }
.ai-pillars span { font-size: 0.85rem; color: var(--text-muted); }

.ai-products, .ai-process, .ai-shipped, .ai-stack { padding: 3.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head .section-badge { margin-bottom: 0.85rem; }
.section-head .section-title { margin-bottom: 0.65rem; }

.ai-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.ai-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: var(--transition);
}
.ai-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ai-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}
.ai-card h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.ai-card p { font-size: 0.88rem; color: var(--text-muted); }
.tone-violet { background: #f3e8ff; }
.tone-teal { background: #ccfbf1; }
.tone-pink { background: #fce7f3; }
.tone-orange { background: #ffedd5; }
.tone-blue { background: #dbeafe; }
.tone-green { background: #dcfce7; }
.tone-rose { background: #ffe4e6; }
.tone-amber { background: #fef3c7; }
.tone-indigo { background: #e0e7ff; }
.tone-cyan { background: #cffafe; }
.tone-slate { background: #e2e8f0; }
.tone-lime { background: #ecfccb; }

.ai-process { background: var(--bg-soft); }
.ai-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ai-steps article {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid var(--border);
}
.ai-steps span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.ai-steps h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.ai-steps p { font-size: 0.88rem; color: var(--text-muted); }

.shipped-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.shipped-card {
  display: block;
  background: linear-gradient(145deg, #fff, #f7f9fb);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.shipped-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.shipped-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.shipped-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}
.shipped-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.shipped-link { font-weight: 700; font-size: 0.9rem; color: var(--accent); }

.ai-stack { background: var(--bg-soft); }
.ai-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.ai-stack h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0.5rem 0 0.85rem;
}
.ai-stack p { color: var(--text-muted); }
.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.stack-tags span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* —— Mobile —— */
@media (max-width: 1100px) {
  .menu-toggle { display: flex; }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-drawer-head .logo-name { font-size: 1.35rem; }
  .nav-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text);
    background: var(--bg-soft);
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 21, 26, 0.45);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1001;
    padding: 1rem 1.15rem 2rem;
    box-shadow: 8px 0 40px rgba(0,0,0,0.12);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.3s ease;
    gap: 0.15rem;
  }
  .nav-main.open { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  /* Prevent double logo / double close when drawer is open */
  body.nav-open .header-left {
    visibility: hidden;
    pointer-events: none;
  }
  body.nav-open .header-actions {
    visibility: hidden;
    pointer-events: none;
  }
  .nav-item { width: 100%; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
  }
  .dropdown, .mega-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    max-width: 100%;
    left: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    grid-template-columns: 1fr;
    background: var(--bg-soft);
    margin: 0 0 0.35rem;
    border-radius: 12px;
  }
  .nav-item.open > .dropdown,
  .nav-item.open > .mega-menu { display: grid; }
  .mega-menu,
  .mega-menu.mega-menu-3 {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.85rem;
  }
  .mega-col h4 {
    margin-bottom: 0.45rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .mega-col a {
    font-size: 0.9rem;
    white-space: normal;
    align-items: flex-start;
  }
  .mega-icon {
    margin-top: 0.1rem;
  }
  .header-actions .btn-header span { display: none; }
  .header-actions { margin-left: 0; }
  .nav-cta-item {
    margin: 1rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }
  .nav-ai-cta {
    width: 100%;
    max-width: none;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    border-radius: 14px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .clients-grid,
  .ceo-grid,
  .callback-grid,
  .process-block,
  .process-block.reverse,
  .project-card,
  .footer-top,
  .svc-bento,
  .svc-row,
  .introduce-grid,
  .ai-intro-grid,
  .shipped-grid,
  .ai-stack-grid,
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }
  .process-block.reverse .process-info,
  .process-block.reverse .accordion { order: unset; }
  .svc-card.tall { grid-row: auto; min-height: 320px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-bottom { grid-template-columns: 1fr; }
  .why-wide { grid-column: span 1; }
  .blog-track { grid-template-columns: 1fr; }
  .blog-nav-btn { display: none; }
  .team-row { transform: none !important; width: 100%; justify-content: flex-start; }
  .float-card, .float-bubble { display: none; }
  .device-phone { width: 28%; }
  .quick-bar { grid-template-columns: 1fr; }
  .quick-bar a { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
  .hero-slide { padding-block: 1.5rem; }
  .hero-nav-btn { display: none; }
}

@media (max-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ai-product-grid { grid-template-columns: 1fr 1fr; }
  .ai-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .header-actions { gap: 0.35rem; }
  .btn-header { padding: 0.5rem 0.7rem; font-size: 0.78rem; }
  .project-card { padding: 1.5rem; }
  .fab { width: 46px; height: 46px; bottom: 1rem; }
  .fab-wa { right: 1rem; }
  .logo-name { font-size: 1.25rem; }
  .logo-tag { font-size: 0.55rem; }
  .ai-product-grid,
  .ai-steps,
  .shipped-grid,
  .reviews-grid { grid-template-columns: 1fr; }
}
