/* ==========================================================================
   J92 Labs — main stylesheet
   ========================================================================== */

:root {
  --bg: #0a0d12;
  --bg-alt: #11151d;
  --navy: #151b28;
  --navy-2: #1a2133;
  --orange: #e8641a;
  --orange-light: #f47c2e;
  --accent-pink: #ff3d68;
  --white: #ffffff;
  --text: #e9edf2;
  --text-muted: #aab2c0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 6px;
  --container: 1200px;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow .num {
  font-size: 13px;
}

.eyebrow .line {
  width: 40px;
  height: 2px;
  background: var(--orange);
}

/* Buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(232, 100, 26, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(232, 100, 26, 0.75);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-block {
  width: 100%;
}

/* Header ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img {
  height: 34px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--orange);
}

.main-nav a[aria-current="page"] {
  border-bottom-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* Hero -------------------------------------------------------------------*/

.hero {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(700px 500px at 85% 10%, rgba(232, 100, 26, 0.18), transparent 60%),
    radial-gradient(900px 700px at 100% 60%, rgba(90, 40, 120, 0.28), transparent 60%),
    var(--bg);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero .eyebrow-bar {
  width: 64px;
  height: 4px;
  background: var(--white);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
}

.hero p.lead {
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 36px;
}

/* Services ---------------------------------------------------------------*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  padding: 48px 36px;
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-card:first-child {
  border-left: none;
}

.service-card:hover,
.service-card.featured {
  background: linear-gradient(160deg, var(--orange-light), var(--orange));
}

.service-card.featured p,
.service-card.featured strong {
  color: rgba(255, 255, 255, 0.92);
}

.service-card .rule {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 18px 0 20px;
}

.service-card.featured .rule,
.service-card:hover .rule {
  background: var(--white);
}

.service-card h3 {
  font-size: 24px;
  color: var(--white);
}

.service-card p {
  margin: 0;
}

/* How we work --------------------------------------------------------- */

.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  max-width: 700px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}

.step {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 640px;
}

.step:nth-child(2) {
  align-self: center;
}

.step:nth-child(3) {
  align-self: flex-end;
}

.step .kicker {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}

.step h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  margin: 0;
}

/* Portfolio ------------------------------------------------------------ */

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.portfolio-head p {
  max-width: 420px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-grid a:hover img {
  transform: scale(1.06);
}

/* About ------------------------------------------------------------------*/

.about-section {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-tagline {
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
}

.about-quote {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

/* Clients ----------------------------------------------------------------*/

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 48px;
}

.clients-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--navy);
  border-radius: var(--radius);
  height: 100px;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.clients-grid a:hover {
  filter: grayscale(0);
  opacity: 1;
}

.clients-grid img {
  max-height: 56px;
  width: auto;
  margin: 0 auto;
}

/* CTA strip ----------------------------------------------------------- */

.cta-strip {
  background: linear-gradient(120deg, #201229, #0a0d12 60%);
  text-align: center;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
}

.cta-strip p {
  max-width: 520px;
  margin: 0 auto 32px;
}

/* Page hero (inner pages) ---------------------------------------------- */

.page-hero {
  padding: 120px 0 72px;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(232, 100, 26, 0.16), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  max-width: 780px;
}

.page-hero p.lead {
  max-width: 620px;
  font-size: 18px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

/* Generic content blocks ------------------------------------------------ */

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.card h3 {
  color: var(--white);
  font-size: 20px;
}

.card .rule {
  width: 36px;
  height: 3px;
  background: var(--orange);
  margin: 14px 0 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 8px;
}

.badge {
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
}

/* Extra-wide content grid (4-up cards) ---------------------------------- */

.content-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Checklist (used on About) ---------------------------------------------*/

.checklist {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-size: 15px;
}

.checklist li::before {
  content: "\2713";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 100, 26, 0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Stats strip (used on About) -------------------------------------------*/

.stats-strip {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--orange);
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-number.stat-text {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.3;
}

/* Multi-button CTA row ---------------------------------------------------*/

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-buttons.left {
  justify-content: flex-start;
}

.btn-gradient-pink {
  background: linear-gradient(135deg, var(--orange-light), var(--accent-pink));
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(255, 61, 104, 0.55);
}

.btn-gradient-pink:hover {
  box-shadow: 0 14px 34px -10px rgba(255, 61, 104, 0.7);
}

/* Icon circle (reused across services page) ------------------------------*/

.icon-circle {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 100, 26, 0.12);
  color: var(--orange);
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

.icon-circle.lg {
  width: 72px;
  height: 72px;
}

.icon-circle.lg svg {
  width: 32px;
  height: 32px;
}

.icon-circle.pink {
  background: rgba(255, 61, 104, 0.14);
  color: var(--accent-pink);
}

/* Services hero (with device mockup) --------------------------------------*/

.svc-hero {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 500px at 95% 10%, rgba(232, 100, 26, 0.16), transparent 60%),
    radial-gradient(600px 500px at 100% 70%, rgba(255, 61, 104, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.svc-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.svc-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 50px);
}

.svc-hero p.lead {
  font-size: 17px;
  max-width: 520px;
}

.device-mockup {
  position: relative;
}

.device-frame {
  max-width: 420px;
  margin: 0 auto;
  background: #05070a;
  border-radius: 14px;
  padding: 14px 14px 40px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.device-screen {
  background: linear-gradient(160deg, #1a0f24, #0a0d12 55%, #170a12);
  border-radius: 6px;
  padding: 22px;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.device-screen .mini-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.device-screen .mini-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.device-screen .mini-links {
  display: flex;
  gap: 10px;
}

.device-screen .mini-links span {
  font-size: 8px;
  color: var(--text-muted);
}

.device-screen .mini-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 8px;
  padding: 4px 9px;
  border-radius: 20px;
  font-weight: 700;
}

.device-screen h4 {
  color: var(--white);
  font-size: 17px;
  max-width: 220px;
  margin: 0 0 10px;
  line-height: 1.25;
}

.device-screen p {
  font-size: 10px;
  max-width: 190px;
  margin: 0 0 14px;
}

.device-screen .mini-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  padding: 7px 16px;
  border-radius: 20px;
  font-weight: 700;
}

.device-quote {
  position: absolute;
  top: -18px;
  right: -6px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--accent-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-family: Georgia, serif;
  box-shadow: 0 12px 24px -8px rgba(255, 61, 104, 0.5);
}

.device-stand {
  width: 110px;
  height: 16px;
  background: #05070a;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

.device-base {
  width: 170px;
  height: 8px;
  background: #05070a;
  margin: 0 auto;
  border-radius: 4px;
}

/* Icon cards (services overview) -------------------------------------------*/

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.icon-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.icon-card .icon-circle {
  margin-bottom: 20px;
}

.icon-card h3 {
  color: var(--white);
  font-size: 20px;
}

.icon-card p {
  margin: 0;
}

/* Centered section title (rule either side) --------------------------------*/

.section-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title-center h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section-title-center .tline {
  width: 50px;
  height: 1px;
  background: var(--border);
  flex: none;
}

/* How we work — horizontal row ---------------------------------------------*/

.work-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 56px;
}

.work-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.work-step .icon-circle {
  position: relative;
  margin-bottom: 20px;
}

.work-step .step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  border: 2px solid var(--bg);
}

.work-step h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 8px;
}

.work-step p {
  margin: 0;
}

.work-arrow {
  flex: none;
  color: var(--orange);
  opacity: 0.5;
  margin-top: 28px;
}

.work-arrow svg {
  width: 22px;
  height: 22px;
}

/* Pricing ------------------------------------------------------------------*/

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.price-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent-pink);
  box-shadow: 0 20px 50px -20px rgba(255, 61, 104, 0.35);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--orange-light), var(--accent-pink));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .plan-name {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.price-card .plan-pages {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 4px;
}

.price-card .plan-pages-detail {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.price-card .checklist {
  margin-bottom: 28px;
}

.price-card .price-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price-card .price-block {
  flex: 1;
}

.price-card .price-amount {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
}

.price-card .price-unit {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.price-card .btn {
  margin-top: auto;
}

/* Add-ons / included ---------------------------------------------------- */

.addons-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.addon-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.addon-item .icon-circle {
  margin-bottom: 14px;
}

.addon-item h4 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.addon-item .addon-price {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.addon-item .addon-price small {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  margin-left: 4px;
}

.addon-item p {
  font-size: 13px;
  margin: 0;
}

.included-card {
  background: var(--navy);
  border: 1px solid var(--accent-pink);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.included-card h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.included-card .rule {
  background: var(--accent-pink);
}

.included-card .checklist li::before {
  background: rgba(255, 61, 104, 0.15);
  color: var(--accent-pink);
}

/* Why choose us — icon row ------------------------------------------------*/

.why-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-item .icon-circle {
  margin: 0 auto 16px;
}

.why-item h4 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.why-item p {
  font-size: 13px;
  margin: 0;
}

/* FAQ ------------------------------------------------------------------- */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .q-mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 100, 26, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.faq-item summary::after {
  content: "";
  flex: none;
  margin-left: auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px 64px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact page ------------------------------------------------------------*/

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
}

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  height: fit-content;
}

.contact-info-card .item {
  margin-bottom: 24px;
}

.contact-info-card .item span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.contact-info-card .item a,
.contact-info-card .item p {
  color: var(--white);
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: #25d366;
  font-weight: 600;
}

/* Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 40px;
  padding: 80px 0 40px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-big {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.footer-grid a.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
}

.footer-grid a.whatsapp:hover {
  color: #25d366;
}

.footer-grid p {
  margin-bottom: 8px;
}

.footer-grid nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 900px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px;
  }

  .site-header.nav-open .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .site-header.nav-open .main-nav a {
    display: block;
    padding: 12px 0;
  }

  .services-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .service-card:first-child {
    border-top: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .svc-hero .container {
    grid-template-columns: 1fr;
  }

  .svc-hero {
    padding-top: 120px;
  }

  .icon-grid,
  .pricing-grid,
  .why-row,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-row {
    flex-direction: column;
    gap: 32px;
  }

  .work-arrow {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .addons-wrap {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 560px) {
  .portfolio-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .icon-grid,
  .pricing-grid,
  .why-row,
  .faq-grid,
  .addons-list {
    grid-template-columns: 1fr;
  }
}
