/* Arinex Solution — mobile-first, no frameworks */

:root {
  --bg: #fafbff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(99, 102, 241, 0.12);
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --purple: #a855f7;
  --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.1) 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(99, 102, 241, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(99, 102, 241, 0.15), 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 60vh;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--indigo);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header & Nav — floating bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem max(1rem, env(safe-area-inset-right)) 0.5rem max(1rem, env(safe-area-inset-left));
  pointer-events: none;
  transition: padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 0.65rem;
}

.site-header.is-scrolled .navbar {
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18), 0 4px 14px rgba(15, 23, 42, 0.08);
  border-color: rgba(99, 102, 241, 0.18);
}

.navbar {
  pointer-events: auto;
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.45rem 0.85rem 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12), 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover {
  background: var(--gradient-soft);
  text-decoration: none;
}

.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  margin: 0.25rem 0.5rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    gap: 0.05rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-menu a {
    padding: 0.45rem 0.55rem;
    font-size: 0.8125rem;
  }

  .nav-cta {
    margin: 0 0 0 0.35rem;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    font-size: 0.8125rem !important;
  }
}

@media (min-width: 1100px) {
  .nav-menu a {
    padding: 0.5rem 0.7rem;
    font-size: 0.875rem;
  }

  .nav-cta {
    font-size: 0.875rem !important;
  }
}

/* Typography */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 0.5rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.0625rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

/* Hero */
.hero {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 32ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-trust li {
  position: relative;
  padding-left: 1rem;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 32px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #fff;
  color: var(--indigo);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  filter: brightness(1.02);
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: white;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* 3D Hero scene */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  perspective: 900px;
}

.scene-3d {
  position: relative;
  width: min(100%, 340px);
  height: 280px;
  display: grid;
  place-items: center;
}

.cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  animation: cube-spin 14s linear infinite;
}

@keyframes cube-spin {
  from {
    transform: rotateX(-18deg) rotateY(0deg);
  }
  to {
    transform: rotateX(-18deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.12));
  box-shadow: inset 0 0 30px rgba(99, 102, 241, 0.15), 0 12px 40px rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(8px);
}

.cube-face.front {
  transform: translateZ(60px);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(60px);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(60px);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.9));
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(60px);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(60px);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(255, 255, 255, 0.95));
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(60px);
}

.float-card {
  position: absolute;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float-y 5s ease-in-out infinite;
}

.float-icon {
  font-size: 1.25rem;
}

.float-1 {
  top: 12%;
  right: 4%;
  animation-delay: 0s;
}

.float-2 {
  bottom: 18%;
  left: 2%;
  animation-delay: 1.2s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
  animation: orb-pulse 6s ease-in-out infinite;
}

.orb-1 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.45), rgba(168, 85, 247, 0.15));
  top: 8%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.4), rgba(99, 102, 241, 0.1));
  bottom: 12%;
  right: 12%;
  animation-delay: 2s;
}

@keyframes orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

/* Services — Bento layout */
.services-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: end;
  text-align: left;
}

@media (min-width: 768px) {
  .services-head {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
    gap: 2rem;
  }
}

.services-head-main {
  max-width: 720px;
}

.services-eyebrow {
  margin-bottom: 0.65rem;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-title-scale {
  color: #3b82f6;
}

.services-title-brand {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 55%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-head-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 768px) {
  .services-head-lead {
    padding-bottom: 0.25rem;
  }
}

.services-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) and (max-width: 899px) {
  .services-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card--feature {
    grid-column: 1 / -1;
  }

  .bento-card--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .services-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 1.25rem;
  }

  .bento-card--feature {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
    min-height: 0;
  }

  .bento-card--wide {
    grid-column: 3 / 7;
    grid-row: 1 / 2;
  }

  .bento-card--small:nth-of-type(3) {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
  }

  .bento-card--small:nth-of-type(4) {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
  }

  .bento-card--medium:nth-of-type(5) {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
  }

  .bento-card--medium:nth-of-type(6) {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
  }
}

.bento-card {
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(15, 23, 42, 0.08);
  border-color: rgba(99, 102, 241, 0.12);
}

.bento-watermark {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(15, 23, 42, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.bento-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-badge--sky {
  color: #2563eb;
  background: rgba(59, 130, 246, 0.12);
}

.bento-badge--purple {
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.14);
}

.bento-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.08));
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
}

.bento-card--wide .bento-icon,
.bento-card--feature .bento-icon {
  width: 56px;
  height: 56px;
}

.bento-icon-inner {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
  transform: perspective(120px) rotateX(4deg) translateZ(0);
}

.bento-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.bento-card--wide h3 {
  font-size: 1.35rem;
}

.bento-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex-grow: 0;
}

.bento-card--feature p {
  flex-grow: 1;
}

.bento-card--feature p,
.bento-card--wide p {
  font-size: 0.9375rem;
}

.bento-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.bento-tags span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--indigo);
}

.bento-card--feature {
  padding-bottom: 1.5rem;
}

/* Why us */
.why-us {
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.04) 40%, transparent);
}

.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-stat {
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.35rem;
  display: block;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.9375rem;
}

.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--gradient-soft);
  color: var(--indigo);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}

/* Local SEO — Udaipur */
.local-seo {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.04), transparent 55%);
}

.local-seo-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .local-seo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.local-seo-card {
  border-radius: var(--radius);
  padding: 1.5rem 1.65rem;
}

.local-seo-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.local-seo-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.local-seo-card p:last-child {
  margin-bottom: 0;
}

.local-seo-card strong {
  color: var(--text);
  font-weight: 600;
}

/* FAQs */
.faqs .faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1.4;
}

.faq-trigger:hover {
  background: var(--gradient-soft);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-soft);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--indigo);
  border-radius: 1px;
}

.faq-icon::before {
  width: 11px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 11px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-panel {
  padding: 0 1.25rem 1.15rem;
  border-top: 1px solid var(--line);
}

.faq-panel p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-panel[hidden] {
  display: none;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-item {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.portfolio-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.06);
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.35));
  pointer-events: none;
  z-index: 0;
}

.portfolio-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--indigo);
}

.portfolio-body {
  padding: 1.25rem 1.5rem;
}

.portfolio-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.portfolio-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.testimonial-slider {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 2rem 1.75rem;
  box-sizing: border-box;
}

.testimonial-slide p {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.author-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--muted);
}

.stars {
  margin-top: 0.35rem;
  letter-spacing: 2px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
  background: var(--gradient-soft);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot[aria-selected="true"] {
  background: var(--gradient);
  transform: scale(1.15);
}

/* Process */
.process-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.process-step {
  position: relative;
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.step-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15), transparent 45%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  color: #fff;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.cta-inner p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  font-size: 1.0625rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form {
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .field-full {
    grid-column: 1 / -1;
  }
}

.field span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  min-height: 1.25rem;
}

.form-note.success {
  color: #059669;
}

.form-note.error {
  color: #dc2626;
}

.contact-aside .aside-card {
  border-radius: var(--radius);
  padding: 1.75rem;
}

.aside-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.aside-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.aside-hint {
  margin-top: 1rem !important;
  font-size: 0.75rem !important;
  color: var(--muted);
  opacity: 0.85;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto auto;
    text-align: left;
    align-items: start;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-start;
  }
}

.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--indigo);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gradient-soft);
  color: var(--indigo);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
