/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --navy-2:     #112244;
  --navy-3:     #172d52;
  --navy-card:  #0f1e3a;
  --gold:       #c9a84c;
  --gold-light: #f0d060;
  --gold-bright:#ffe680;
  --gold-dark:  #a07830;
  --orange:     #d4622a;
  --white:      #ffffff;
  --gray:       #7a9ab8;
  --gray-light: #b8d0e8;
  --border:     rgba(201,168,76,0.18);
  --border-2:   rgba(201,168,76,0.38);
  --glow:       rgba(201,168,76,0.22);
  --glow-strong:rgba(201,168,76,0.40);
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
  --radius:     18px;
  --radius-sm:  10px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(30,60,120,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(20,40,90,0.45) 0%, transparent 55%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── CANVAS BACKGROUND ─── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ─── DECORATIVE GLOW ORBS ─── */
body::before {
  content: '';
  position: fixed;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,98,42,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.section   { padding: 110px 0; position: relative; }
.gold      { color: var(--gold); }

.gold-gradient {
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--gold) 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.w-full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden-before-reveal {
  opacity: 0;
  transform: translateY(36px);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── SECTION HEADERS ─── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%; width: 14px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-label::before { left: 0; }
.section-label::after  { right: 0; }

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-sub { color: var(--gray); max-width: 540px; margin: 0 auto; font-size: 1rem; }

/* ─── GLASSMORPHISM MIXIN ─── */
.glass {
  background: rgba(17, 29, 51, 0.7);


  border: 1px solid var(--border);
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-outline, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on primary button */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 150%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0a1220;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.55), 0 0 0 4px rgba(201,168,76,0.1);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: inset 0 0 0 0 rgba(201,168,76,0.1);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,22,40,0.92);


  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img { width: 130px; height: 130px; object-fit: contain; }
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  padding: 10px 26px !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: #0a1220 !important;
  border-radius: 50px;
  font-size: 0.83rem !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-nav::after { display: none; }
.btn-nav:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.45); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 72px;
  position: relative;
  z-index: 1;
}

/* Big decorative glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { flex: 1; max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { text-align: left; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold-light); }
.stat span { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat p { font-size: 0.75rem; color: var(--gray); margin-top: 2px; font-weight: 500; }
.stat-divider { width: 1px; height: 44px; background: var(--border); }
/* Icon-only stat variant */
.stat.stat-icon { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.stat.stat-icon p { font-size: 0.82rem; color: var(--gold-light); font-weight: 700; margin-top: 0; }

/* Hero visual */
.hero-visual { flex: 1; max-width: 540px; position: relative; }

.mockup-browser {
  background: rgba(15,30,58,0.85);

  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(201,168,76,0.12), 0 0 120px rgba(201,168,76,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
  animation: float 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: var(--shadow), 0 0 40px rgba(201,168,76,0.10), inset 0 1px 0 rgba(255,255,255,0.08); }
  50%      { box-shadow: var(--shadow), 0 0 80px rgba(201,168,76,0.22), inset 0 1px 0 rgba(255,255,255,0.08); }
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }
.browser-url {
  margin-left: 12px;
  font-size: 0.7rem;
  color: var(--gray);
  background: rgba(255,255,255,0.05);
  padding: 3px 14px;
  border-radius: 50px;
  flex: 1;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.browser-content { padding: 18px; }
.mock-hero-bar {
  height: 110px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(212,98,42,0.1) 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
}
.mock-hero-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.08) 50%, transparent 100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.mock-card {
  height: 62px;
  background: rgba(255,255,255,0.04);
  border-radius: 7px;
  border: 1px solid rgba(201,168,76,0.1);
}
.mock-text-block { display: flex; flex-direction: column; gap: 7px; }
.mock-text-block div { height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; }
.mock-text-block div:nth-child(1) { width: 80%; }
.mock-text-block div:nth-child(2) { width: 58%; }
.mock-text-block div:nth-child(3) { width: 70%; }

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,22,40,0.9);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);

  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 16px rgba(201,168,76,0.1);
}
.badge-1 { top: -18px; right: -24px; animation: float 5s ease-in-out infinite 0.5s; }
.badge-2 { bottom: 60px; left: -34px; animation: float 5s ease-in-out infinite 1s; }
.badge-3 { bottom: -14px; right: 28px; animation: float 5s ease-in-out infinite 1.5s; }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin: 0;
}

/* ─── SERVICES ─── */
.services {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(17,29,51,0.6);

  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--orange));
  opacity: 0;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(201,168,76,0.08);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-icon { width: 56px; height: 56px; margin-bottom: 22px; position: relative; z-index: 1; }
.service-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p  { font-size: 0.87rem; color: var(--gray); margin-bottom: 18px; line-height: 1.75; position: relative; z-index: 1; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.service-features li {
  font-size: 0.8rem;
  color: var(--gray-light);
  padding-left: 16px;
  position: relative;
}
.service-features li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; line-height: 1; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--navy-2); position: relative; }
.portfolio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.15;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 26px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a1220;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border-2);
}
.portfolio-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-item:hover .portfolio-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.08);
}
.port-mock {
  width: 82%;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.pm-bar    { height: 20px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.04); }
.pm-hero   { height: 64px; margin: 8px; border-radius: 5px; }
.pm-row    { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 0 8px 8px; }
.pm-row div { height: 26px; background: rgba(255,255,255,0.06); border-radius: 3px; }
.portfolio-info { padding: 22px; }
.port-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  display: block;
}
.portfolio-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.portfolio-info p  { font-size: 0.82rem; color: var(--gray); }
.portfolio-item.hidden { display: none; }

/* ─── PORTFOLIO SITE MOCKUPS ─── */
.pm-site {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  overflow: hidden; font-family: 'Montserrat', sans-serif;
}
.pm-browser-bar {
  height: 18px; flex-shrink: 0;
  display: flex; align-items: center; padding: 0 8px; gap: 4px;
}
.pm-dots { display: flex; gap: 3px; }
.pm-dots span { width: 5px; height: 5px; border-radius: 50%; }
.pm-dots span:nth-child(1) { background: #ff5f57; }
.pm-dots span:nth-child(2) { background: #febc2e; }
.pm-dots span:nth-child(3) { background: #28c840; }
.pm-url-bar {
  flex: 1; height: 7px; border-radius: 10px;
  background: rgba(255,255,255,0.12); margin-left: 3px;
}
.pm-content {
  flex: 1; display: flex; flex-direction: column;
  overflow: hidden; position: relative;
}
.pm-site-nav {
  height: 20px; flex-shrink: 0;
  display: flex; align-items: center;
  justify-content: space-between; padding: 0 9px;
}
.pm-logo-mark { font-size: 6.5px; font-weight: 800; letter-spacing: 0.06em; }
.pm-nav-items { display: flex; gap: 5px; }
.pm-nav-items span { width: 16px; height: 2px; border-radius: 2px; opacity: 0.4; }
.pm-hero-zone {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 6px 10px; gap: 4px; position: relative;
}
.pm-eyebrow { height: 4px; width: 32px; border-radius: 2px; margin-bottom: 3px; opacity: 0.7; }
.pm-heading { height: 8px; border-radius: 3px; }
.pm-heading.w75 { width: 75%; opacity: 0.85; margin-bottom: 3px; }
.pm-heading.w55 { width: 55%; opacity: 0.75; margin-bottom: 4px; }
.pm-body-line { height: 4px; border-radius: 2px; opacity: 0.3; }
.pm-body-line.w60 { width: 60%; }
.pm-cta { height: 12px; width: 42px; border-radius: 3px; margin-top: 4px; flex-shrink: 0; }
.pm-bottom-strip {
  height: 55px; flex-shrink: 0;
  display: flex; gap: 5px; padding: 6px 8px;
}
.pm-mini-card {
  flex: 1; border-radius: 4px; padding: 5px 4px;
  display: flex; flex-direction: column; gap: 3px;
}
.pm-mini-card-t { height: 5px; width: 80%; border-radius: 2px; opacity: 0.55; }
.pm-mini-card-p { height: 4px; width: 60%; border-radius: 2px; opacity: 0.25; }
.pm-icon { font-size: 9px; line-height: 1; margin-bottom: 2px; }

/* ── Legal (navy + gold) ── */
.pm-legal { background: #0b1530; }
.pm-legal .pm-browser-bar { background: #050c1e; }
.pm-legal .pm-site-nav { background: #071025; border-bottom: 1px solid rgba(201,168,76,.12); }
.pm-legal .pm-logo-mark { color: #c9a84c; }
.pm-legal .pm-nav-items span { background: #c9a84c; }
.pm-legal .pm-eyebrow { background: #c9a84c; }
.pm-legal .pm-heading  { background: #dcd5bc; }
.pm-legal .pm-body-line{ background: #dcd5bc; }
.pm-legal .pm-cta { background: #c9a84c; }
.pm-legal .pm-bottom-strip { background: #070f1e; }
.pm-legal .pm-mini-card { background: rgba(201,168,76,.07); border: 1px solid rgba(201,168,76,.14); }
.pm-legal .pm-mini-card-t { background: #c9a84c; }
.pm-legal .pm-mini-card-p { background: #c9a84c; }

/* ── Fashion E-Commerce (light + purple) ── */
.pm-fashion { background: #f5f0fa; }
.pm-fashion .pm-browser-bar { background: #ede6f8; }
.pm-fashion .pm-url-bar { background: rgba(0,0,0,0.08); }
.pm-fashion .pm-site-nav { background: #fff; border-bottom: 1px solid #e8dff5; }
.pm-fashion .pm-logo-mark { color: #5b21b6; }
.pm-fashion .pm-nav-items span { background: #5b21b6; }
.pm-fashion .pm-hero-zone {
  background: linear-gradient(135deg,#f5f0fa 55%,#ede0f8 100%);
  flex-direction: row; align-items: center; gap: 8px;
}
.pm-fashion .pm-hero-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.pm-fashion .pm-hero-visual {
  width: 48px; height: 72px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(160deg,#c4b5fd,#7c3aed); overflow: hidden; position: relative;
}
.pm-fashion .pm-hero-visual::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background: rgba(0,0,0,0.18);
}
.pm-fashion .pm-eyebrow { background: #7c3aed; }
.pm-fashion .pm-heading  { background: #3b0764; }
.pm-fashion .pm-body-line{ background: #3b0764; }
.pm-fashion .pm-cta { background: #7c3aed; }
.pm-fashion .pm-bottom-strip { background: #fff; border-top: 1px solid #e8dff5; }
.pm-fashion .pm-mini-card { background: #f9f7ff; border: 1px solid #e8dff5; }
.pm-fashion .pm-mini-card-t { background: #5b21b6; }
.pm-fashion .pm-mini-card-p { background: #5b21b6; }
.pm-mini-price { height: 6px; width: 24px; border-radius: 2px; background: #7c3aed; opacity: 0.8; margin-top: 1px; }

/* ── Ristorazione (dark green + gold) ── */
.pm-resto { background: #060d06; }
.pm-resto .pm-browser-bar { background: #030603; }
.pm-resto .pm-site-nav {
  background: rgba(0,0,0,0.55); position: absolute; top: 0; left: 0; right: 0;
  z-index: 2; height: 20px;
}
.pm-resto .pm-logo-mark { color: #d4c08c; letter-spacing: 0.12em; }
.pm-resto .pm-nav-items span { background: #d4c08c; }
.pm-resto .pm-hero-zone {
  flex: 1; padding-top: 22px; justify-content: flex-end; padding-bottom: 8px;
  background: linear-gradient(180deg,rgba(6,20,6,.5) 0%,rgba(3,10,3,.9) 100%),
              linear-gradient(135deg,#1a3a1a,#0d2a0d);
}
.pm-resto .pm-eyebrow { background: #c9a84c; }
.pm-resto .pm-heading  { background: #e8dfc0; }
.pm-resto .pm-body-line{ background: #e8dfc0; }
.pm-resto .pm-cta { background: transparent; border: 1px solid #c9a84c; width: 46px; }
.pm-resto .pm-bottom-strip {
  background: #040904; border-top: 1px solid rgba(201,168,76,.1);
  flex-direction: column; gap: 0; padding: 3px 10px;
}
.pm-menu-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pm-menu-name { height: 4px; width: 68px; border-radius: 2px; background: #d4c08c; opacity: 0.5; }
.pm-menu-price { width: 18px; height: 4px; border-radius: 2px; background: #c9a84c; opacity: 0.7; }

/* ── Immobiliare (dark warm + orange) ── */
.pm-immo { background: #120b04; }
.pm-immo .pm-browser-bar { background: #0a0602; }
.pm-immo .pm-site-nav { background: #0f0802; border-bottom: 1px solid rgba(212,98,42,.15); }
.pm-immo .pm-logo-mark { color: #d4622a; }
.pm-immo .pm-nav-items span { background: #d4622a; }
.pm-immo .pm-hero-zone {
  background: #120b04; flex-direction: column;
  justify-content: flex-start; padding-top: 8px; gap: 6px;
}
.pm-search-box {
  height: 16px; border-radius: 4px; flex-shrink: 0;
  background: rgba(212,98,42,.1); border: 1px solid rgba(212,98,42,.3);
  display: flex; align-items: center; padding: 0 6px; gap: 4px;
}
.pm-search-icon { font-size: 7px; opacity: 0.7; }
.pm-search-line { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,.18); }
.pm-search-btn  { width: 20px; height: 8px; border-radius: 2px; background: #d4622a; opacity: 0.85; }
.pm-prop-cards { display: flex; gap: 5px; flex: 1; }
.pm-prop-card {
  flex: 1; border-radius: 4px; overflow: hidden;
  background: rgba(212,98,42,.07); border: 1px solid rgba(212,98,42,.15);
  display: flex; flex-direction: column;
}
.pm-prop-img {
  height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg,rgba(212,98,42,.3),rgba(212,98,42,.08));
}
.pm-prop-info { padding: 4px; display: flex; flex-direction: column; gap: 3px; }
.pm-prop-price { height: 6px; width: 36px; border-radius: 2px; background: #d4622a; opacity: 0.8; }
.pm-prop-detail { height: 3px; width: 50px; border-radius: 2px; background: #f0e8d0; opacity: 0.25; }
.pm-immo .pm-bottom-strip { display: none; }

/* ── Tech Store (dark blue) ── */
.pm-tech { background: #030810; }
.pm-tech .pm-browser-bar { background: #010408; }
.pm-tech .pm-site-nav { background: #040c1a; border-bottom: 1px solid rgba(59,130,246,.2); }
.pm-tech .pm-logo-mark { color: #60a5fa; }
.pm-tech .pm-nav-items span { background: #60a5fa; }
.pm-tech .pm-hero-zone {
  background: linear-gradient(135deg,#04101e,#071a2e);
  flex-direction: row; align-items: center; gap: 8px;
}
.pm-tech .pm-hero-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.pm-tech .pm-product-box {
  width: 52px; height: 68px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(160deg,rgba(59,130,246,.22),rgba(59,130,246,.06));
  border: 1px solid rgba(59,130,246,.25);
  display: flex; align-items: center; justify-content: center;
}
.pm-tech .pm-product-box::before {
  content: ''; display: block;
  width: 28px; height: 28px; border-radius: 5px;
  background: rgba(59,130,246,.3); border: 1px solid rgba(59,130,246,.4);
}
.pm-tech .pm-eyebrow { background: #60a5fa; }
.pm-tech .pm-heading  { background: #bfdbfe; }
.pm-tech .pm-body-line{ background: #bfdbfe; }
.pm-tech .pm-cta { background: #2563eb; }
.pm-tech .pm-bottom-strip { background: #040c1a; border-top: 1px solid rgba(59,130,246,.12); }
.pm-tech .pm-mini-card { background: rgba(59,130,246,.07); border: 1px solid rgba(59,130,246,.15); }
.pm-tech .pm-mini-card-t { background: #60a5fa; }
.pm-tech .pm-mini-card-p { background: #60a5fa; }

/* ── Clinica Medica (dark purple) ── */
.pm-clinic { background: #0c0516; }
.pm-clinic .pm-browser-bar { background: #07030d; }
.pm-clinic .pm-site-nav { background: #09041a; border-bottom: 1px solid rgba(168,85,247,.2); }
.pm-clinic .pm-logo-mark { color: #c084fc; }
.pm-clinic .pm-nav-items span { background: #c084fc; }
.pm-clinic .pm-hero-zone { background: linear-gradient(135deg,#0f0620,#17083a); }
.pm-clinic .pm-eyebrow { background: #c084fc; }
.pm-clinic .pm-heading  { background: #e9d5ff; }
.pm-clinic .pm-body-line{ background: #e9d5ff; }
.pm-clinic .pm-cta { background: #9333ea; }
.pm-clinic .pm-bottom-strip {
  background: #09041a; padding: 5px 8px; gap: 4px; flex-direction: column;
}
.pm-doctor-row {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 5px; border-radius: 4px; flex: 1;
  background: rgba(168,85,247,.08); border: 1px solid rgba(168,85,247,.15);
}
.pm-doc-avatar {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,rgba(168,85,247,.6),rgba(168,85,247,.2));
}
.pm-doc-info { display: flex; flex-direction: column; gap: 2px; }
.pm-doc-name { height: 4px; width: 40px; border-radius: 2px; background: #e9d5ff; opacity: 0.6; }
.pm-doc-spec { height: 3px; width: 28px; border-radius: 2px; background: #c084fc; opacity: 0.5; }

/* ─── PROCESS ─── */
.process {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.process::after {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.process-step { flex: 1; text-align: center; padding: 0 24px; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a1220;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.08), 0 8px 24px rgba(201,168,76,0.3);
}
.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step-content p  { font-size: 0.85rem; color: var(--gray); line-height: 1.75; }
.process-connector {
  flex: 0 0 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  margin-top: 30px;
}

/* ─── ABOUT ─── */
.about { background: var(--navy-2); position: relative; overflow: hidden; }
.about-inner { display: flex; gap: 88px; align-items: center; }
.about-visual { flex: 0 0 400px; }
.about-card-wrap { position: relative; padding-bottom: 28px; }
.about-card {
  background: rgba(17,29,51,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 120px 32px 32px; /* extra right padding to clear the badge */
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow), 0 0 40px rgba(201,168,76,0.06);
}
.about-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.1);
}
.about-avatar svg { width: 100%; height: 100%; }
.about-card-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.about-card-info span { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

.about-exp-badge {
  position: absolute;
  bottom: 0; right: -14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a1220;
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
  min-width: 88px;
}
.exp-num { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-exp-badge span:last-child { font-size: 0.68rem; font-weight: 700; line-height: 1.3; }

.about-text { flex: 1; }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { font-size: clamp(2rem,3vw,2.8rem); font-weight: 800; margin-bottom: 22px; }
.about-text p  { color: var(--gray); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.85; }

.skills-bars { margin: 30px 0; display: flex; flex-direction: column; gap: 16px; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--gray-light);
}
.skill-label span:last-child { color: var(--gold); }
.skill-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

/* ─── PRICING ─── */
.pricing { background: var(--navy); position: relative; overflow: hidden; }
.pricing::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: rgba(17,29,51,0.7);

  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: rgba(201,168,76,0.5);
  background: linear-gradient(160deg, rgba(30,48,80,0.9) 0%, rgba(22,34,64,0.9) 100%);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.4), var(--shadow), 0 0 80px rgba(201,168,76,0.1);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.featured-label {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a1220;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.pricing-header {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.currency { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-top: 8px; }
.amount   { font-size: 3rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.pricing-header p { font-size: 0.82rem; color: var(--gray); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.pricing-features li.disabled { color: var(--gray); opacity: 0.4; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--navy-2); position: relative; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: rgba(17,29,51,0.7);

  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 26px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  color: #0a1220;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--gray); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(17,29,51,0.8);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  color: #0a1220;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ─── VALUES GRID ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: rgba(17,29,51,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--border-2);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.value-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact { background: var(--navy); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 11px;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--border-2);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-item a {
  font-size: 0.9rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold); }
.contact-cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 4px;
}
.contact-cta-box h4 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.contact-cta-box p  { font-size: 0.85rem; color: var(--gray); line-height: 1.75; }

.contact-form {
  background: rgba(17,29,51,0.7);

  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 14px;
  margin-bottom: 22px;
  font-style: italic;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section   { padding: 90px 0; }

  /* Grids */
  .services-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 20px; }
  .pricing-card.featured { transform: scale(1); }

  /* About */
  .about-inner  { flex-direction: column; gap: 56px; }
  .about-visual { flex: none; width: 100%; max-width: 440px; margin: 0 auto; }

  /* Process */
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 40px; }
  .process-step  { flex: 0 0 40%; }
  .process-connector { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Hero */
  .hero { gap: 48px; padding: 130px 24px 80px; }
  .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }

  /* Testimonials */
  .testimonial-card { flex: 0 0 calc(60% - 12px); }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  /* ── NAVBAR ── */
  .nav-inner { padding: 8px 20px; }
  .logo-img  { width: 90px; height: 90px; }
  .logo-text { font-size: 1rem; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; margin-top: 24px; }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    color: var(--white);
  }
  .btn-nav {
    display: block;
    text-align: center;
    padding: 16px 0 !important;
  }

  /* ── HERO ── */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 60px;
    gap: 40px;
    min-height: auto;
  }
  .hero::before { display: none; }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-title   { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub     { font-size: 0.95rem; margin: 0 auto 32px; }
  .hero-cta     { justify-content: center; flex-direction: column; align-items: center; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats   { justify-content: center; gap: 20px; }
  .hero-visual  { width: 100%; max-width: 400px; margin: 0 auto; }
  .badge-1, .badge-2, .badge-3 { display: none; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 28px 24px; }

  /* ── PORTFOLIO ── */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter { gap: 8px; }
  .filter-btn { padding: 7px 18px; font-size: 0.75rem; }

  /* ── PROCESS ── */
  .process-steps    { flex-direction: column; align-items: center; gap: 8px; }
  .process-step     { flex: none; width: 100%; max-width: 340px; padding: 0; }
  .process-connector { display: none; }
  .step-number      { margin-bottom: 16px; }

  /* ── ABOUT ── */
  .about-inner  { flex-direction: column; gap: 48px; }
  .about-visual { max-width: 340px; }
  .about-card   { padding: 24px 100px 24px 24px; }
  .about-card-wrap { padding-bottom: 36px; }
  .about-exp-badge { right: -8px; bottom: 0; }
  .skills-bars  { margin: 20px 0; }

  /* ── PRICING ── */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 32px 24px; }

  /* ── TESTIMONIALS / VALUES ── */
  .testimonial-card { flex: 0 0 100%; }
  .testimonial-card { padding: 28px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* ── CONTACT ── */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form  { padding: 28px 20px; }
  .form-row      { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer { padding: 48px 0 0; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
  .logo-img { width: 72px; height: 72px; }
  .logo-text { font-size: 0.9rem; }

  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
  .stat-divider { width: 60px; height: 1px; }

  .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .btn-primary, .btn-outline { padding: 13px 26px; font-size: 0.85rem; }

  .mockup-browser { border-radius: 10px; }
  .browser-content { padding: 12px; }
  .mock-hero-bar { height: 70px; }

  .service-card { padding: 24px 20px; }
  .pricing-card { padding: 28px 20px; }

  .contact-form { padding: 24px 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 0.85rem; }

  .footer-socials a { width: 34px; height: 34px; }
  .footer-bottom { font-size: 0.72rem; }

  /* Testimonials slider full width */
  .testimonials-track { gap: 16px; }
  .slider-controls { margin-top: 20px; }
}
