/* =============================================================
   GLOBAL STREAM SOLUTION — THEME CSS
   White & Blue | 3D Animations | Syne + DM Sans
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
  --primary:       #0066FF;
  --primary-dark:  #0052CC;
  --primary-light: #3385FF;
  --primary-xlight:#EBF3FF;
  --accent:        #00CCFF;
  --white:         #FFFFFF;
  --gray-50:       #F8FAFC;
  --gray-100:      #F1F5F9;
  --gray-200:      #E2E8F0;
  --gray-300:      #CBD5E1;
  --gray-400:      #94A3B8;
  --gray-500:      #64748B;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-800:      #1E293B;
  --gray-900:      #0F172A;
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,102,255,.1), 0 2px 8px rgba(0,0,0,.08);
  --shadow-lg:     0 16px 48px rgba(0,102,255,.15), 0 8px 24px rgba(0,0,0,.1);
  --shadow-xl:     0 32px 80px rgba(0,102,255,.2), 0 16px 40px rgba(0,0,0,.12);
  --transition:    .3s cubic-bezier(.4,0,.2,1);
  --navbar-h:      72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--gray-600); line-height: 1.75; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-full{ width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,102,255,.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,102,255,.45);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--gray-700);
  border-color: var(--gray-200);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--gray-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---- Section Shared ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.align-left { text-align: left; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray-900);
  white-space: nowrap;
}
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links li a,
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  color: var(--gray-600);
  transition: all var(--transition);
  display: block;
}
.nav-links li a:hover,
.nav-links a:hover,
.nav-links li.current-menu-item > a { color: var(--primary); background: var(--primary-xlight); }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: .9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: calc(var(--navbar-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,102,255,.12); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: rgba(0,204,255,.1); bottom: -50px; left: 10%; animation-delay: 3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(0,102,255,.08); top: 40%; left: 40%; animation-delay: 5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}

/* 3D Floating shapes */
.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: .5;
}
.shape-cube {
  width: 60px; height: 60px;
  top: 20%; right: 15%;
  background: linear-gradient(135deg, rgba(0,102,255,.3), rgba(0,204,255,.2));
  border: 1px solid rgba(0,102,255,.3);
  border-radius: 12px;
  animation: cubeFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes cubeFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50%       { transform: translateY(-24px) rotateX(20deg) rotateY(30deg); }
}
.shape-sphere {
  width: 80px; height: 80px;
  bottom: 25%; right: 25%;
  background: radial-gradient(circle at 35% 35%, rgba(0,204,255,.4), rgba(0,102,255,.15));
  border-radius: 50%;
  animation: sphereFloat 8s ease-in-out infinite;
}
@keyframes sphereFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.08); }
}
.shape-ring {
  width: 100px; height: 100px;
  top: 60%; left: 8%;
  border: 3px solid rgba(0,102,255,.25);
  border-radius: 50%;
  animation: ringFloat 10s ease-in-out infinite;
}
@keyframes ringFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-xlight);
  border: 1px solid rgba(0,102,255,.2);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}
.hero-title { margin-bottom: 24px; letter-spacing: -.02em; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-500); margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-number {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label { display: block; font-size: .8rem; color: var(--gray-500); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  width: 420px;
  max-width: 100%;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  position: relative;
  animation: mockupFloat 6s ease-in-out infinite;
}
.dashboard-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
@keyframes mockupFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50%       { transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #27C93F; }
.mockup-title { font-size: .75rem; font-weight: 600; color: var(--gray-500); margin-left: 8px; }
.mockup-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mockup-chart { display: flex; align-items: flex-end; gap: 6px; height: 100px; padding: 0 4px; }
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-xlight), rgba(0,102,255,.15));
  border-radius: 4px 4px 0 0;
  transition: all var(--transition);
}
.chart-bar.active { background: linear-gradient(to top, var(--primary), var(--accent)); box-shadow: 0 0 16px rgba(0,102,255,.4); }
.mockup-metrics { display: flex; gap: 8px; }
.metric-card {
  flex: 1;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-100);
}
.metric-icon { font-size: 1.2rem; }
.metric-value { font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--gray-900); }
.metric-label { font-size: .7rem; color: var(--gray-500); }

.mockup-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  animation: cardFloat 4s ease-in-out infinite;
  white-space: nowrap;
}
.card-left  { left: -50px; bottom: 30px; animation-delay: 0s; }
.card-right { right: -50px; top: 40px; animation-delay: 2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.fc-icon  { font-size: 1.3rem; }
.fc-title { font-family: var(--font-display); font-size: .8rem; font-weight: 700; color: var(--gray-900); }
.fc-sub   { font-size: .7rem; color: var(--gray-500); }

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted-section {
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.trusted-label {
  text-align: center;
  font-size: .85rem;
  color: var(--gray-400);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: .7;
}
.logo-item { transition: opacity var(--transition); }
.logo-item:hover { opacity: 1; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(0,102,255,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  grid-row: span 2;
  color: var(--white);
}
.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li { color: rgba(255,255,255,.9); }
.service-card.featured::before { display: none; }
.service-card.featured .service-link { color: rgba(255,255,255,.9); }
.service-card.featured .service-link:hover { color: var(--white); }
.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:not(.featured):hover .service-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p  { font-size: .9rem; margin-bottom: 16px; }
.service-features {
  list-style: none;
  margin-bottom: 20px;
}
.service-features li {
  font-size: .85rem;
  color: var(--gray-600);
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}
.service-card.featured .service-features li::before { color: rgba(255,255,255,.7); }
.service-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 100px 0; background: var(--gray-50); }
.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-steps { margin: 32px 0; display: flex; flex-direction: column; gap: 24px; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .3;
  flex-shrink: 0;
  line-height: 1;
  min-width: 40px;
}
.process-step:hover .step-number { opacity: 1; }
.step-content h4 { margin-bottom: 4px; font-size: 1rem; }
.step-content p  { font-size: .9rem; }

/* 3D Process Card */
.process-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.process-3d-card {
  position: relative;
  perspective: 800px;
  z-index: 1;
}
.card-3d-inner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 320px;
  transform: perspective(800px) rotateX(6deg) rotateY(-8deg);
  box-shadow: var(--shadow-xl);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  animation: cardTilt 8s ease-in-out infinite;
}
.card-3d-inner:hover { transform: perspective(800px) rotateX(0) rotateY(0); }
@keyframes cardTilt {
  0%, 100% { transform: perspective(800px) rotateX(6deg) rotateY(-8deg); }
  50%       { transform: perspective(800px) rotateX(-4deg) rotateY(6deg); }
}
.p3d-icon { font-size: 3rem; margin-bottom: 20px; }
.card-face h3 { color: var(--white); margin-bottom: 12px; font-size: 1.4rem; }
.card-face p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 24px; }
.p3d-stats { display: flex; gap: 24px; }
.p3d-stat span { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--white); }
.p3d-stat label { font-size: .75rem; color: rgba(255,255,255,.7); }
.card-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(0,102,255,.3), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

.process-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-icon {
  position: absolute;
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  animation: floatIcon 4s ease-in-out infinite;
}
.fi-1 { top: 0; right: 0; animation-delay: 0s; }
.fi-2 { top: 50%; left: -20px; animation-delay: 1s; }
.fi-3 { bottom: 0; right: 10%; animation-delay: 2s; }
.fi-4 { bottom: 20%; left: 0; animation-delay: .5s; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { padding: 100px 0; background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(0,102,255,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.portfolio-card.pc-large { grid-row: span 2; }
.pc-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-large .pc-image { height: 100%; min-height: 300px; }
.pc-thumb { width: 100%; height: 100%; object-fit: cover; }
.pc-mockup {
  width: 85%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.pc-mockup.small { width: 75%; }
.pm-header {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.pm-header span { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-300); }
.pm-body { padding: 10px; }
.pm-hero-block { height: 40px; background: linear-gradient(90deg, var(--primary-xlight), rgba(0,204,255,.1)); border-radius: 6px; margin-bottom: 8px; }
.pm-cards { display: flex; gap: 4px; }
.pm-cards div { flex: 1; height: 28px; background: var(--gray-100); border-radius: 4px; }
.pm-chart-area { height: 60px; background: linear-gradient(to top right, var(--primary-xlight), rgba(0,204,255,.1)); border-radius: 6px; }
.pm-social-feed { display: flex; flex-direction: column; gap: 4px; }
.pm-social-feed::before, .pm-social-feed::after { content: ''; display: block; height: 10px; background: var(--gray-100); border-radius: 4px; }
.pm-brand-showcase { height: 60px; background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(0,102,255,.1)); border-radius: 6px; }
.pm-nav { height: 20px; background: var(--gray-100); border-radius: 4px; margin-bottom: 8px; }
.pm-content .pm-hero-block { height: 50px; }
.pc-info { padding: 20px 24px; }
.pc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.pc-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pc-info p  { font-size: .85rem; margin-bottom: 12px; }
.pc-metrics { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-metrics span {
  padding: 4px 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-700);
}
.pc-live-link {
  display: inline-block;
  margin-top: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}
.portfolio-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 100px 0; background: var(--gray-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(0,102,255,.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.popular {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: var(--gray-900);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,165,0,.4);
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.pricing-card.popular .pricing-header h3,
.pricing-card.popular .pricing-header p { color: rgba(255,255,255,.9); }
.pricing-header p { font-size: .9rem; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.popular .pricing-price { border-bottom-color: rgba(255,255,255,.2); }
.price-currency {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-top: 8px;
}
.pricing-card.popular .price-currency { color: rgba(255,255,255,.7); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.pricing-card.popular .price-amount,
.pricing-card.popular .price-period { color: var(--white); }
.price-period { font-size: .9rem; color: var(--gray-500); }
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
}
.pricing-card.popular .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-features li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); }
.pricing-card.popular .pricing-features li svg { color: rgba(255,255,255,.9); }
.pricing-features li.disabled { opacity: .45; text-decoration: line-through; }
.pricing-features li.disabled svg { color: var(--gray-400); }
.pricing-cta { width: 100%; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,102,255,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.testimonial-card.featured p,
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured span { color: rgba(255,255,255,.7); }
.testimonial-stars {
  font-size: 1.1rem;
  color: #FFBD2E;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}
.testimonial-card p { font-size: .95rem; font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .95rem; color: var(--gray-900); }
.testimonial-author span  { font-size: .8rem; color: var(--gray-500); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb-1 { width: 400px; height: 400px; background: rgba(0,204,255,.2); top: -100px; right: -80px; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(255,255,255,.1); bottom: -80px; left: -40px; }
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--navbar-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
}
.page-hero.slim-hero { padding-bottom: 60px; }
.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-content h1 { margin-bottom: 16px; }
.page-hero-content p { font-size: 1.1rem; color: var(--gray-500); }
.post-meta-hero { display: flex; gap: 8px; align-items: center; justify-content: center; color: var(--gray-500); font-size: .9rem; margin-top: 12px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0 100px; }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-col h2 { margin-bottom: 12px; }
.contact-info-col > p { margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-info-item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(4px); }
.cii-icon {
  width: 44px; height: 44px;
  background: var(--primary-xlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cii-icon.whatsapp-icon { background: rgba(37,211,102,.1); color: #25D366; }
.cii-label { font-size: .75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.cii-value { font-weight: 600; color: var(--gray-800); font-size: .95rem; }
a.cii-value:hover { color: var(--primary); }
.contact-faq h3 { margin-bottom: 16px; font-size: 1.2rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-800);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.2rem; font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--primary); }
.faq-item p { padding: 0 18px 14px; font-size: .9rem; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h2 { margin-bottom: 8px; font-size: 1.8rem; }
.contact-form-card > p { margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success-msg {
  text-align: center;
  padding: 40px;
}
.form-success-msg h3 { color: #22c55e; margin: 16px 0 8px; }
.form-error-msg {
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  color: #DC2626;
  font-size: .9rem;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 80px;
}
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(0,102,255,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-card-image { display: block; overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-date { font-size: .8rem; color: var(--gray-400); }
.blog-cat {
  display: inline-block;
  padding: 2px 10px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.blog-card-title { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.35; }
.blog-card-title a { color: var(--gray-900); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: .9rem; margin-bottom: 16px; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--primary); }
.no-posts { text-align: center; padding: 60px 20px; }
.blog-sidebar .widget { margin-bottom: 32px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
.blog-sidebar .widget-title { font-size: 1rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); color: var(--gray-900); display: inline-block; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 80px;
  align-items: start;
}
.single-post { max-width: 100%; }
.single-post-featured-image { margin-bottom: 40px; border-radius: var(--radius-xl); overflow: hidden; }
.single-post-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.entry-content { line-height: 1.85; }
.entry-content h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.entry-content h3 { font-size: 1.4rem; margin: 32px 0 12px; }
.entry-content p  { margin-bottom: 20px; }
.entry-content ul,
.entry-content ol { margin: 16px 0 20px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--primary);
  background: var(--primary-xlight);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-700);
}
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content a { color: var(--primary); text-decoration: underline; }
.entry-content code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}
.entry-content pre {
  background: var(--gray-900);
  color: #E5E7EB;
  padding: 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 24px 0;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.post-tag {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.post-tag:hover { background: var(--primary-xlight); color: var(--primary); }
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}
.post-navigation a { font-weight: 600; color: var(--primary); font-size: .9rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content-wrap { padding: 60px 0 100px; }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 12px; color: var(--gray-900); }
.legal-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal-content p  { margin-bottom: 16px; font-size: .95rem; line-height: 1.8; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content li { margin-bottom: 6px; font-size: .95rem; color: var(--gray-600); }

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content-wrap { padding: 60px 0 100px; }
.page-content { max-width: 860px; margin: 0 auto; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
}
.error-404-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--navbar-h) 24px 60px;
}
.error-404-number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .35;
}
.error-404-content h1 { margin-bottom: 16px; }
.error-404-content p  { margin-bottom: 32px; font-size: 1.1rem; }
.error-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGINATION
   ============================================================ */
.gss-pagination { margin-top: 40px; }
.gss-pagination ul { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; list-style: none; }
.gss-pagination li a,
.gss-pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition);
}
.gss-pagination li a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-xlight); }
.gss-pagination li span.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 40px rgba(37,211,102,.5);
  background: #22c55e;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--gray-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-down"]  { transform: translateY(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="scale-in"]   { transform: scale(.92); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}
[data-animate="stagger-children"] { opacity: 1; transform: none; }
[data-animate="stagger-children"] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
[data-animate="stagger-children"].animated > * { opacity: 1; transform: none; }
[data-animate="stagger-children"].animated > *:nth-child(1) { transition-delay: .1s; }
[data-animate="stagger-children"].animated > *:nth-child(2) { transition-delay: .2s; }
[data-animate="stagger-children"].animated > *:nth-child(3) { transition-delay: .3s; }
[data-animate="stagger-children"].animated > *:nth-child(4) { transition-delay: .4s; }
[data-animate="stagger-children"].animated > *:nth-child(5) { transition-delay: .5s; }
[data-animate="stagger-children"].animated > *:nth-child(6) { transition-delay: .6s; }
[data-animate="stagger-children"].animated > *:nth-child(7) { transition-delay: .7s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container    { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual        { display: none; }
  .hero-content       { max-width: 100%; text-align: center; }
  .hero-actions       { justify-content: center; }
  .hero-stats         { margin: 0 auto; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-row: span 1; }
  .process-wrapper    { grid-template-columns: 1fr; }
  .process-visual     { display: none; }
  .portfolio-grid     { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card.pc-large { grid-row: span 1; }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .contact-wrapper    { grid-template-columns: 1fr; }
  .blog-layout,
  .single-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar       { order: -1; }

  /* Footer: brand full-width, then 3-col links */
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-tagline { flex: 1 1 260px; margin: 0; }
  .footer-social  { align-self: flex-start; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .nav-links, .nav-cta {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-cta { position: static; width: 100%; }
  .hamburger { display: flex; }
  .services-grid      { grid-template-columns: 1fr; }
  .portfolio-grid     { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .hero-stats         { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider       { width: 40px; height: 1px; }
  .card-left, .card-right { display: none; }
  .cta-actions        { flex-direction: column; align-items: center; }
  .hero-actions       { flex-direction: column; align-items: center; }

  /* Footer: 2-col grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand {
    grid-column: span 2;
    display: block;
  }
  .footer-tagline { max-width: 100%; margin: 12px 0 16px; }
  .footer-contact-col { grid-column: span 2; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form-card { padding: 24px 20px; }
  .dashboard-mockup  { width: 100%; }
  h1 { font-size: 2.2rem; }
}

/* ============================================================
   CONTACT PAGE — Full Styles
   ============================================================ */

/* Hero */
.gss-contact-hero {
  padding: calc(var(--navbar-h) + 60px) 0 48px;
  background: linear-gradient(135deg, #F0F7FF 0%, var(--white) 70%);
  position: relative; overflow: hidden;
}
.gss-contact-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.gss-contact-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.breadcrumb-bar {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--gray-400); margin-bottom: 18px;
}
.breadcrumb-bar a { color: var(--primary); font-weight: 500; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.gss-contact-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.gss-contact-hero p  { font-size: 1.05rem; color: var(--gray-500); }

/* Quick bar */
.gss-quick-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 13px 0; }
.gss-quick-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.gss-quick-item { display: flex; align-items: center; gap: 8px; font-size: .87rem; font-weight: 500; color: var(--gray-700); }
.gss-quick-item svg { color: var(--primary); flex-shrink: 0; }
.gss-quick-item a { color: var(--gray-700); }
.gss-quick-item a:hover { color: var(--primary); }

/* Main layout */
.gss-contact-main { padding: 52px 0 100px; }
.gss-contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
}

/* Form card */
.gss-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,102,255,.09), 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.gss-form-card-header {
  background: linear-gradient(135deg, #0066FF, #0047B3);
  padding: 28px 34px;
}
.gss-form-card-header h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.gss-form-card-header p  { color: rgba(255,255,255,.82); font-size: .9rem; }
.gss-form-card-body { padding: 30px 34px; }

/* Fields */
.gss-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.gss-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.gss-field:last-of-type { margin-bottom: 0; }
.gss-field label { font-size: .84rem; font-weight: 600; color: var(--gray-700); }
.gss-field .req { color: var(--primary); margin-left: 2px; }
.gss-optional { color: var(--gray-400); font-weight: 400; font-size: .8rem; }
.gss-field input,
.gss-field select,
.gss-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem; color: var(--gray-800);
  background: var(--white); outline: none; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.gss-field input:focus,
.gss-field select:focus,
.gss-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,.1);
}
.gss-field-error { border-color: #EF4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.09) !important; }
.gss-field-err { font-size: .77rem; color: #DC2626; display: none; }
.gss-field textarea { resize: vertical; min-height: 124px; line-height: 1.65; }
.gss-field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px;
}

/* File upload */
.gss-file-label {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  border: 1.5px dashed var(--gray-300); border-radius: var(--radius);
  cursor: pointer; background: var(--gray-50); transition: all .2s;
  position: relative;
}
.gss-file-label:hover, .gss-file-label.drag { border-color: var(--primary); background: #EFF6FF; }
.gss-file-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--primary-xlight); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gss-file-text strong { display: block; font-size: .86rem; color: var(--gray-700); }
.gss-file-text span   { font-size: .76rem; color: var(--gray-400); }
.gss-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.gss-file-preview {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px; padding: 9px 13px;
  background: #F0FDF4; border: 1px solid #86EFAC;
  border-radius: var(--radius); font-size: .82rem; color: #166534;
}
.gss-file-remove { margin-left: auto; background: none; border: none; color: #166534; cursor: pointer; font-size: 1rem; padding: 0; }

/* Submit */
.gss-submit-btn {
  width: 100%; padding: 13px 24px; margin-top: 8px;
  background: linear-gradient(135deg, #0066FF, #0047B3);
  color: var(--white); border: none; border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .97rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 18px rgba(0,102,255,.33);
  transition: all .25s;
}
.gss-submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,102,255,.42); }
.gss-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.gss-btn-label, .gss-btn-loading { display: flex; align-items: center; gap: 9px; }
.gss-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35); border-top-color: var(--white);
  border-radius: 50%; animation: gssSpin .65s linear infinite;
}
@keyframes gssSpin { to { transform: rotate(360deg); } }
.gss-privacy-note { text-align: center; font-size: .76rem; color: var(--gray-400); margin-top: 12px; margin-bottom: 0; }

/* Alerts */
.gss-form-alert {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: .89rem; font-weight: 500;
  align-items: center; gap: 9px; margin-bottom: 18px;
}
.gss-alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }

/* Success */
.gss-form-done { text-align: center; padding: 44px 16px; }
.gss-done-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(34,197,94,.28);
}
.gss-form-done h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--gray-900); }
.gss-form-done p  { color: var(--gray-500); margin-bottom: 22px; }

/* Sidebar */
.gss-contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.gss-sidebar-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 26px;
}
.gss-sidebar-card h3 { font-size: .98rem; margin-bottom: 18px; color: var(--gray-900); }
.gss-info-items { display: flex; flex-direction: column; gap: 12px; }
.gss-info-item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 13px; background: var(--gray-50);
  border-radius: var(--radius); border: 1px solid var(--gray-100);
  transition: all .2s;
}
.gss-info-item:hover { border-color: rgba(0,102,255,.2); background: #F0F7FF; }
.gss-info-icon {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gss-icon-blue   { background: #EBF3FF; color: var(--primary); }
.gss-icon-green  { background: #F0FDF4; color: #22C55E; }
.gss-icon-orange { background: #FFF7ED; color: #F97316; }
.gss-icon-purple { background: #F5F3FF; color: #8B5CF6; }
.gss-info-text strong { display: block; font-size: .75rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.gss-info-text a, .gss-info-text span { font-size: .88rem; color: var(--gray-800); font-weight: 500; word-break: break-word; }
.gss-info-text a:hover { color: var(--primary); }

.gss-wa-card {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-lg); padding: 22px; color: var(--white); text-align: center;
}
.gss-wa-card h3 { color: var(--white); font-size: .98rem; margin-bottom: 5px; }
.gss-wa-card p  { color: rgba(255,255,255,.84); font-size: .83rem; margin-bottom: 14px; }
.gss-wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; background: var(--white); color: #128C7E;
  border-radius: 999px; font-weight: 700; font-size: .88rem;
  transition: all .2s; text-decoration: none;
}
.gss-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.18); color: #128C7E; }

.gss-hours-card {
  background: #F0F7FF; border: 1px solid rgba(0,102,255,.12);
  border-radius: var(--radius-lg); padding: 22px;
}
.gss-hours-card h3 { color: var(--gray-900); font-size: .95rem; margin-bottom: 14px; }
.gss-hours-row {
  display: flex; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid rgba(0,102,255,.08); font-size: .85rem;
}
.gss-hours-row:last-child { border-bottom: none; }
.gss-hours-row span:first-child { color: var(--gray-600); }
.gss-hours-row span:last-child  { color: var(--gray-800); font-weight: 600; }
.gss-hours-row.today span { color: var(--primary); font-weight: 700; }

/* Contact page responsive */
@media (max-width: 1024px) {
  .gss-contact-layout { grid-template-columns: 1fr; }
  .gss-contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .gss-sidebar-card, .gss-wa-card, .gss-hours-card { flex: 1 1 260px; }
}
@media (max-width: 768px) {
  .gss-contact-hero { padding: calc(var(--navbar-h) + 36px) 0 32px; }
  .gss-form-grid-2  { grid-template-columns: 1fr; }
  .gss-form-card-body   { padding: 22px 18px; }
  .gss-form-card-header { padding: 22px 18px; }
  .gss-quick-inner  { gap: 16px; }
  .gss-contact-sidebar  { flex-direction: column; }
}

/* ============================================================
   NEW FOOTER — Matches screenshot design
   ============================================================ */
.gss-footer {
  background: #0D1117;
  padding: 72px 0 0;
  position: relative;
}
.gss-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,102,255,.5) 50%, transparent 100%);
}

/* Grid: brand | services | company | legal | contact */
.gss-footer-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1.2fr 0.9fr 0.8fr 1.4fr !important;
  gap: 48px !important;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start !important;
}

/* Brand column */
.gss-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}
.gss-footer-logo-icon { flex-shrink: 0; }
.gss-footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.gss-footer-logo-accent { color: #0066FF; }

.gss-footer-tagline {
  color: #94A3B8;
  font-size: .875rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

/* Social icons — matching screenshot style */
.gss-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gss-social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.gss-social-btn:hover {
  background: #0066FF;
  border-color: #0066FF;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,102,255,.35);
}

/* Column headings */
.gss-footer-heading {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Link lists */
.gss-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gss-footer-links li a {
  color: #94A3B8;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.gss-footer-links li a:hover {
  color: var(--white);
  gap: 4px;
  padding-left: 2px;
}

/* Contact items — icon + text style from screenshot */
.gss-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gss-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.gss-footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(0,102,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066FF;
  flex-shrink: 0;
  transition: all .2s ease;
}
.gss-footer-contact-item:hover .gss-footer-contact-icon {
  background: #0066FF;
  color: var(--white);
}
.gss-footer-contact-item a,
.gss-footer-contact-item span {
  color: #94A3B8;
  font-size: .875rem;
  line-height: 1.5;
  word-break: break-word;
  transition: color .2s ease;
  text-decoration: none;
  padding-top: 6px;
}
.gss-footer-contact-item a:hover { color: var(--white); }

/* Footer bottom bar */
.gss-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: #475569;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .gss-footer-grid {
    grid-template-columns: 1.6fr 1fr 0.9fr 0.8fr 1.3fr !important;
    gap: 36px !important;
  }
}
@media (max-width: 1024px) {
  .gss-footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 40px 32px !important;
  }
  .gss-footer-brand {
    grid-column: 1 / -1 !important;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 40px;
    align-items: start;
  }
  .gss-footer-logo { grid-column: 1; grid-row: 1; }
  .gss-footer-tagline { grid-column: 1; grid-row: 2; margin-bottom: 0; max-width: 320px; }
  .gss-footer-social { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}
@media (max-width: 768px) {
  .gss-footer { padding: 56px 0 0; }
  .gss-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
  }
  .gss-footer-brand {
    grid-column: 1 / -1 !important;
    display: block;
  }
  .gss-footer-tagline { max-width: 100%; margin-bottom: 20px; }
  /* Contact spans full width on mobile */
  .gss-footer-grid > .gss-footer-col:last-child {
    grid-column: 1 / -1;
  }
  .gss-footer-contact-list { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .gss-footer-contact-item { flex: 1 1 200px; }
  .gss-footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gss-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .gss-footer-grid > .gss-footer-col:last-child { grid-column: 1; }
  .gss-footer-contact-list { flex-direction: column; }
}
