/* ===== Shopify Design Labs - Shopify Agency Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --navy: #18332e;
  --navy-light: #2d5146;
  --gold: #6fce9b;
  --gold-light: #b8e879;
  --gold-dark: #27b7a1;
  --cream: #faf8f3;
  --cream-dark: #eeeade;
  --dark: #10201e;
  --dark-card: #19332f;
  --text-light: #edf4ef;
  --text-muted: #798783;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 24px rgba(39,183,161,0.2);
  --transition: all 0.3s ease;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: hidden;
  min-width: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #102623;
  color: var(--white);
  transition: opacity .55s ease, visibility .55s ease;
}
.site-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.site-preloader strong {
  color: var(--gold-light);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.preloader-mark { display: flex; align-items: center; gap: 7px; height: 42px; }
.preloader-mark span {
  display: block;
  width: 7px;
  height: 24px;
  border-radius: 6px;
  background: var(--gold);
  animation: preloaderPulse .85s ease-in-out infinite;
}
.preloader-mark span:nth-child(2) { height: 38px; animation-delay: .12s; background: var(--gold-light); }
.preloader-mark span:nth-child(3) { animation-delay: .24s; }
@keyframes preloaderPulse {
  0%, 100% { transform: scaleY(.62); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.container { width: 100%; min-width: 0; }

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

.section-padding { padding: 80px 0; }
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--navy);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--navy); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== HEADER ===== */
.top-marquee { position: fixed; top: 0; left: 0; right: 0; height: 32px; overflow: hidden; z-index: 1001; display: flex; align-items: center; background: var(--gold); color: var(--navy); white-space: nowrap; }
.marquee-track { display: flex; align-items: center; gap: 28px; width: max-content; padding-left: 28px; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; animation: marqueeMove 28s linear infinite; }
.marquee-track i { font-size: .55rem; opacity: .75; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10,17,40,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 9px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0;
}
.logo {
  display: flex;
  align-items: center;
  width: 154px;
  height: 76px;
  overflow: hidden;
}
.logo-mark {
  position: relative;
  display: block;
  flex: 0 0 154px;
  width: 154px;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.logo-mark img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}
.logo::after {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  border-radius: 0;
}
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; left: 0; bottom: 0; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,17,40,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a3a 50%, var(--navy-light) 100%);
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 156px 0 92px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-eyebrow i { font-size: .8rem; }
.hero-content h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 4.2vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-buttons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 8px 28px; font-size: .9rem; }
.hero-visual {
  position: relative;
  min-height: 410px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  box-shadow: 24px 24px 0 rgba(197,160,89,.1);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(197,160,89,.2);
  border-radius: 18px;
  pointer-events: none;
}
.hero-visual-label {
  position: absolute;
  top: 19px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.6);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-visual-label b { color: var(--gold-light); }
.hero-visual img,
.hero-illustration {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 40px rgba(197,160,89,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== CORE SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WORK PROCESS ===== */
.process { background: var(--cream); padding-top: 0; }
.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto 60px;
}
.process-line {
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-circle {
  width: 72px; height: 72px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 12px;
}

/* ===== DASHBOARD SHOWCASE ===== */
.dashboard-section { background: var(--cream); }
.dashboard-showcase {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-header h3 { color: var(--white); font-size: 1.1rem; }
.dashboard-dots { display: flex; gap: 6px; }
.dashboard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}
.dashboard-dots span:first-child { background: #ff5f57; }
.dashboard-dots span:nth-child(2) { background: #febc2e; }
.dashboard-dots span:nth-child(3) { background: #28c840; }
.dashboard-charts {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.chart-area {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 20px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
  padding-top: 20px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  transition: height 1s ease;
}
.chart-line {
  position: absolute;
  bottom: 30px; left: 20px; right: 20px;
  height: 120px;
}
.chart-line svg { width: 100%; height: 100%; }
.chart-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-mini {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.stat-mini .num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-mini .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pm-card {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: var(--radius);
  padding: 20px;
  width: 220px;
  z-index: 2;
}
.pm-card img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.pm-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.pm-card p { color: var(--text-muted); font-size: 0.75rem; }
.pm-stars { color: var(--gold); font-size: 0.8rem; margin-top: 6px; }

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.team-card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--gold);
}
.team-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.team-card p { font-size: 0.8rem; color: var(--text-muted); }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.team-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
}
.team-social a:hover { background: var(--gold); color: var(--white); }

/* ===== INNOVATIONS ===== */
.innovations { background: var(--cream); }
.innovations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.innovations-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.innovations-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(197,160,89,0.15);
}
.product-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-item:hover img { transform: scale(1.08); }
.product-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.15), transparent);
  pointer-events: none;
}
.innovations-dashboard {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.innovations-dashboard .mini-chart {
  height: 80px;
  margin: 12px 0;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 8px;
}
.innovations-dashboard .mini-bar {
  flex: 1;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.7;
}

/* ===== INTERACTIVE FEATURE SLIDER ===== */
.feature-slider { background: #0d1733; overflow: hidden; position: relative; }
.feature-slider::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(197,160,89,.11); filter: blur(100px); top: -300px; right: -130px; }
.feature-heading { max-width: 660px; text-align: center; margin: 0 auto 46px; position: relative; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 700; }
.feature-heading h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; color: var(--white); margin: 12px 0 14px; }
.feature-heading p { color: #bdc5d4; font-size: .95rem; }
.feature-shell { position: relative; display: grid; grid-template-columns: 230px 1fr; gap: 28px; max-width: 1080px; margin: 0 auto; }
.feature-tabs { display: flex; flex-direction: column; gap: 8px; align-self: center; }
.feature-tab { display: flex; align-items: center; width: 100%; padding: 14px; gap: 12px; background: transparent; color: #aeb8c9; border-radius: 12px; text-align: left; border: 1px solid transparent; transition: var(--transition); }
.feature-tab span { font-size: .72rem; font-weight: 700; color: var(--gold); opacity: .75; }
.feature-tab strong { font-size: .95rem; font-weight: 600; }
.feature-tab:hover { color: var(--white); background: rgba(255,255,255,.05); }
.feature-tab.active { background: var(--gold); color: var(--navy); box-shadow: 0 12px 28px rgba(197,160,89,.22); }
.feature-tab.active span { color: var(--navy); opacity: .65; }
.feature-panel { min-height: 405px; display: grid; grid-template-columns: 1.1fr .9fr; background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; overflow: hidden; transition: opacity .18s ease, transform .18s ease; }
.feature-panel.is-changing { opacity: .25; transform: translateY(8px); }
.feature-copy { padding: 44px 42px; }
.feature-number { display: block; color: var(--gold); font-size: .85rem; font-weight: 700; letter-spacing: .14em; margin-bottom: 32px; }
.feature-kicker { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; margin-bottom: 9px; }
.feature-copy h3 { color: var(--white); font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.15; margin-bottom: 14px; max-width: 490px; }
.feature-description { color: #c4cada; font-size: .9rem; max-width: 470px; }
.feature-list { margin: 23px 0 26px; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 10px; color: #eff2f8; font-size: .84rem; align-items: center; }
.feature-list i { color: var(--gold); font-size: .72rem; }
.feature-link { color: var(--gold-light); font-size: .85rem; font-weight: 700; }
.feature-link i { font-size: .72rem; margin-left: 5px; }
.feature-visual { position: relative; min-height: 100%; background: radial-gradient(circle at 50% 45%, rgba(197,160,89,.24), transparent 44%), #101d3d; overflow: hidden; }
.feature-orb { width: 210px; height: 210px; border-radius: 50%; position: absolute; top: 84px; left: 50%; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.28); box-shadow: inset 0 0 45px rgba(197,160,89,.38), 0 0 50px rgba(197,160,89,.25); }
.feature-orb::before, .feature-orb::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(197,160,89,.55); }
.feature-orb::before { inset: 25px; } .feature-orb::after { inset: 54px; background: rgba(197,160,89,.3); }
.feature-metric { position: absolute; z-index: 2; padding: 14px 16px; border-radius: 13px; background: rgba(11,20,44,.76); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(7px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.feature-metric span { display: block; color: #bfc7d4; font-size: .66rem; margin-bottom: 3px; }
.feature-metric strong { color: var(--white); font-size: 1.25rem; }
.metric-primary { top: 49px; right: 24px; } .metric-primary i { color: #79d099; margin-left: 6px; }
.metric-secondary { bottom: 42px; left: 24px; min-width: 136px; }
.metric-line { width: 105px; height: 4px; background: rgba(255,255,255,.14); border-radius: 10px; margin-top: 8px; overflow: hidden; }.metric-line b { display: block; width: 72%; height: 100%; background: var(--gold); border-radius: inherit; }
.feature-grid-art { position: absolute; right: 23px; bottom: 30px; display: grid; grid-template-columns: repeat(3, 7px); gap: 9px; opacity: .55; }.feature-grid-art span { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

/* ===== GROWTH & STATS ===== */
.service-highlight { background: var(--cream); overflow: hidden; }
.service-highlight-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); align-items: center; gap: clamp(44px, 8vw, 112px); }
.service-highlight-visual { position: relative; width: min(100%, 430px); margin-left: auto; padding: 30px 28px 24px 0; }
.service-highlight-visual::before { content: ''; position: absolute; inset: 0 12px 18px 44px; border-radius: 28px; background: var(--navy); }
.image-frame { position: relative; height: 500px; border-radius: 21px; overflow: hidden; box-shadow: 18px 22px 0 rgba(197,160,89,.18), 0 20px 40px rgba(10,17,40,.19); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; filter: saturate(.82); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,17,40,.02) 38%, rgba(10,17,40,.72)); }
.image-label { position: absolute; left: 23px; bottom: 21px; color: var(--white); display: flex; align-items: center; gap: 10px; font-size: .73rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .08em; }
.image-label i { width: 36px; height: 36px; display: grid; place-items: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-size: .85rem; }.image-label b { font-size: .85rem; letter-spacing: .04em; }
.floating-report { position: absolute; z-index: 2; background: rgba(255,255,255,.96); color: var(--navy); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 15px 35px rgba(10,17,40,.16); border-radius: 14px; }
.report-top { width: 180px; top: 0; left: -58px; padding: 15px 16px 12px; }.report-label { display: block; color: #6e7788; font-size: .62rem; font-weight: 600; margin-bottom: 4px; }.floating-report strong { font-size: 1.22rem; line-height: 1; }.positive { color: #2a9b68; font-size: .62rem; font-weight: 700; margin-left: 6px; }.report-chart { height: 31px; margin-top: 11px; display: flex; align-items: end; gap: 4px; }.report-chart b { width: 15px; background: var(--gold); border-radius: 3px 3px 0 0; }.report-chart b:nth-child(1) { height: 25%; }.report-chart b:nth-child(2) { height: 43%; }.report-chart b:nth-child(3) { height: 37%; }.report-chart b:nth-child(4) { height: 69%; }.report-chart b:nth-child(5) { height: 54%; }.report-chart b:nth-child(6) { height: 88%; }.report-chart b:nth-child(7) { height: 100%; }
.report-bottom { display: flex; align-items: center; gap: 10px; right: -48px; bottom: 0; padding: 13px 14px; }.report-bottom > i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: rgba(197,160,89,.18); color: var(--gold-dark); }.report-bottom .positive { margin-left: 6px; }
.service-highlight-content h2 { margin: 11px 0 17px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; letter-spacing: -.04em; }.service-highlight-content h2 em { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: -.03em; }.highlight-intro { color: #657084; max-width: 570px; font-size: .97rem; line-height: 1.8; margin-bottom: 25px; }
.highlight-services { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(10,17,40,.12); }.highlight-service { min-height: 61px; padding: 14px 12px 14px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(10,17,40,.12); color: #202b43; font-size: .84rem; font-weight: 600; }.highlight-service:nth-child(odd) { margin-right: 24px; }.highlight-service i { width: 21px; height: 21px; flex: 0 0 21px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); font-size: .58rem; }
.highlight-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 27px; color: var(--navy); font-weight: 700; font-size: .86rem; }.highlight-cta i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold); transition: var(--transition); }.highlight-cta:hover { color: var(--gold-dark); }.highlight-cta:hover i { transform: translateX(4px); background: var(--gold); color: var(--navy); }

/* ===== E-COMMERCE SOLUTIONS ===== */
.solutions { background: var(--cream); }
.solutions-heading { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.solutions-heading h2 { margin: 11px 0 14px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.08; }
.solutions-heading h2 em { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-weight: 600; }
.solutions-heading p { color: var(--text-muted); font-size: .92rem; line-height: 1.75; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { overflow: hidden; border: 1px solid rgba(197,160,89,.25); border-radius: 18px; background: var(--white); box-shadow: 0 12px 28px rgba(10,17,40,.07); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 20px 38px rgba(10,17,40,.14); }
.solution-visual { position: relative; display: grid; place-items: center; height: 220px; overflow: hidden; background: linear-gradient(145deg, #eef1f5, #fdfcf9); }
.solution-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,17,40,.04), rgba(197,160,89,.24)); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.solution-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.solution-card:hover .solution-visual::after { opacity: 1; }
.solution-card:hover .solution-visual img { transform: scale(1.035); filter: saturate(1.08); }
.solution-content { position: relative; padding: 24px 24px 26px; }
.solution-content > span { color: var(--gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.solution-content h3 { margin: 8px 0 10px; color: var(--navy); font-size: 1.15rem; }
.solution-content p { max-width: 310px; color: var(--text-muted); font-size: .83rem; line-height: 1.7; }
.solution-content a { position: absolute; right: 22px; bottom: 24px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--gold); transition: var(--transition); }
.solution-content a:hover { background: var(--gold); color: var(--navy); transform: translateX(4px); }

/* ===== BUILD, PROMOTE, GROW ===== */
.growth-path { background: var(--white); }
.growth-path-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.growth-path-heading h2 { margin-top: 12px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
.growth-path-heading h2 em { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-weight: 600; }
.growth-path-list { display: grid; gap: 30px; }
.growth-path-row { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 7vw, 90px); padding: 24px; border: 1px solid rgba(197,160,89,.2); border-radius: 22px; background: var(--cream); }
.growth-path-row-reverse { grid-template-columns: .95fr 1.05fr; }
.growth-path-row-reverse .growth-path-copy { order: 2; }
.growth-path-row-reverse .growth-path-image { order: 1; }
.growth-path-copy { padding: 18px 12px; }
.growth-path-copy > span { color: var(--gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.growth-path-copy h3 { max-width: 520px; margin: 12px 0 14px; color: var(--navy); font-size: clamp(1.45rem, 2.5vw, 2.1rem); line-height: 1.15; }
.growth-path-copy p { max-width: 520px; color: var(--text-muted); font-size: .88rem; line-height: 1.75; }
.growth-path-copy a { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--navy); font-size: .84rem; font-weight: 800; }
.growth-path-copy a i { color: var(--gold-dark); transition: transform .25s ease; }
.growth-path-copy a:hover i { transform: translateX(5px); }
.growth-path-image { height: 280px; overflow: hidden; border-radius: 16px; background: #dfe4ec; }
.growth-path-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.growth-path-row:hover .growth-path-image img { transform: scale(1.045); }
.growth { background: var(--cream); }
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.growth-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.growth-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.growth-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.growth-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--cream); }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.portfolio-header .section-title { text-align: left; margin-bottom: 0; }
.portfolio-tabs {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(15, 26, 55, 0.14);
  overflow-x: auto;
  scrollbar-width: none;
}
.portfolio-tabs::-webkit-scrollbar { display: none; }
.portfolio-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 13px;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}
.portfolio-tab::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.portfolio-tab:hover, .portfolio-tab.active { color: var(--navy); }
.portfolio-tab.active::after { transform: scaleX(1); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  animation: portfolioReveal 0.45s ease both;
}
.portfolio-card[hidden] { display: none; }
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #24304c;
  transition: var(--transition);
}
.portfolio-card:hover img { transform: scale(1.05); opacity: 0.7; }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,17,40,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay p { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; }
@keyframes portfolioReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TESTIMONIAL ===== */
.industry-slider { padding: 88px 0 58px; overflow: hidden; background: #101a35; }
.industry-intro { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 38px; }.industry-intro h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.1; letter-spacing: -.04em; margin-top: 11px; }.industry-intro h2 em { color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600; }.industry-intro > p { max-width: 350px; color: #adb8cb; font-size: .9rem; line-height: 1.75; }
.industry-viewport { overflow: hidden; contain: paint; padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px)); }
.industry-track { display: flex; gap: 18px; transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.industry-card { position: relative; flex: 0 0 min(310px, calc(100vw - 70px)); height: 400px; overflow: hidden; border-radius: 18px; background: #24304c; color: var(--white); isolation: isolate; }.industry-card::after { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(8,14,31,.03) 36%, rgba(8,14,31,.92) 100%); transition: opacity .35s ease; }.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }.industry-card:hover img { transform: scale(1.08); }.industry-card:hover::after { opacity: .78; }
.industry-count { position: absolute; top: 18px; left: 18px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(5px); font-size: .67rem; font-weight: 700; }.industry-card > div { position: absolute; left: 23px; right: 21px; bottom: 20px; }.industry-card p { color: #e5c47f; font-size: .69rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 5px; }.industry-card strong { display: flex; justify-content: space-between; align-items: center; font-size: 1.12rem; }.industry-card strong i { font-size: .72rem; color: var(--gold); }
.industry-controls { margin-top: 26px; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }.industry-arrow { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: transparent; border: 1px solid rgba(255,255,255,.32); color: var(--white); transition: var(--transition); }.industry-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }.industry-progress { width: 114px; height: 2px; background: rgba(255,255,255,.2); margin-right: 8px; overflow: hidden; }.industry-progress b { display: block; height: 100%; width: 33.33%; background: var(--gold); transition: width .5s ease; }
.testimonial { background: var(--cream); }
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.testimonial-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -10px;
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.testimonial-author h4 { font-weight: 700; color: var(--navy); }
.testimonial-author p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

/* ===== PRICING ===== */
.pricing { background: #fff; }
.pricing-page .pricing { background: #fff; padding-top: 30px; }
.pricing-tabs {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 40px; padding: 0; width: fit-content; max-width: 100%;
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
}
.pricing-tab {
  padding: 13px 30px; border: 1px solid var(--gold); border-radius: 8px;
  background: #fff; color: var(--dark); font: inherit; font-size: .86rem;
  font-weight: 700; cursor: pointer; transition: var(--transition);
}
.pricing-tab:hover, .pricing-tab.active { background: var(--gold); color: #10201e; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: stretch;
}
.pricing-grid.is-changing { animation: pricingGridIn .35s ease; }
.pricing-card {
  background: #fff; border: 1px solid #d8e0ef; border-radius: 10px; padding: 26px 22px 22px;
  color: #52607a; position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: 0 4px 18px rgba(17, 31, 52, .03); min-width: 0;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(17, 31, 52, .08); border-color: #cbd6e8; }
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-card h3 { font-size: 1.35rem; margin-bottom: 4px; color: #111820; }
.package-number { display:none; }
.package-title { min-height: 42px; color: #62708b; font-size: .86rem; line-height: 1.5; }
.package-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; margin: 14px 0 4px; }
.package-price del { color: #171717; font-size: .9rem; }
.package-price strong { order: -1; color: #050505; font-size: 2.35rem; line-height: 1; }
.package-price span { color: #171717; font-size: .78rem; }
.package-discount { align-self: flex-start; display: inline-block; padding: 4px 9px; background: var(--gold); color: #10201e; border-radius: 999px; font-size: .68rem; font-weight: 800; }
.pricing-card .btn-purchase { flex-shrink: 0; }
.pricing-features {
  flex: 0 0 auto; height: 280px; overflow-y: auto; overflow-x: hidden; margin: 14px 0 14px;
  padding: 2px 10px 2px 0; scrollbar-width: thin; scrollbar-color: var(--gold) #eef2f6;
}
.pricing-features::-webkit-scrollbar { width: 5px; }
.pricing-features::-webkit-scrollbar-track { background: #eef2f6; border-radius: 10px; }
.pricing-features::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .84rem;
  line-height: 1.5; color: #5d6b86; border: 0;
}
.pricing-features li i { flex: 0 0 22px; width: 22px; height: 22px; display:grid; place-items:center; border-radius:50%; background:#f1fbf8; color:#2776ef; font-size:.7rem; margin-top:0; }
.package-best { min-height: 48px; margin: 8px 0 14px; color: #5d5d5d; font-size: .78rem; line-height: 1.45; }
.package-best strong { color: #404040; }
.package-details { display: block; margin-top: 14px; color: #111; font-size: .76rem; font-weight: 700; text-align: center; text-decoration: underline; }
.package-details i { margin-left: 4px; font-size: .65rem; }
.popular-tag { top: -12px; left: 50%; background: var(--gold); color: #10201e; }
.pricing-see-more { display:flex; justify-content:center; margin-top:32px; }
.pricing-see-more .btn { min-width: 150px; }
.pricing-page .page-hero { margin-bottom: 0; }
.pricing-page .pricing-heading { text-align:center; max-width:760px; margin:0 auto 34px; }
.pricing-page .pricing-heading h2 { margin-bottom:10px; }
.pricing-page .pricing-heading p { color:#62708b; }
@keyframes pricingGridIn { from { opacity:.25; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ===== RECOGNITION ===== */
.recognition { background: var(--dark); color: var(--white); overflow: hidden; }
.recognition-intro { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.recognition-intro h2 { margin: 11px 0 12px; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
.recognition-intro h2 em { color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600; }
.recognition-intro p { color: #adb8cb; font-size: .9rem; }
.recognition-gallery { display: flex; flex-wrap: nowrap; justify-content: center; align-items: center; gap: 14px; width: 100%; max-width: 1180px; margin: 0 auto; overflow-x: auto; padding: 10px 4px 16px; scrollbar-width: thin; }
.recognition-image { flex: 0 0 175px; width: 175px; height: 175px; margin: 0; overflow: hidden; border: 2px solid rgba(197,160,89,.35); border-radius: 50%; background: #24304c; box-shadow: 0 10px 22px rgba(0,0,0,.2); transition: border-color .35s ease, box-shadow .35s ease; }
.recognition-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.recognition-image:hover { border-color: var(--gold-light); box-shadow: 0 0 0 5px rgba(197,160,89,.12), 0 14px 28px rgba(197,160,89,.2); }
.recognition-image:hover img { transform: scale(1.08); }

/* ===== PLAN FEATURES ===== */
.plan-features { background: var(--cream); }
.plan-features-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.plan-features-heading h2 { margin: 11px 0 14px; color: var(--navy); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
.plan-features-heading h2 em { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-weight: 600; }
.plan-features-heading p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }
.plan-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1000px; margin: 0 auto; }
.plan-feature { display: flex; align-items: center; gap: 13px; min-height: 68px; padding: 16px 18px; background: var(--white); border: 1px solid rgba(197,160,89,.2); border-radius: 10px; color: var(--navy); font-size: .84rem; font-weight: 700; transition: var(--transition); }
.plan-feature i { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: rgba(197,160,89,.16); color: var(--gold-dark); font-size: .8rem; }
.plan-feature:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }

/* ===== CLIENT TESTIMONIALS ===== */
.client-testimonials { background: var(--dark); }
.testimonials-heading { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.testimonials-heading h2 { margin: 11px 0 14px; color: var(--white); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.testimonials-heading h2 em { color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600; }
.testimonials-heading p { color: #adb8cb; font-size: .92rem; line-height: 1.7; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client-quote { position: relative; min-height: 290px; padding: 26px 22px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #182544; transition: var(--transition); }
.client-quote:nth-child(3n + 2) { background: #202d4c; }
.client-quote:nth-child(3n + 3) { background: #142039; }
.client-quote:hover { transform: translateY(-5px); border-color: rgba(197,160,89,.65); box-shadow: 0 14px 28px rgba(0,0,0,.2); }
.quote-mark { position: absolute; top: 12px; right: 20px; color: rgba(197,160,89,.28); font-family: 'Playfair Display', serif; font-size: 3.4rem; line-height: 1; }
.client-quote h3 { position: relative; margin-bottom: 14px; color: var(--gold-light); font-size: 1.05rem; }
.client-quote > p { color: #d0d7e3; font-size: .8rem; line-height: 1.7; }
.client-quote footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: 22px; }
.client-quote footer strong { color: var(--white); font-size: .82rem; }
.client-quote footer img { display: none; }
.client-quote footer::after { content: '\2605\2605\2605\2605\2605'; color: var(--gold-light); font-size: .78rem; letter-spacing: 2px; }

/* ===== FINAL CTA ===== */
.final-cta { display: flex; justify-content: center; background: var(--white); }
.final-cta-outer { width: 100%; }
.final-cta-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(38px, 7vw, 92px); width: calc(100% + 320px); margin-left: -160px; margin-right: -160px; padding: 42px 100px; border-radius: 24px; background: var(--navy); overflow: hidden; }
.final-cta-copy { padding: 22px 0 22px 10px; }
.final-cta-copy h2 { max-width: 620px; margin: 12px 0 17px; color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; }
.final-cta-copy h2 em { color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600; }
.final-cta-copy p { max-width: 520px; margin-bottom: 26px; color: #c4ccda; font-size: .94rem; line-height: 1.75; }
.final-cta-visual { position: relative; height: 390px; overflow: hidden; border-radius: 18px; }
.final-cta-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,17,40,.05), rgba(10,17,40,.65)); }
.final-cta-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.final-cta-inner:hover .final-cta-visual img { transform: scale(1.04); }
.final-cta-badge { position: absolute; right: 18px; bottom: 18px; z-index: 1; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; padding: 13px 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; background: rgba(10,17,40,.8); backdrop-filter: blur(8px); color: var(--white); }
.final-cta-badge i { grid-row: span 2; color: var(--gold-light); font-size: 1.2rem; }
.final-cta-badge span { color: #c5ccda; font-size: .64rem; }
.final-cta-badge strong { color: var(--gold-light); font-size: 1.15rem; }

/* ===== BLOG CAROUSEL ===== */
.blog-section {
  background: var(--dark);
  padding: 80px 0;
}
.blog-section .section-title { color: var(--white); }
.blog-section .section-subtitle { color: var(--text-muted); }
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.blog-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-content { padding: 20px; }
.blog-card-content h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--gold-light); }
.carousel-btn.prev { left: -12px; }
.carousel-btn.next { right: -12px; }

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
  padding: 80px 0;
}
.faq-heading { max-width: 700px; margin: 0 auto 42px; text-align: center; }
.faq-heading .section-title { margin: 10px 0 12px; color: var(--navy); }
.faq-heading .section-subtitle { margin: 0 auto; line-height: 1.7; }
.faq-list { max-width: 1080px; margin: 0 auto; }
.faq-item {
  margin-bottom: 12px;
  border: 1px solid rgba(24,51,46,.12);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item.active { border-color: rgba(39,183,161,.5); background: #f0f8ed; }
.faq-question {
  width: 100%;
  background: none;
  color: var(--navy);
  font-size: .98rem;
  font-weight: 500;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.faq-question span { display: flex; flex-direction: column; gap: 5px; }
.faq-question small { color: var(--gold-light); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.faq-question i {
  color: var(--gold);
  transition: var(--transition);
  font-size: 0.9rem;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 22px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  /*margin-bottom: 40px;*/
}
.footer-brand .logo {
  width: 188px;
  height: 116px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark {
  flex-basis: 188px;
  width: 188px;
}
.footer-brand .logo-mark img { width: 350px; }
.footer-brand p {
  color: #b4c4bd;
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #a9bbb4;
  font-size: 0.85rem;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: #a9bbb4;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: #a9bbb4;
  font-size: 0.8rem;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.content-section { padding: 60px 0; }
.legal-page { background: var(--cream); }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.5fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}
.legal-summary { position: sticky; top: 124px; }
.legal-summary h2 { margin: 12px 0 14px; color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.12; }
.legal-summary > p { color: var(--text-muted); font-size: .9rem; line-height: 1.75; }
.legal-meta { display: grid; gap: 5px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(24,51,46,.15); color: var(--text-muted); font-size: .82rem; }
.legal-meta strong { margin-top: 8px; color: var(--navy); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-meta a { color: var(--gold-dark); font-weight: 700; }
.legal-content { min-width: 0; padding: 38px clamp(22px, 4vw, 52px); border: 1px solid rgba(39,183,161,.2); border-radius: 18px; background: var(--white); box-shadow: 0 14px 34px rgba(16,32,30,.06); }
.legal-content section + section { margin-top: 32px; }
.legal-content h2 { margin-bottom: 10px; color: var(--navy); font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.25; }
.legal-content p, .legal-content li { color: #596b66; font-size: .9rem; line-height: 1.8; }
.legal-content p + p { margin-top: 12px; }
.legal-content ul { display: grid; gap: 8px; margin: 12px 0 0 20px; list-style: disc; }
.legal-content a { color: var(--gold-dark); font-weight: 700; }
.legal-lead { margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid rgba(24,51,46,.12); color: var(--navy) !important; font-size: 1rem !important; line-height: 1.75 !important; }
.legal-footer-bottom { margin-top: 0; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.content-card {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.content-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.content-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.content-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item i {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 0.85rem; }
.contact-form {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(197,160,89,0.3);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Blog Page */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-page-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(197,160,89,0.15);
  transition: var(--transition);
}
.blog-page-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.blog-page-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-page-card .card-body { padding: 24px; }
.blog-page-card .tag {
  display: inline-block;
  background: rgba(197,160,89,0.15);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-page-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.blog-page-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-page-card .read-more { color: var(--gold); font-weight: 600; font-size: 0.85rem; }

/* Clients Page */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.client-logo {
  background: var(--white);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  min-height: 100px;
}
.client-logo:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  font-size: 0.9rem;
}
.toast.show { transform: translateX(0); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* Counter animation */
.stat-num.counted { animation: countPop 0.5s ease; }
@keyframes countPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===== MOTION ===== */
.hero-content,
.hero-visual {
  animation: heroEnter .8s cubic-bezier(.22,.61,.36,1) both;
}
.hero-visual { animation-delay: .12s; }
.motion-ready .section-padding,
.motion-ready .content-section,
.motion-ready .footer {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
}
.motion-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { min-height: 760px; padding: 140px 0 88px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-visual { min-height: 360px; max-width: 560px; width: 100%; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-path-row, .growth-path-row-reverse { grid-template-columns: 1fr; gap: 20px; }
  .growth-path-row-reverse .growth-path-copy, .growth-path-row-reverse .growth-path-image { order: initial; }
  .innovations-grid { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .final-cta-copy { padding: 10px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .blog-card { min-width: calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-grid, .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-shell { grid-template-columns: 185px 1fr; gap: 18px; }
  .feature-copy { padding: 36px 30px; }
  .service-highlight-grid { grid-template-columns: 1fr; gap: 62px; max-width: 650px; }
  .service-highlight-visual { margin: 0 auto; }
  .service-highlight-content { text-align: center; }
  .highlight-intro { margin-left: auto; margin-right: auto; }
  .highlight-services { text-align: left; }
  .final-cta-inner { width: 100%; margin: 0; }
  .legal-layout { gap: 42px; }
}

@media (max-width: 768px) {
  .nav-links, .header .btn-gold { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 700px; padding: 116px 0 68px; }
  .hero-grid { gap: 34px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { margin-bottom: 24px; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
  .hero-visual { min-height: 290px; }
  .section-title { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .growth-path-row { padding: 14px; }
  .growth-path-copy { padding: 14px 8px; }
  .growth-path-image { height: 220px; }
  .process-timeline { flex-direction: column; gap: 32px; }
  .process-line { display: none; }
  .team-row { grid-template-columns: 1fr; }
  .dashboard-charts { grid-template-columns: 1fr; }
  .pm-card { position: static; width: 100%; margin-bottom: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .plan-features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .final-cta-inner { padding: 18px; }
  .final-cta-visual { height: 260px; }
  .pricing-tabs { width: 100%; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .pricing-tabs::-webkit-scrollbar { display: none; }
  .pricing-tab { flex: 0 0 auto; }
  .recognition-intro { margin-bottom: 24px; }
  .recognition-gallery { justify-content: flex-start; gap: 12px; }
  .recognition-image { flex-basis: 145px; width: 145px; height: 145px; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .testimonial-avatar { margin: 0 auto; }
  .testimonial-quote { padding-left: 0; }
  .testimonial-quote::before { position: static; display: block; margin-bottom: 8px; }
  .blog-card { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .content-grid, .blog-page-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .header { padding: 10px 0; }
  .top-marquee { height: 30px; }
  .header { top: 30px; }
  .marquee-track { gap: 20px; font-size: .62rem; animation-duration: 22s; }
  .header-inner { min-height: 52px; padding: 0 13px; border-radius: 14px; }
  .feature-slider { padding: 62px 0; }
  .feature-heading { margin-bottom: 30px; }
  .feature-shell { grid-template-columns: 1fr; gap: 18px; }
  .feature-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .feature-tab { flex: 0 0 auto; width: auto; padding: 10px 12px; }
  .feature-tab strong { font-size: .8rem; }
  .feature-panel { grid-template-columns: 1fr; min-height: 0; }
  .feature-copy { padding: 31px 24px; }
  .feature-number { margin-bottom: 20px; }
  .feature-visual { min-height: 270px; }
  .feature-orb { top: 35px; width: 180px; height: 180px; }
  .metric-primary { top: 22px; right: 17px; }
  .metric-secondary { bottom: 20px; left: 17px; }
  .service-highlight { padding: 62px 0; }
  .service-highlight-grid { gap: 48px; }
  .service-highlight-visual { width: calc(100% - 30px); padding: 20px 16px 20px 0; }
  .service-highlight-visual::before { inset: 0 0 12px 24px; border-radius: 20px; }
  .image-frame { height: 380px; border-radius: 16px; box-shadow: 11px 14px 0 rgba(197,160,89,.18), 0 18px 30px rgba(10,17,40,.17); }
  .report-top { width: 142px; left: -20px; top: -12px; padding: 11px 12px 9px; }
  .report-bottom { right: -18px; bottom: -12px; padding: 10px; gap: 7px; }.report-bottom > i { width: 28px; height: 28px; }.floating-report strong { font-size: 1rem; }
  .highlight-services { grid-template-columns: 1fr; }
  .highlight-service:nth-child(odd) { margin-right: 0; }
  .service-highlight-content h2 { font-size: 2.2rem; }
  [style*="grid-template-columns:repeat(2,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ===== RESPONSIVE FINISHING PASS ===== */
@media (max-width: 900px) {
  .nav-links, .header .btn-gold { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 4px; }
  .hero-grid { gap: 28px; }
  .hero-content h1 { font-size: clamp(2.2rem, 6vw, 3rem); }
  .feature-shell { grid-template-columns: 1fr; }
  .feature-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .feature-tab { flex: 0 0 auto; width: auto; }
  .final-cta-inner { width: 100%; margin: 0; }
}

@media (max-width: 600px) {
  :root { --container: 100%; }
  html { font-size: 15px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .section-padding { padding: 58px 0; }
  .top-marquee { height: 28px; }
  .header { top: 28px; padding: 8px 0; }
  .header.scrolled { padding: 7px 0; }
  .header-inner { min-height: 48px; padding: 0 12px; }
  .logo { font-size: 1.2rem; letter-spacing: 1.5px; }
  .mobile-nav {
    display: flex;
    padding: 128px 24px 32px;
    gap: 10px;
    overflow-y: auto;
    justify-content: flex-start;
    background: linear-gradient(145deg, rgba(13,35,31,.98), rgba(16,27,34,.99));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .mobile-nav::before {
    content: 'SHOPIFY DESIGN LABS / MENU';
    position: absolute;
    top: 103px;
    left: 24px;
    color: var(--gold-light);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
  }
  .mobile-nav::after {
    content: '';
    position: absolute;
    top: 92px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(111,206,155,0));
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 330px);
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid rgba(111,206,155,.12);
    border-radius: 12px;
    color: var(--text-light);
    background: rgba(255,255,255,.035);
    font-size: 1.05rem;
    letter-spacing: .02em;
    transform: translateY(10px);
    opacity: 0;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .28s ease, opacity .28s ease;
  }
  .mobile-nav.open a { transform: translateY(0); opacity: 1; }
  .mobile-nav.open a:nth-child(1) { transition-delay: .04s; }
  .mobile-nav.open a:nth-child(2) { transition-delay: .07s; }
  .mobile-nav.open a:nth-child(3) { transition-delay: .10s; }
  .mobile-nav.open a:nth-child(4) { transition-delay: .13s; }
  .mobile-nav.open a:nth-child(5) { transition-delay: .16s; }
  .mobile-nav.open a:nth-child(6) { transition-delay: .19s; }
  .mobile-nav.open a:nth-child(7) { transition-delay: .22s; }
  .mobile-nav a:hover,
  .mobile-nav a.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
  .mobile-nav a.btn { width: min(100%, 330px); margin-top: 8px; border-radius: 50px; }
  .mobile-nav a.btn:hover { background: var(--gold-light); }
  .hero { min-height: 650px; padding: 104px 0 58px; }
  .hero-content h1 { font-size: clamp(1.95rem, 9vw, 2.55rem); }
  .hero-content p { font-size: .92rem; }
  .hero-buttons .btn { width: auto; }
  .hero-visual { min-height: 245px; border-radius: 18px; box-shadow: 12px 12px 0 rgba(197,160,89,.1); }
  .hero-visual::before { inset: 10px; border-radius: 13px; }
  .hero-visual-label { top: 13px; left: 16px; right: 16px; }
  .hero-illustration { transform: scale(.9); }
  .hero-visual img, .hero-illustration { animation: none; }
  .section-title { font-size: 1.65rem; }
  .section-subtitle { margin-bottom: 32px; }
  .service-card, .content-card { padding: 24px 20px; }
  .solution-content { padding: 20px; }
  .solution-content a { right: 18px; bottom: 19px; }
  .growth-path-heading { margin-bottom: 34px; }
  .growth-path-row { border-radius: 16px; }
  .growth-path-image { height: 190px; border-radius: 12px; }
  .industry-slider { padding: 60px 0 42px; }
  .industry-intro { display: block; margin-bottom: 28px; }
  .industry-intro > p { margin-top: 18px; }
  .industry-viewport { padding-left: 16px; }
  .industry-card { flex-basis: min(280px, calc(100vw - 42px)); height: 350px; }
  .industry-controls { padding: 0 16px; }
  .feature-copy h3 { font-size: 1.65rem; }
  .feature-copy { padding: 26px 20px; }
  .feature-list li { align-items: flex-start; }
  .feature-visual { min-height: 240px; }
  .service-highlight-content h2, .solutions-heading h2, .growth-path-heading h2 { font-size: 2rem; }
  .service-highlight-visual { width: calc(100% - 18px); }
  .image-frame { height: 320px; }
  .report-top { left: -10px; }
  .report-bottom { right: -10px; }
  .portfolio-header { display: block; margin-bottom: 28px; }
  .portfolio-header .btn { margin-top: 18px; }
  .portfolio-overlay { opacity: 1; padding: 18px; }
  .pricing-card { padding: 30px 22px; }
  .pricing-tabs { border-radius: 14px; }
  .pricing-tab { padding: 10px 16px; }
  .plan-feature { min-height: 60px; padding: 13px 14px; }
  .testimonials-grid { gap: 12px; }
  .client-quote { min-height: 0; padding: 22px 18px; }
  .final-cta-inner { padding: 22px 18px; border-radius: 16px; }
  .final-cta-copy { padding: 4px 0; }
  .final-cta-copy h2 { font-size: 2rem; }
  .final-cta-visual { height: 220px; }
  .blog-section, .faq-section { padding: 58px 0; }
  .carousel-wrapper { margin: 0 -2px; }
  .blog-card img, .blog-page-card img { height: 175px; }
  .page-hero { padding: 118px 0 48px; }
  .page-hero h1 { font-size: 2rem; }
  .content-section { padding: 48px 0; }
  .contact-form { padding: 24px 18px; }
  .footer { padding-top: 46px; }
  .footer-grid { gap: 30px; margin-bottom: 30px; }
  .footer-bottom { display: block; }
  .footer-bottom-links { margin-top: 10px; gap: 14px; flex-wrap: wrap; }
  .scroll-top { right: 16px; left: auto; bottom: 16px; width: 40px; height: 40px; }
  .toast { right: 16px; bottom: 16px; left: 16px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-summary { position: static; text-align: center; }
  .legal-meta { max-width: 260px; margin: 24px auto 0; text-align: left; }
  .legal-content { padding: 26px 20px; border-radius: 14px; }
  .legal-content section + section { margin-top: 26px; }
  .legal-content p, .legal-content li { font-size: .86rem; line-height: 1.72; }
  .legal-lead { font-size: .92rem !important; }
  .legal-footer-bottom { display: flex; }
}

/* ===== MOBILE LAYOUT FINISH ===== */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .hero { padding-top: 132px; }
  .hero-content { text-align: center; }
  .hero-buttons { justify-content: center; align-items: center; }
  .trustpilot-banner-link { width: 135px; max-width: 135px; }
  .trustpilot-banner-link img { max-height: 38px; object-fit: contain; }
  .portfolio-tabs,
  .pricing-tabs,
  .feature-tabs {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: visible;
  }
  .feature-tabs { padding-bottom: 0; }
  .feature-tab { flex: 0 1 auto; }
  .recognition-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 10px 0 16px;
  }
  .recognition-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    flex: none;
  }
}

@media (max-width: 600px) {
  .hero { padding-top: 118px; }
  .hero-buttons { width: 100%; flex-wrap: nowrap; gap: 8px; }
  .hero-buttons .btn { flex: 1 1 auto; min-width: 0; padding: 8px 10px; font-size: .9rem; white-space: nowrap; }
  .hero-buttons { gap: 5px; }
  .trustpilot-banner-link { flex: 0 0 140px; width: 140px; max-width: 140px; }
  .trustpilot-banner-link img { max-height: 32px; }
  .portfolio-tabs { gap: 18px; }
  .pricing-tabs { gap: 6px; }
  .feature-tabs { gap: 6px; }
  .feature-tab { padding: 9px 10px; }
  .recognition-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .recognition-image { width: min(100%, 150px); justify-self: center; }
}

@media (max-width: 360px) {
  .hero-buttons { gap: 6px; }
  .hero-buttons .btn { padding-left: 6px; padding-right: 6px; font-size: .78rem; }
  .trustpilot-banner-link { flex-basis: 105px; width: 105px; max-width: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .motion-ready .section-padding,
  .motion-ready .content-section,
  .motion-ready .footer { opacity: 1; transform: none; transition: none; }
}

/* ===== BRAND COLOR FINISH ===== */
.header.scrolled,
.mobile-nav { background: rgba(16, 27, 34, .97); }
.hero {
  background: linear-gradient(135deg, #102623 0%, #1b3c36 52%, #315148 100%);
}
.hero::before { background: radial-gradient(circle, rgba(111,206,155,.12) 0%, transparent 70%); }
.hero-visual {
  background: linear-gradient(145deg, rgba(111,206,155,.12), rgba(255,255,255,.04));
  box-shadow: 24px 24px 0 rgba(111,206,155,.1);
}
.feature-slider { background: #19362f; }
.feature-slider::before { background: rgba(111,206,155,.1); }
.feature-panel { background: linear-gradient(135deg, rgba(111,206,155,.12), rgba(255,255,255,.04)); }
.feature-visual { background: radial-gradient(circle at 50% 45%, rgba(111,206,155,.18), transparent 44%), #24443b; }
.industry-slider { background: #204039; }
.final-cta-inner { background: #19362f; }
.trustpilot-banner-link {
  display: inline-flex;
  align-items: center;
  width: min(100%, 240px);
  margin-top: 0;
  padding: 0;
  transition: var(--transition);
}
.trustpilot-banner-link:hover {
  transform: none;
  box-shadow: none;
}
.trustpilot-banner-link img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
.solution-card,
.growth-path-row,
.content-card,
.contact-form,
.blog-page-card,
.client-logo,
.plan-feature { border-color: rgba(39,183,161,.22); }
.solution-card:hover,
.client-logo:hover { border-color: var(--gold); }
.image-frame { box-shadow: 18px 22px 0 rgba(39,183,161,.14), 0 20px 40px rgba(16,32,30,.16); }
.industry-card { background: #315149; }
.client-quote { background: #24443b; }
.client-quote:nth-child(3n + 2) { background: #2d5045; }
.client-quote:nth-child(3n + 3) { background: #1f3c36; }
.hamburger { width: 44px; height: 44px; align-items: center; justify-content: center; margin-right: 2px; }
.mobile-nav { background: linear-gradient(145deg, rgba(13,35,31,.995), rgba(16,27,34,.995)); backdrop-filter: blur(16px); }
.header.menu-open .logo { display: none; }
.header.menu-open { background: rgba(16,27,34,.97); }

@media (max-width: 900px) {
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .mobile-nav {
    display: flex;
    padding: 146px 32px 36px;
    gap: 10px;
    overflow-y: auto;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .mobile-nav::before {
    content: 'SHOPIFY DESIGN LABS / MENU';
    position: absolute;
    top: 123px;
    left: 32px;
    color: var(--gold-light);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
  }
  .mobile-nav::after {
    content: '';
    position: absolute;
    top: 112px;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(111,206,155,0));
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav.open { top: 0 !important; transform: translate3d(0, 0, 0) !important; }
  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 440px);
    min-height: 52px;
    padding: 11px 20px;
    border: 1px solid rgba(111,206,155,.12);
    border-radius: 13px;
    color: var(--text-light);
    background: rgba(255,255,255,.035);
    font-size: 1.08rem;
    transform: translateY(10px);
    opacity: 0;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .28s ease, opacity .28s ease;
  }
  .mobile-nav.open a { transform: translateY(0); opacity: 1; }
  .mobile-nav.open a:nth-child(1) { transition-delay: .04s; }
  .mobile-nav.open a:nth-child(2) { transition-delay: .07s; }
  .mobile-nav.open a:nth-child(3) { transition-delay: .10s; }
  .mobile-nav.open a:nth-child(4) { transition-delay: .13s; }
  .mobile-nav.open a:nth-child(5) { transition-delay: .16s; }
  .mobile-nav.open a:nth-child(6) { transition-delay: .19s; }
  .mobile-nav.open a:nth-child(7) { transition-delay: .22s; }
  .mobile-nav a:hover,
  .mobile-nav a.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
  .mobile-nav a.btn { width: min(100%, 440px); margin-top: 8px; border-radius: 50px; }
}

@media (max-width: 768px) {
  .mobile-nav { padding-top: 146px; }
  .mobile-nav::before { top: 123px; }
  .mobile-nav::after { top: 112px; }
}

/* ===== RESPONSIVE TYPE AND SPACING ===== */
.section-title { font-size: clamp(1.75rem, 3.2vw, 2.25rem); }
.hero-content h1 { font-size: clamp(2.2rem, 4.2vw, 3.25rem); }
.solutions-heading h2,
.growth-path-heading h2,
.feature-heading h2,
.recognition-intro h2,
.plan-features-heading h2,
.testimonials-heading h2,
.final-cta-copy h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }

@media (max-width: 900px) {
  .hero { padding-top: 154px; }
  .hero-grid { gap: 42px; }
  .hero-content h1 { font-size: clamp(2rem, 6vw, 2.7rem); }
  .service-highlight-content h2,
  .solutions-heading h2,
  .growth-path-heading h2,
  .feature-heading h2,
  .recognition-intro h2,
  .plan-features-heading h2,
  .testimonials-heading h2,
  .final-cta-copy h2 { font-size: clamp(1.85rem, 5vw, 2.6rem); }
  .solution-content h3,
  .growth-path-copy h3,
  .feature-copy h3 { font-size: clamp(1.25rem, 3.5vw, 1.8rem); }
}

@media (max-width: 600px) {
  .hero { padding-top: 170px; }
  .hero-grid { gap: 38px; }
  .hero-content h1 { font-size: clamp(1.85rem, 8vw, 2.25rem); line-height: 1.12; }
  .hero-content p { font-size: .9rem; line-height: 1.65; }
  .section-title { font-size: clamp(1.6rem, 7vw, 1.95rem); }
  .service-highlight-content h2,
  .solutions-heading h2,
  .growth-path-heading h2,
  .feature-heading h2,
  .recognition-intro h2,
  .plan-features-heading h2,
  .testimonials-heading h2,
  .final-cta-copy h2 { font-size: clamp(1.7rem, 7vw, 2.15rem); line-height: 1.12; }
  .solution-content h3,
  .growth-path-copy h3,
  .feature-copy h3 { font-size: clamp(1.15rem, 5.5vw, 1.5rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 8vw, 2.25rem); }
  .page-hero p { font-size: .9rem; }
  .final-cta-copy p,
  .highlight-intro,
  .solutions-heading p,
  .growth-path-copy p { font-size: .88rem; line-height: 1.65; }
}
.trustpilot-banner-link img {
    width: 100%;
    height: 100px;
    max-height: 100px;
}
/* ========================================
   SECURE WEBSITE & PAYMENTS
======================================== */

.secure-footer {
  min-width: 0;
}

.secure-footer h4 {
  margin-bottom: 22px;
  white-space: nowrap;
}


/* 3 LOGOS PER ROW */

.secure-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 300px;
}


/* LOGO CARD */

.secure-logo {
  width: 100%;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 7px 9px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


/* LOGO IMAGE */

.secure-logo img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: 78px;
  max-height: 40px;

  object-fit: contain;
}


/* LOGO HOVER */

.secure-logo:hover {
  transform: translateY(-3px);
  background: #ffffff;

  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.18);
}


/* CENTER LAST VISA LOGO */

.secure-logo:last-child {
  grid-column: 2;
}


/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
  grid-column: 1 / -1;

  width: 100%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 22px;
  margin-top: 35px;
  margin-bottom: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* COPYRIGHT */

.footer-bottom p {
  margin: 0;

  color: #c8d1cf;
  font-size: 14px;
  line-height: 1.5;
}


/* RIGHT LINKS */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 24px;
}


.footer-bottom-links a {
  color: #c8d1cf;
  font-size: 14px;
  text-decoration: none;

  transition: color 0.25s ease;
}


.footer-bottom-links a:hover {
  color: #ffffff;
}


/* DMCA */

.footer-bottom-links .dmca-badge {
  display: flex;
  align-items: center;
}


.footer-bottom-links .dmca-badge img {
  display: block;
  width: 120px;
  height: auto;
}


/* ========================================
   REMOVE WHITE SPACE BELOW FOOTER
======================================== */

html,
body {
  margin: 0;
  padding: 0;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

  .secure-footer h4 {
    white-space: normal;
  }

  .secure-logos {
    grid-template-columns: repeat(3, 1fr);
    max-width: 300px;
    gap: 9px;
  }

  .secure-logo {
    height: 50px;
    padding: 6px;
  }

  .secure-logo img {
    max-width: 70px;
    max-height: 36px;
  }

  .secure-logo:last-child {
    grid-column: 2;
  }


  /* Footer Bottom Mobile */

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 18px;
    margin-top: 30px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 15px;
  }

}
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--cream) !important;
}

footer {
  margin: 0 !important;
}
/* ===== HEADING READABILITY AND RESPONSIVE SAFEGUARDS ===== */
h1, h2, h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 330px;
  padding: 164px 0 64px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0 auto 14px;
  max-width: 900px;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  color: #fff;
}
.page-hero p {
  color: #d8e5df;
  font-size: 1rem;
  line-height: 1.7;
}
.page-hero .breadcrumb {
  flex-wrap: wrap;
  line-height: 1.5;
}
.page-hero .breadcrumb span { color: #c8d6d0; }
.section-title { line-height: 1.18; }
.section-subtitle { line-height: 1.7; }
.content-section h2 { line-height: 1.22; }

@media (max-width: 768px) {
  .page-hero { min-height: 290px; padding: 150px 0 52px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .page-hero p { max-width: 34rem; font-size: .92rem; }
}

@media (max-width: 420px) {
  .page-hero { min-height: 270px; padding: 142px 0 44px; }
  .page-hero h1 { font-size: clamp(1.85rem, 10vw, 2.3rem); line-height: 1.15; }
  .section-title, .content-section h2 { line-height: 1.22; }
}

/* Contact page text contrast */
.contact-intro > h2 {
  margin: 0 0 14px;
  color: #10201e;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.contact-intro-copy {
  max-width: 600px;
  margin: 0 0 34px;
  color: #42534e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.contact-intro .contact-info-item > i { background: #d4ae61; color: #10201e; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 8px 22px rgba(0,0,0,.24); }
.contact-intro .footer-social a { border-color: rgba(27,120,106,.45); color: #1b786a; }
.contact-intro .contact-info-item h4 { color: #10201e; font-weight: 700; }
.contact-intro .contact-info-item p,
.contact-intro .contact-info-item a { color: #4b5d57; line-height: 1.65; }
.contact-intro .contact-info-item a:hover { color: #159681; }
@media (max-width: 600px) {
  .contact-intro > h2 { font-size: 1.8rem; }
  .contact-intro-copy { font-size: .95rem; line-height: 1.7; }
}

/* Secure contact form states */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
form [type="submit"]:disabled { cursor: wait; opacity: .7; }
.toast.success { border-left-color: #27b7a1; }
.toast.error { border-left-color: #dc3545; background: #6f1d25; }


/* =========================================================
   PROJECTS PAGE - PORTFOLIO TABS, GRID & LIGHTBOX
   Scoped to .projects-page so other pages stay unchanged.
========================================================= */
.projects-page .projects-portfolio-section {
  padding: 64px 0 92px;
  background: #fff;
}

.projects-page .projects-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.projects-page .projects-intro h2 {
  margin: 0 0 14px;
  color: #101010;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.projects-page .projects-intro p {
  margin: 0 auto;
  max-width: 860px;
  color: #20252b;
  font-size: .9rem;
  line-height: 1.65;
}

.projects-page .portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 38px;
}

.projects-page .portfolio-filter button {
  min-width: 84px;
  padding: 10px 15px;
  border: 1px solid #222;
  border-radius: 4px;
  background: #fff;
  color: #151515;
  font: inherit;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.projects-page .portfolio-filter button:hover,
.projects-page .portfolio-filter button:focus-visible,
.projects-page .portfolio-filter button.active {
  background: #8fbd3f;
  border-color: #8fbd3f;
  color: #fff;
  outline: none;
}

.projects-page .portfolio-filter button:active { transform: translateY(1px); }

.projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Project image cards: clean screenshot preview with internal hover scroll */
.projects-page .project-card {
  position: relative;
  min-width: 0;
  height: 315px;
  overflow: hidden;
  border: 1px solid rgba(24, 51, 46, .08);
  border-radius: 16px;
  background: #f7f8f6;
  cursor: pointer;
  box-shadow: 0 5px 24px rgba(16, 32, 30, .10);
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.projects-page .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 32, 30, .16);
}

.projects-page .project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.projects-page .project-card[hidden] {
  display: none !important;
}

.projects-page .project-card > img {
  --scroll-distance: 0px;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #f7f8f6;
  transform: translate3d(0, 0, 0);
  transition: transform 4.5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

.projects-page .project-card.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0);
}

/* No text/gradient is displayed over portfolio screenshots. */
.projects-page .portfolio-overlay,
.projects-page .project-category,
.projects-page .project-view,
.projects-page .project-card::after {
  display: none !important;
}

/* Fullscreen viewer */
.projects-page.lightbox-open {
  overflow: hidden;
}

.projects-page .portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 90px 50px;
  background: rgba(10, 20, 18, .96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.projects-page .portfolio-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.projects-page .lightbox-image {
  width: auto;
  height: auto;
  max-width: min(1200px, calc(100vw - 180px));
  max-height: calc(100vh - 110px);
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  user-select: none;
}

.projects-page .lightbox-close,
.projects-page .lightbox-prev,
.projects-page .lightbox-next {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

.projects-page .lightbox-close:hover,
.projects-page .lightbox-prev:hover,
.projects-page .lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.projects-page .lightbox-close {
  top: 18px;
  right: 20px;
}

.projects-page .lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.projects-page .lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.projects-page .lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1000px) {
  .projects-page .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .projects-page .project-card {
    height: 300px;
  }

  .projects-page .portfolio-filter {
    gap: 9px;
  }

  .projects-page .portfolio-filter button {
    padding: 9px 14px;
  }

  .projects-page .portfolio-lightbox {
    padding: 55px 70px 45px;
  }

  .projects-page .lightbox-image {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 100px);
  }

  .projects-page .lightbox-prev {
    left: 12px;
  }

  .projects-page .lightbox-next {
    right: 12px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .projects-page .projects-portfolio-section {
    padding: 48px 0 65px;
  }

  .projects-page .projects-intro {
    margin-bottom: 25px;
  }

  .projects-page .projects-intro h2 {
    font-size: 1.72rem;
  }

  .projects-page .projects-intro p {
    font-size: .82rem;
  }

  .projects-page .portfolio-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -24px;
    margin-left: -24px;
    padding: 2px 24px 9px;
    scrollbar-width: none;
  }

  .projects-page .portfolio-filter::-webkit-scrollbar {
    display: none;
  }

  .projects-page .portfolio-filter button {
    flex: 0 0 auto;
    min-height: 39px;
    padding: 8px 13px;
    font-size: .73rem;
  }

  .projects-page .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .projects-page .project-card {
    height: 300px;
    border-radius: 13px;
  }

  .projects-page .portfolio-lightbox {
    padding: 55px 43px 45px;
  }

  .projects-page .lightbox-image {
    max-width: calc(100vw - 26px);
    max-height: calc(100vh - 120px);
    border-radius: 5px;
  }

  .projects-page .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .projects-page .lightbox-prev,
  .projects-page .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .projects-page .lightbox-prev {
    left: 7px;
  }

  .projects-page .lightbox-next {
    right: 7px;
  }

  .projects-page .lightbox-counter {
    bottom: 10px;
  }
}


/* =========================================================
   FINAL GLOBAL FOOTER + PORTFOLIO PREVIEW FIXES
   ========================================================= */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  background: var(--dark) !important;
}

body {
  min-height: 100vh;
  background: var(--cream) !important;
}

body > footer.footer,
footer.footer {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding-bottom: 0 !important;
}

footer.footer .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

footer.footer .footer-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

/* Clean portfolio screenshot cards: no text, badges or overlays. */
.projects-page .project-card {
  height: 360px;
  overflow: hidden;
  background: #f4f6f3;
  box-shadow: 0 8px 26px rgba(16, 32, 30, .10);
}

.projects-page .project-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: none;
  object-fit: initial;
  object-position: top center;
  transform: translate3d(0, 0, 0);
  transition: transform 6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

.projects-page .project-card.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0);
}

.projects-page .portfolio-overlay,
.projects-page .project-category,
.projects-page .project-view,
.projects-page .project-card::before,
.projects-page .project-card::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1000px) {
  .projects-page .project-card {
    height: 330px;
  }
}

@media (max-width: 650px) {
  .projects-page .project-card {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-page .project-card > img {
    transition: none !important;
  }
}


/* =========================================================
   FINAL PORTFOLIO CARD POLISH
   - clear separation between cards
   - no horizontal cropping/scaling
   - screenshot scroll stays inside each card
========================================================= */
.projects-page .projects-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 34px;
  align-items: start;
}

.projects-page .project-card {
  width: 100%;
  min-width: 0;
  height: 360px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(24, 51, 46, .10);
  border-radius: 16px;
  background: #f7f8f6;
  box-shadow: 0 8px 28px rgba(16, 32, 30, .11);
  isolation: isolate;
  transform: translateZ(0);
}

.projects-page .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 32, 30, .15);
}

/* Important: override the site's generic portfolio hover zoom. */
.projects-page .project-card > img,
.projects-page .project-card:hover > img,
.projects-page .project-card:focus > img {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0;
  padding: 0;
  object-fit: initial !important;
  object-position: top center !important;
  background: #fff;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  transform-origin: top center;
  transition: transform 6s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform;
  pointer-events: none;
}

.projects-page .project-card.is-scrolling > img,
.projects-page .project-card:hover.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0) !important;
}

.projects-page .project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .projects-page .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 30px;
  }

  .projects-page .project-card {
    height: 330px;
  }
}

@media (max-width: 650px) {
  .projects-page .projects-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .projects-page .project-card {
    height: 310px;
    border-radius: 14px;
  }
}

/* Pricing responsive refinements */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}
@media (max-width: 700px) {
  .pricing-tabs { width:100%; overflow-x:auto; justify-content:flex-start; padding-bottom:4px; scrollbar-width:none; }
  .pricing-tabs::-webkit-scrollbar { display:none; }
  .pricing-tab { flex:0 0 auto; padding:11px 20px; }
  .pricing-grid { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .pricing-features { height: 250px; }
  .pricing-card { padding:24px 18px 20px; }
}

/* Global page edge fix */
html, body { margin-bottom: 0 !important; padding-bottom: 0 !important; }
footer.footer { margin-bottom: 0 !important; }

/* ===== ABOUT PAGE ===== */
.about-hero{padding-top:150px;background:linear-gradient(180deg,#f7fbf8 0%,var(--cream) 100%);overflow:hidden}
.about-hero-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);gap:70px;align-items:center}
.about-eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--gold-dark);font-size:.72rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin-bottom:14px}
.about-hero-copy h1{font-size:clamp(2.8rem,5vw,4.6rem);line-height:1.03;letter-spacing:-.055em;color:var(--navy);max-width:720px;margin-bottom:22px}
.about-hero-copy h1 span{color:var(--gold-dark)}
.about-lead{font-size:1.05rem;line-height:1.85;color:#52615d;max-width:670px}
.about-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.about-trust-row{display:flex;gap:22px;flex-wrap:wrap;margin-top:28px;color:var(--navy);font-size:.8rem;font-weight:700}
.about-trust-row i{color:var(--gold-dark);margin-right:6px}
.about-hero-visual{position:relative;min-height:570px}
.about-image-main{height:510px;border-radius:28px;overflow:hidden;box-shadow:0 25px 70px rgba(24,51,46,.18);background:#dfeae5}
.about-image-main img{width:100%;height:100%;object-fit:cover;object-position:top center}
.about-image-card{position:absolute;left:-45px;bottom:10px;width:230px;padding:12px;background:#fff;border-radius:18px;box-shadow:0 18px 45px rgba(24,51,46,.16)}
.about-image-card img{width:100%;height:150px;object-fit:cover;border-radius:11px}
.about-image-card span{display:block;padding:12px 5px 4px;color:var(--navy);font-size:.68rem;font-weight:800;letter-spacing:.12em}
.about-story{background:#fff}
.about-story-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:80px;align-items:center}
.about-story-image{height:610px;border-radius:24px;overflow:hidden;box-shadow:var(--shadow);background:#e8eeeb}
.about-story-image img{width:100%;height:100%;object-fit:cover;object-position:top center}
.about-story-copy h2,.about-section-heading h2,.about-showcase-copy h2{font-size:clamp(2rem,4vw,3.2rem);line-height:1.08;letter-spacing:-.045em;color:var(--navy);margin-bottom:18px}
.about-story-copy>p,.about-section-heading>p,.about-showcase-copy>p{color:#60706b;line-height:1.8;margin-bottom:16px}
.about-values{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px}
.about-values>div{padding:18px;border:1px solid #dce8e2;border-radius:16px;background:#f8fbf9}
.about-values strong{color:var(--gold-dark);font-size:.75rem}
.about-values h3{color:var(--navy);font-size:1rem;margin:8px 0 6px}
.about-values p{font-size:.8rem;line-height:1.55;color:#70807b}
.about-capabilities{background:var(--cream)}
.about-section-heading{text-align:center;max-width:760px;margin:0 auto 48px}
.about-section-heading.compact{margin-bottom:34px}
.about-capability-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.about-capability-card{position:relative;padding:30px;border:1px solid #dbe5e0;border-radius:20px;background:#fff;box-shadow:0 8px 30px rgba(24,51,46,.05);transition:var(--transition);overflow:hidden}
.about-capability-card:hover{transform:translateY(-6px);border-color:var(--gold);box-shadow:0 18px 45px rgba(39,183,161,.12)}
.about-capability-card>i{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;background:#eaf8f1;color:var(--gold-dark);font-size:1.1rem;margin-bottom:24px}
.about-capability-card>span{position:absolute;top:28px;right:28px;color:#9eaaa5;font-size:.72rem;font-weight:800}
.about-capability-card h3{color:var(--navy);font-size:1.15rem;margin-bottom:10px}
.about-capability-card p{color:#6b7975;font-size:.88rem;line-height:1.7;min-height:76px;margin-bottom:20px}
.about-capability-card b{color:var(--gold-dark);font-size:.78rem}
.about-capability-card b i{margin-left:5px}
.about-showcase{background:var(--navy);color:var(--text-light)}
.about-showcase-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:70px;align-items:center}
.about-showcase-copy .about-eyebrow{color:var(--gold-light)}
.about-showcase-copy h2{color:#fff}
.about-showcase-copy>p{color:#c4d1cb}
.about-showcase-copy ul{display:grid;gap:14px;margin:26px 0 30px}
.about-showcase-copy li{display:flex;gap:12px;color:#dbe6e1;line-height:1.65}
.about-showcase-copy li i{color:var(--gold);margin-top:5px}
.about-showcase-copy li strong{color:#fff}
.about-showcase-images{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:220px 220px;gap:14px}
.about-showcase-images img{width:100%;height:100%;object-fit:cover;border-radius:20px;box-shadow:0 15px 40px rgba(0,0,0,.18)}
.about-showcase-images img:first-child{grid-row:1 / span 2}
.about-clients{background:#fff}
.about-client-logos{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.about-client-logos img{width:100%;height:84px;object-fit:contain;padding:16px 22px;border:1px solid #e5ebe8;border-radius:14px;background:#fafcfb;filter:grayscale(1);opacity:.8;transition:var(--transition)}
.about-client-logos img:hover{filter:none;opacity:1;transform:translateY(-3px);border-color:#cfe1d8}
.about-cta{background:var(--cream)}
.about-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:50px 55px;border-radius:28px;background:linear-gradient(135deg,#18332e,#2d5146);box-shadow:0 25px 70px rgba(24,51,46,.18)}
.about-cta .about-eyebrow{color:var(--gold-light)}
.about-cta h2{color:#fff;font-size:clamp(1.9rem,3.4vw,3rem);line-height:1.08;letter-spacing:-.04em;max-width:720px;margin-bottom:12px}
.about-cta p{color:#c8d7d1;max-width:680px}
.about-cta .btn{flex:0 0 auto}
@media(max-width:1000px){.about-hero-grid,.about-story-grid,.about-showcase-grid{grid-template-columns:1fr;gap:42px}.about-hero-visual{min-height:500px;max-width:760px;width:100%;margin:0 auto}.about-story-image{height:500px;max-width:760px}.about-capability-grid{grid-template-columns:repeat(2,1fr)}.about-showcase-images{max-width:760px;width:100%;margin:0 auto}.about-cta-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:650px){.about-hero{padding-top:125px}.about-hero-copy h1{font-size:2.55rem}.about-lead{font-size:.95rem}.about-hero-visual{min-height:390px}.about-image-main{height:370px;border-radius:20px}.about-image-card{left:12px;bottom:-20px;width:190px}.about-image-card img{height:115px}.about-story,.about-capabilities,.about-showcase,.about-clients,.about-cta{padding-top:58px;padding-bottom:58px}.about-story-image{height:390px}.about-values{grid-template-columns:1fr}.about-capability-grid{grid-template-columns:1fr}.about-capability-card p{min-height:0}.about-showcase-images{grid-template-columns:1fr 1fr;grid-template-rows:190px 190px}.about-showcase-images img:first-child{grid-row:1 / span 2}.about-client-logos{grid-template-columns:repeat(2,1fr)}.about-cta-inner{padding:34px 25px;border-radius:20px}.about-cta .btn{width:100%}.about-trust-row{gap:12px;display:grid}.about-hero-actions .btn{width:100%}}


/* HOME PAGE PROJECTS SECTION - same layout and interactions as Projects */
/* =========================================================
   PROJECTS PAGE - PORTFOLIO TABS, GRID & LIGHTBOX
   Scoped to .home-projects so other pages stay unchanged.
========================================================= */
.home-projects .projects-portfolio-section {
  padding: 64px 0 92px;
  background: #fff;
}

.home-projects .projects-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}

.home-projects .projects-intro h2 {
  margin: 0 0 14px;
  color: #101010;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.home-projects .projects-intro p {
  margin: 0 auto;
  max-width: 860px;
  color: #20252b;
  font-size: .9rem;
  line-height: 1.65;
}

.home-projects .portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 auto 38px;
}

.home-projects .portfolio-filter button {
  min-width: 84px;
  padding: 10px 15px;
  border: 1px solid #222;
  border-radius: 4px;
  background: #fff;
  color: #151515;
  font: inherit;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.home-projects .portfolio-filter button:hover,
.home-projects .portfolio-filter button:focus-visible,
.home-projects .portfolio-filter button.active {
  background: #8fbd3f;
  border-color: #8fbd3f;
  color: #fff;
  outline: none;
}

.home-projects .portfolio-filter button:active { transform: translateY(1px); }

.home-projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* Project image cards: clean screenshot preview with internal hover scroll */
.home-projects .project-card {
  position: relative;
  min-width: 0;
  height: 315px;
  overflow: hidden;
  border: 1px solid rgba(24, 51, 46, .08);
  border-radius: 16px;
  background: #f7f8f6;
  cursor: pointer;
  box-shadow: 0 5px 24px rgba(16, 32, 30, .10);
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-projects .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 32, 30, .16);
}

.home-projects .project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.home-projects .project-card[hidden] {
  display: none !important;
}

.home-projects .project-card > img {
  --scroll-distance: 0px;
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #f7f8f6;
  transform: translate3d(0, 0, 0);
  transition: transform 4.5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

.home-projects .project-card.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0);
}

/* No text/gradient is displayed over portfolio screenshots. */
.home-projects .portfolio-overlay,
.home-projects .project-category,
.home-projects .project-view,
.home-projects .project-card::after {
  display: none !important;
}

/* Fullscreen viewer */
.home-projects.lightbox-open {
  overflow: hidden;
}

.home-projects .portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 90px 50px;
  background: rgba(10, 20, 18, .96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.home-projects .portfolio-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-projects .lightbox-image {
  width: auto;
  height: auto;
  max-width: min(1200px, calc(100vw - 180px));
  max-height: calc(100vh - 110px);
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
  user-select: none;
}

.home-projects .lightbox-close,
.home-projects .lightbox-prev,
.home-projects .lightbox-next {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

.home-projects .lightbox-close:hover,
.home-projects .lightbox-prev:hover,
.home-projects .lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.home-projects .lightbox-close {
  top: 18px;
  right: 20px;
}

.home-projects .lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.home-projects .lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.home-projects .lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%);
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1000px) {
  .home-projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .home-projects .project-card {
    height: 300px;
  }

  .home-projects .portfolio-filter {
    gap: 9px;
  }

  .home-projects .portfolio-filter button {
    padding: 9px 14px;
  }

  .home-projects .portfolio-lightbox {
    padding: 55px 70px 45px;
  }

  .home-projects .lightbox-image {
    max-width: calc(100vw - 140px);
    max-height: calc(100vh - 100px);
  }

  .home-projects .lightbox-prev {
    left: 12px;
  }

  .home-projects .lightbox-next {
    right: 12px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .home-projects .projects-portfolio-section {
    padding: 48px 0 65px;
  }

  .home-projects .projects-intro {
    margin-bottom: 25px;
  }

  .home-projects .projects-intro h2 {
    font-size: 1.72rem;
  }

  .home-projects .projects-intro p {
    font-size: .82rem;
  }

  .home-projects .portfolio-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -24px;
    margin-left: -24px;
    padding: 2px 24px 9px;
    scrollbar-width: none;
  }

  .home-projects .portfolio-filter::-webkit-scrollbar {
    display: none;
  }

  .home-projects .portfolio-filter button {
    flex: 0 0 auto;
    min-height: 39px;
    padding: 8px 13px;
    font-size: .73rem;
  }

  .home-projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-projects .project-card {
    height: 300px;
    border-radius: 13px;
  }

  .home-projects .portfolio-lightbox {
    padding: 55px 43px 45px;
  }

  .home-projects .lightbox-image {
    max-width: calc(100vw - 26px);
    max-height: calc(100vh - 120px);
    border-radius: 5px;
  }

  .home-projects .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .home-projects .lightbox-prev,
  .home-projects .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .home-projects .lightbox-prev {
    left: 7px;
  }

  .home-projects .lightbox-next {
    right: 7px;
  }

  .home-projects .lightbox-counter {
    bottom: 10px;
  }
}


/* =========================================================
   FINAL GLOBAL FOOTER + PORTFOLIO PREVIEW FIXES
   ========================================================= */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  background: var(--dark) !important;
}

body {
  min-height: 100vh;
  background: var(--cream) !important;
}

body > footer.footer,
footer.footer {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding-bottom: 0 !important;
}

footer.footer .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

footer.footer .footer-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

/* Clean portfolio screenshot cards: no text, badges or overlays. */
.home-projects .project-card {
  height: 360px;
  overflow: hidden;
  background: #f4f6f3;
  box-shadow: 0 8px 26px rgba(16, 32, 30, .10);
}

.home-projects .project-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: none;
  object-fit: initial;
  object-position: top center;
  transform: translate3d(0, 0, 0);
  transition: transform 6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
  user-select: none;
  pointer-events: none;
}

.home-projects .project-card.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0);
}

.home-projects .portfolio-overlay,
.home-projects .project-category,
.home-projects .project-view,
.home-projects .project-card::before,
.home-projects .project-card::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1000px) {
  .home-projects .project-card {
    height: 330px;
  }
}

@media (max-width: 650px) {
  .home-projects .project-card {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-projects .project-card > img {
    transition: none !important;
  }
}


/* =========================================================
   FINAL PORTFOLIO CARD POLISH
   - clear separation between cards
   - no horizontal cropping/scaling
   - screenshot scroll stays inside each card
========================================================= */
.home-projects .projects-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 34px;
  align-items: start;
}

.home-projects .project-card {
  width: 100%;
  min-width: 0;
  height: 360px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(24, 51, 46, .10);
  border-radius: 16px;
  background: #f7f8f6;
  box-shadow: 0 8px 28px rgba(16, 32, 30, .11);
  isolation: isolate;
  transform: translateZ(0);
}

.home-projects .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 32, 30, .15);
}

/* Important: override the site's generic portfolio hover zoom. */
.home-projects .project-card > img,
.home-projects .project-card:hover > img,
.home-projects .project-card:focus > img {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0;
  padding: 0;
  object-fit: initial !important;
  object-position: top center !important;
  background: #fff;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  transform-origin: top center;
  transition: transform 6s cubic-bezier(.22,.61,.36,1) !important;
  will-change: transform;
  pointer-events: none;
}

.home-projects .project-card.is-scrolling > img,
.home-projects .project-card:hover.is-scrolling > img {
  transform: translate3d(0, calc(-1 * var(--scroll-distance)), 0) !important;
}

.home-projects .project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .home-projects .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 30px;
  }

  .home-projects .project-card {
    height: 330px;
  }
}

@media (max-width: 650px) {
  .home-projects .projects-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .home-projects .project-card {
    height: 310px;
    border-radius: 14px;
  }
}



/* Home project grid alignment */
.home-projects .projects-portfolio-section { padding-top: 64px; padding-bottom: 92px; }
.home-projects .projects-grid { margin-top: 0; }
.home-projects .project-card { cursor: pointer; }
.home-projects .project-card > img { object-fit: initial !important; }

@media (max-width: 650px) {
  .home-projects .projects-portfolio-section { padding-top: 48px; padding-bottom: 65px; }
}


/* =========================================================
   COMPACT ABOUT PAGE
========================================================= */
.about-compact-hero { padding: 78px 0 58px; background: #fff; }
.about-compact-hero .container { max-width: 900px; text-align: center; }
.about-compact-hero h1 { margin: 12px auto 16px; max-width: 800px; color: var(--navy, #18332e); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; }
.about-compact-hero p { max-width: 720px; margin: 0 auto 26px; color: var(--text-muted, #5c6670); line-height: 1.7; }
.about-compact-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.about-quick { padding: 20px 0 72px; background:#fff; }
.about-quick-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.about-quick-grid article { padding:28px; border:1px solid rgba(24,51,46,.12); border-radius:14px; background:#fff; box-shadow:0 8px 24px rgba(16,32,30,.06); }
.about-quick-grid span { color:var(--gold,#8fbd3f); font-weight:700; }
.about-quick-grid h2 { margin:10px 0 8px; color:var(--navy,#18332e); font-size:1.25rem; }
.about-quick-grid p { margin:0; color:var(--text-muted,#5c6670); line-height:1.65; font-size:.94rem; }
.about-compact-services { background:#f7f8f6; }
.about-section-heading { text-align:center; max-width:760px; margin:0 auto 34px; }
.about-section-heading h2 { margin:10px 0 0; color:var(--navy,#18332e); font-size:clamp(1.7rem,3vw,2.4rem); }
.about-services-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.about-services-grid a { display:flex; flex-direction:column; gap:8px; padding:22px; border:1px solid rgba(24,51,46,.12); border-radius:12px; background:#fff; color:inherit; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.about-services-grid a:hover { transform:translateY(-3px); border-color:var(--gold,#8fbd3f); box-shadow:0 10px 24px rgba(16,32,30,.08); }
.about-services-grid strong { color:var(--navy,#18332e); font-size:1rem; }
.about-services-grid span { color:var(--text-muted,#5c6670); line-height:1.55; font-size:.9rem; }
.about-compact-cta { padding:72px 0; text-align:center; background:#18332e; }
.about-compact-cta h2 { margin:0 0 10px; color:#fff; font-size:clamp(1.7rem,3vw,2.4rem); }
.about-compact-cta p { margin:0 0 22px; color:rgba(255,255,255,.78); }
@media (max-width:900px){ .about-quick-grid,.about-services-grid{grid-template-columns:repeat(2,minmax(0,1fr));} }
@media (max-width:600px){ .about-compact-hero{padding:55px 0 42px;} .about-quick-grid,.about-services-grid{grid-template-columns:1fr;} .about-quick-grid article{padding:22px;} .about-compact-cta{padding:55px 0;} }


/* HOME PORTFOLIO PREVIEW — SIX PROJECTS + PREMIUM CATEGORY TABS */
.home-projects .projects-portfolio-section {
  padding: 76px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.home-projects .projects-intro {
  max-width: 820px;
  margin-bottom: 30px;
}

.home-projects .projects-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(143,189,63,.35);
  border-radius: 999px;
  background: rgba(143,189,63,.08);
  color: #5f8620;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-projects .projects-intro h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

.home-projects .projects-intro p {
  max-width: 700px;
  color: #5b6864;
}

.home-projects .portfolio-filter {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 42px;
  padding: 6px;
  gap: 4px;
  flex-wrap: nowrap;
  border: 1px solid #dfe8e3;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(24,51,46,.07);
}

.home-projects .portfolio-filter button {
  min-width: auto;
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4e5b57;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all .25s ease;
}

.home-projects .portfolio-filter button:hover,
.home-projects .portfolio-filter button:focus-visible {
  background: #edf5e5;
  color: #476619;
  border-color: transparent;
  transform: none;
}

.home-projects .portfolio-filter button.active {
  background: #93c23e;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 14px rgba(147,194,62,.24);
}

.home-projects .projects-grid {
  gap: 28px;
}

.home-projects .home-projects-view-all {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.home-projects .home-projects-view-all .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 23px;
  box-shadow: 0 9px 24px rgba(147,194,62,.2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-projects .home-projects-view-all .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(147,194,62,.28);
}

@media (max-width: 1000px) {
  .home-projects .portfolio-filter {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .home-projects .portfolio-filter::-webkit-scrollbar { display: none; }
}

@media (max-width: 650px) {
  .home-projects .projects-portfolio-section {
    padding: 56px 0 72px;
  }
  .home-projects .projects-intro {
    margin-bottom: 24px;
  }
  .home-projects .projects-intro h2 {
    font-size: 1.9rem;
  }
  .home-projects .portfolio-filter {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    justify-content: flex-start;
    padding: 5px 7px;
    border-radius: 16px;
  }
  .home-projects .portfolio-filter button {
    padding: 10px 14px;
    font-size: .72rem;
  }
  .home-projects .projects-grid {
    gap: 20px;
  }
  .home-projects .home-projects-view-all {
    margin-top: 32px;
  }
  .home-projects .home-projects-view-all .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==============================
   ABOUT PAGE
============================== */
.about-page {
  background: #fff;
}

.about-intro {
  padding-top: 92px;
  padding-bottom: 82px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: 70px;
  align-items: center;
}

.about-intro-copy {
  max-width: 650px;
}

.about-intro-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-intro-copy p {
  max-width: 610px;
  margin: 0 0 15px;
  color: #59636b;
  font-size: 1rem;
  line-height: 1.8;
}

.about-intro-copy .about-lead {
  color: #18332e;
  font-size: 1.2rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.about-intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-visual {
  position: relative;
}

.about-visual-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #eef4f1;
  box-shadow: 0 20px 60px rgba(24, 51, 46, .12);
}

.about-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 51, 46, .5));
  pointer-events: none;
}

.about-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-visual-note {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.about-visual-note span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9bc53d;
  color: #18332e;
  font-weight: 700;
}

.about-visual-note strong {
  font-size: 1rem;
}

.about-beliefs {
  padding: 0 0 82px;
}

.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-beliefs-grid article {
  padding: 30px;
  border: 1px solid rgba(24, 51, 46, .12);
  border-radius: 18px;
  background: #f7faf8;
  transition: transform .25s ease, box-shadow .25s ease;
}

.about-beliefs-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(24, 51, 46, .08);
}

.about-number {
  color: #8caf36;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.about-beliefs-grid h2 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
}

.about-beliefs-grid p {
  margin: 0;
  color: #657078;
  line-height: 1.7;
}

.about-closing {
  padding-top: 0;
}

.about-closing-box {
  padding: 62px 70px;
  border-radius: 24px;
  background: #18332e;
  color: #fff;
  text-align: center;
}

.about-closing-box h2 {
  max-width: 700px;
  margin: 12px auto 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.about-closing-box p {
  max-width: 650px;
  margin: 0 auto 25px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}

.about-closing-box .eyebrow {
  color: #a6cf4b;
}

@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-copy {
    max-width: 760px;
  }

  .about-visual-frame {
    height: 440px;
  }

  .about-beliefs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding-top: 58px;
    padding-bottom: 55px;
  }

  .about-intro-copy h1 {
    font-size: 2.55rem;
  }

  .about-intro-copy .about-lead {
    font-size: 1.05rem;
  }

  .about-visual-frame {
    height: 390px;
    border-radius: 18px;
  }

  .about-beliefs {
    padding-bottom: 55px;
  }

  .about-beliefs-grid article {
    padding: 24px;
  }

  .about-closing-box {
    padding: 42px 24px;
    border-radius: 18px;
  }
}


/* =========================================================
   FINAL RESPONSIVE + SPACING PASS
   Keeps the shared site design consistent on every page.
========================================================= */

html, body { width: 100%; max-width: 100%; }
body { overflow-x: hidden; }
main, section, footer, header, nav { max-width: 100%; }
.container { width: min(100%, var(--container)); }

/* Shared inner-page banner */
.about-page-hero { margin: 0; }
.about-page-hero .breadcrumb { margin-bottom: 12px; }
.about-page-hero h1 { margin-bottom: 10px; }

/* Prevent long content from forcing horizontal scroll */
img, video, iframe, svg, canvas { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; }

/* Shared grids */
.services-grid,
.solutions-grid,
.growth-grid,
.innovations-grid,
.stats-grid,
.portfolio-grid,
.projects-grid,
.plan-features-grid,
.testimonials-grid,
.content-grid,
.blog-page-grid,
.clients-grid,
.pricing-grid,
.about-beliefs-grid,
.footer-grid,
.contact-grid { min-width: 0; }

/* Pricing feature areas stay inside their cards */
.pricing-card { min-width: 0; overflow: hidden; }
.pricing-card .plan-features,
.pricing-card .pricing-features,
.pricing-card .features-list,
.pricing-card .feature-list { min-width: 0; }

/* Long feature lists: scroll inside the card, never the page */
.plan-features,
.pricing-features,
.features-list,
.pricing-card .feature-list,
.pricing-card .plan-feature-list {
  max-height: 330px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(24,51,46,.08);
  padding-right: 6px;
}
.plan-features::-webkit-scrollbar,
.pricing-features::-webkit-scrollbar,
.features-list::-webkit-scrollbar,
.pricing-card .feature-list::-webkit-scrollbar,
.pricing-card .plan-feature-list::-webkit-scrollbar { width: 5px; }
.plan-features::-webkit-scrollbar-track,
.pricing-features::-webkit-scrollbar-track,
.features-list::-webkit-scrollbar-track,
.pricing-card .feature-list::-webkit-scrollbar-track,
.pricing-card .plan-feature-list::-webkit-scrollbar-track { background: rgba(24,51,46,.06); border-radius: 99px; }
.plan-features::-webkit-scrollbar-thumb,
.pricing-features::-webkit-scrollbar-thumb,
.features-list::-webkit-scrollbar-thumb,
.pricing-card .feature-list::-webkit-scrollbar-thumb,
.pricing-card .plan-feature-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* Portfolio cards never create horizontal crop */
.portfolio-card, .project-card, .projects-card { min-width: 0; overflow: hidden; }
.portfolio-card img, .project-card img, .projects-card img { width: 100%; max-width: 100%; }

/* Footer */
.footer { width: 100%; overflow: hidden; }
.secure-logos { min-width: 0; }
.secure-logo img { max-width: 100%; height: auto; object-fit: contain; }
.footer-bottom { min-width: 0; }
.footer-bottom-links { min-width: 0; }

/* Tablet */
@media (max-width: 1024px) {
  :root { --container: 960px; }
  .container { padding-left: 22px; padding-right: 22px; }
  .section-padding { padding: 68px 0; }
  .content-section { padding: 52px 0; }
  .page-hero { min-height: 290px; padding: 145px 0 54px; }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); }

  .about-intro { padding-top: 68px; }
  .about-intro-grid { grid-template-columns: minmax(0,1fr) minmax(300px,.85fr); gap: 42px; }
  .about-visual-frame { height: 430px; }
  .about-intro-copy h1 { font-size: clamp(2.25rem, 5vw, 3.4rem); }

  .services-grid { gap: 18px; }
  .portfolio-grid, .projects-grid { gap: 22px; }
  .pricing-grid { gap: 18px; }
  .pricing-card { padding: 28px 20px; }
}

/* Mobile navigation + compact layout */
@media (max-width: 768px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .section-padding { padding: 56px 0; }
  .content-section { padding: 44px 0; }

  .header-inner { min-width: 0; }
  .logo { width: 138px; height: 60px; }
  .logo-mark { flex-basis: 138px; width: 138px; }
  .logo-mark img { width: 208px; }

  .page-hero { min-height: 260px; padding: 118px 0 42px; }
  .page-hero .breadcrumb { margin-bottom: 10px; font-size: .78rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.35rem); line-height: 1.1; }
  .page-hero p { max-width: 620px; font-size: .88rem; line-height: 1.6; }

  .about-intro { padding-top: 52px; padding-bottom: 54px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-intro-copy h1 { font-size: clamp(2.1rem, 9vw, 2.75rem); }
  .about-intro-copy p { font-size: .92rem; line-height: 1.7; }
  .about-intro-copy .about-lead { font-size: 1.02rem; }
  .about-visual-frame { height: min(420px, 92vw); min-height: 300px; }
  .about-visual-note { left: 16px; right: 16px; bottom: 16px; }
  .about-beliefs { padding-bottom: 54px; }
  .about-beliefs-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-beliefs-grid article { padding: 22px; }
  .about-closing-box { padding: 42px 22px; }

  .services-grid,
  .solutions-grid,
  .growth-grid,
  .innovations-grid,
  .content-grid,
  .blog-page-grid,
  .portfolio-grid,
  .projects-grid,
  .plan-features-grid,
  .testimonials-grid,
  .pricing-grid,
  .footer-grid,
  .contact-grid { grid-template-columns: 1fr !important; }

  .pricing-grid { max-width: 560px; }
  .pricing-card { width: 100%; }
  .pricing-card .plan-features,
  .pricing-card .pricing-features,
  .pricing-card .features-list,
  .pricing-card .feature-list,
  .pricing-card .plan-feature-list { max-height: 280px; }

  .footer { padding-bottom: 0; }
  .footer-bottom { padding-bottom: 18px; }
  .footer-bottom-links { gap: 12px; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding-left: 15px; padding-right: 15px; }
  .section-padding { padding: 48px 0; }
  .content-section { padding: 38px 0; }

  .top-marquee { height: 27px; }
  .header { top: 27px; }
  .header-inner { padding-left: 7px; padding-right: 7px; }
  .logo { width: 124px; height: 54px; }
  .logo-mark { flex-basis: 124px; width: 124px; }
  .logo-mark img { width: 190px; }

  .page-hero { min-height: 235px; padding: 108px 0 36px; }
  .page-hero h1 { font-size: 1.85rem; }
  .page-hero p { font-size: .84rem; }

  .about-intro { padding-top: 44px; }
  .about-intro-copy h1 { font-size: 2.15rem; }
  .about-intro-actions { flex-direction: column; align-items: stretch; }
  .about-intro-actions .btn { width: 100%; }
  .about-visual-frame { min-height: 270px; height: 78vw; max-height: 360px; border-radius: 16px; }
  .about-visual-note strong { font-size: .88rem; }
  .about-closing-box { padding: 36px 18px; border-radius: 16px; }
  .about-closing-box h2 { font-size: 1.8rem; }

  .btn { width: auto; max-width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .portfolio-card img, .project-card img, .projects-card img { min-width: 0; }

  .footer-grid { gap: 26px; }
  .footer-bottom-links { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
