/* ===========================
   Import & Variables
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===========================
   Keyframe Animations
   =========================== */

/* Gentle float up/down */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Slow pulse glow for hero orbs */
@keyframes pulse-glow {
  0%   { opacity: 0.5; transform: scale(1); }
  50%  { opacity: 1;   transform: scale(1.12); }
  100% { opacity: 0.5; transform: scale(1); }
}

/* Subtle shimmer drift */
@keyframes drift {
  0%   { transform: translateX(0px) translateY(0px); }
  33%  { transform: translateX(12px) translateY(-8px); }
  66%  { transform: translateX(-8px) translateY(6px); }
  100% { transform: translateX(0px) translateY(0px); }
}

/* Scroll-reveal: fade up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal: fade in */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Entrance for hero content */
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Scroll-Reveal Base State
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

:root {
  --blue:      #1a56db;
  --blue-dark: #1344b0;
  --blue-light:#eff4ff;
  --blue-mid:  #3b6ef0;
  --accent:    #06b6d4;
  --white:     #ffffff;
  --light:     #f8fafc;
  --light2:    #f1f5f9;
  --text:      #1e293b;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }

/* ===========================
   Navigation
   =========================== */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo span { color: var(--blue); }

nav ul { list-style: none; display: flex; gap: 0.1rem; align-items: center; }

nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition: all 0.18s;
  letter-spacing: 0;
}

nav a:hover {
  color: var(--text);
  background: var(--light2);
}

nav a.active {
  color: var(--blue);
  font-weight: 600;
}

nav .cta-nav {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
}

nav .cta-nav:hover {
  background: var(--blue-dark);
  color: var(--white) !important;
}

nav .cta-nav.active {
  background: var(--blue-dark);
  color: var(--white);
}

/* ===========================
   Hero
   =========================== */
.hero {
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 55%, #3b82f6 100%);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite 1.5s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  animation: float 4s ease-in-out infinite, heroEntrance 0.7s ease both;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -1.5px;
  animation: heroEntrance 0.8s ease 0.15s both;
}

.hero h1 em {
  color: #93c5fd;
  font-style: normal;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  animation: heroEntrance 0.8s ease 0.3s both;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.55rem 1.4rem;
  font-size: 0.95rem;
  margin-bottom: 2.2rem;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  animation: float 5s ease-in-out infinite 0.8s, heroEntrance 0.8s ease 0.45s both;
}

.hero-price strong { color: #fde68a; font-size: 1.15rem; font-weight: 700; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: heroEntrance 0.8s ease 0.6s both; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  transition: all 0.18s;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: -0.1px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}

.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.35);
}

.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.btn-dark:hover {
  background: #0f172a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: var(--blue-light);
  color: var(--blue);
  border-color: transparent;
}

.btn-ghost:hover {
  background: #dbeafe;
  color: var(--blue-dark);
}

/* ===========================
   Page Header (inner pages)
   =========================== */
.page-header {
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 60%, #3b82f6 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
}

.page-header p {
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   Sections / Layout
   =========================== */
section { padding: 5.5rem 2rem; }

.container { max-width: 1180px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ===========================
   Feature / Steps Cards
   =========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Light bg section overrides step cards */
.bg-light .step-item {
  background: var(--white);
}

/* ===========================
   Portfolio Grid
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
  background: var(--white);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.browser-mock { position: relative; }

.browser-bar {
  background: #f1f5f9;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 5px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 21px;
  margin-left: 0.4rem;
  padding: 0 0.5rem;
  font-size: 0.7rem;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.preview-screen { height: 220px; position: relative; overflow: hidden; }

/* ===========================
   Portfolio Preview Screens
   =========================== */

/* --- Agency / Startup (Dark) --- */
.preview-agency {
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1040 100%);
  position: relative;
}
.preview-agency .ag-nav { position: absolute; top: 0; left: 0; right: 0; height: 28px; background: rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 14px; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.preview-agency .ag-nav-logo { font-size: 0.6rem; font-weight: 800; color: #a78bfa; letter-spacing: 1px; flex: 1; }
.preview-agency .ag-nav-links { display: flex; gap: 8px; }
.preview-agency .ag-nav-links span { width: 22px; height: 4px; background: rgba(255,255,255,0.25); border-radius: 2px; }
.preview-agency .ag-hero { position: absolute; top: 38px; left: 14px; right: 14px; }
.preview-agency .ag-tag { display: inline-block; background: linear-gradient(90deg, #7c3aed, #a78bfa); border-radius: 50px; padding: 2px 8px; font-size: 0.45rem; color: white; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.preview-agency .ag-h1 { font-size: 0.9rem; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.5px; }
.preview-agency .ag-h1 span { color: #a78bfa; }
.preview-agency .ag-sub { font-size: 0.5rem; color: rgba(255,255,255,0.5); margin-top: 4px; line-height: 1.4; }
.preview-agency .ag-btns { display: flex; gap: 6px; margin-top: 8px; }
.preview-agency .ag-btn { height: 16px; border-radius: 3px; font-size: 0.45rem; display: flex; align-items: center; padding: 0 8px; font-weight: 700; }
.preview-agency .ag-btn-1 { background: linear-gradient(90deg, #7c3aed, #a78bfa); color: white; }
.preview-agency .ag-btn-2 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.preview-agency .ag-orb { position: absolute; border-radius: 50%; }
.preview-agency .ag-orb-1 { width: 80px; height: 80px; background: radial-gradient(circle, rgba(124,58,237,0.4) 0%, transparent 70%); bottom: 10px; right: 10px; }
.preview-agency .ag-orb-2 { width: 50px; height: 50px; background: radial-gradient(circle, rgba(167,139,250,0.3) 0%, transparent 70%); top: 30px; right: 40px; }
.preview-agency .ag-stats { position: absolute; bottom: 10px; left: 14px; display: flex; gap: 12px; }
.preview-agency .ag-stat { text-align: center; }
.preview-agency .ag-stat-num { display: block; font-size: 0.65rem; font-weight: 800; color: white; }
.preview-agency .ag-stat-label { display: block; font-size: 0.4rem; color: rgba(255,255,255,0.4); }

/* --- Restaurant & Café --- */
.preview-restaurant {
  background: #1a0e06;
  position: relative;
}
.preview-restaurant .rest-nav { position: absolute; top: 0; left: 0; right: 0; height: 26px; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: space-between; padding: 0 12px; }
.preview-restaurant .rest-logo { font-size: 0.6rem; font-weight: 700; color: #d4a853; letter-spacing: 2px; text-transform: uppercase; font-style: italic; }
.preview-restaurant .rest-nav-links { display: flex; gap: 8px; }
.preview-restaurant .rest-nav-links span { width: 18px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.preview-restaurant .rest-hero-img { position: absolute; top: 26px; left: 0; right: 0; height: 90px; background: linear-gradient(180deg, rgba(26,14,6,0.1) 0%, rgba(26,14,6,0.8) 100%); }
.preview-restaurant .rest-hero-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(212,168,83,0.15) 0%, transparent 60%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='40'%3E%3Cellipse cx='30' cy='20' rx='28' ry='18' fill='%23c0845a' opacity='0.25'/%3E%3C/svg%3E") center/cover; }
.preview-restaurant .rest-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%; }
.preview-restaurant .rest-tagline { font-size: 0.42rem; letter-spacing: 4px; color: #d4a853; text-transform: uppercase; margin-bottom: 3px; }
.preview-restaurant .rest-name { font-size: 1.1rem; font-weight: 700; color: white; letter-spacing: 1px; font-style: italic; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.preview-restaurant .rest-divider { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, #d4a853, transparent); margin: 5px auto; }
.preview-restaurant .rest-sub { font-size: 0.45rem; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; }
.preview-restaurant .rest-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center; gap: 16px; }
.preview-restaurant .rest-btn { font-size: 0.45rem; font-weight: 700; padding: 3px 10px; border-radius: 2px; color: #1a0e06; background: #d4a853; text-transform: uppercase; letter-spacing: 1px; }
.preview-restaurant .rest-info { font-size: 0.4rem; color: rgba(255,255,255,0.5); }

/* --- Trades & Services --- */
.preview-trades {
  background: #f0f4f8;
  position: relative;
}
.preview-trades .tr-nav { position: absolute; top: 0; left: 0; right: 0; height: 28px; background: #0f2744; display: flex; align-items: center; padding: 0 12px; justify-content: space-between; }
.preview-trades .tr-logo { font-size: 0.6rem; font-weight: 800; color: white; letter-spacing: 0.5px; }
.preview-trades .tr-logo span { color: #f59e0b; }
.preview-trades .tr-nav-right { display: flex; gap: 6px; align-items: center; }
.preview-trades .tr-nav-link { width: 20px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.preview-trades .tr-cta-btn { height: 16px; padding: 0 8px; background: #f59e0b; border-radius: 3px; font-size: 0.42rem; font-weight: 700; color: #0f2744; display: flex; align-items: center; }
.preview-trades .tr-hero { position: absolute; top: 28px; left: 0; right: 0; height: 95px; background: linear-gradient(105deg, #0f2744 0%, #1e4a7a 60%, #2563b0 100%); display: flex; align-items: center; padding: 0 14px; gap: 10px; }
.preview-trades .tr-hero-text { flex: 1; }
.preview-trades .tr-badge { font-size: 0.4rem; background: rgba(245,158,11,0.2); color: #fcd34d; border: 1px solid rgba(245,158,11,0.4); border-radius: 50px; padding: 1px 6px; display: inline-block; margin-bottom: 4px; }
.preview-trades .tr-title { font-size: 0.85rem; font-weight: 800; color: white; line-height: 1.2; }
.preview-trades .tr-stars { font-size: 0.5rem; color: #f59e0b; margin-top: 4px; }
.preview-trades .tr-img { width: 50px; height: 60px; background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.preview-trades .tr-services { position: absolute; bottom: 8px; left: 10px; right: 10px; display: flex; gap: 5px; }
.preview-trades .tr-service { flex: 1; background: white; border: 1px solid #e2e8f0; border-radius: 4px; padding: 5px 6px; border-top: 3px solid #0f2744; }
.preview-trades .tr-service-icon { font-size: 0.7rem; display: block; }
.preview-trades .tr-service-label { font-size: 0.38rem; font-weight: 700; color: #0f2744; display: block; margin-top: 2px; }

/* --- Beauty & Wellness --- */
.preview-salon {
  background: #faf6f1;
  position: relative;
}
.preview-salon .sl-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #b8895a, #e8c99a, #d4a870, #b8895a); }
.preview-salon .sl-nav { position: absolute; top: 4px; left: 0; right: 0; height: 28px; background: white; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.preview-salon .sl-logo { font-size: 0.65rem; font-weight: 300; letter-spacing: 6px; text-transform: uppercase; color: #3d2b1f; }
.preview-salon .sl-nav-links { display: flex; gap: 8px; }
.preview-salon .sl-nav-links span { width: 16px; height: 3px; background: #d4a870; border-radius: 1px; opacity: 0.5; }
.preview-salon .sl-hero { position: absolute; top: 32px; left: 0; right: 0; height: 90px; background: linear-gradient(135deg, #f5ebe0 0%, #e8d5b7 50%, #ddc4a0 100%); overflow: hidden; }
.preview-salon .sl-hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='%23c9a96e' stroke-width='0.5' opacity='0.3'/%3E%3Ccircle cx='40' cy='40' r='28' fill='none' stroke='%23c9a96e' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E") center/80px; }
.preview-salon .sl-hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.preview-salon .sl-hero-tagline { font-size: 0.4rem; letter-spacing: 4px; color: #b8895a; text-transform: uppercase; display: block; margin-bottom: 3px; }
.preview-salon .sl-hero-name { font-size: 0.95rem; font-weight: 300; color: #3d2b1f; letter-spacing: 4px; text-transform: uppercase; display: block; }
.preview-salon .sl-hero-line { width: 30px; height: 1px; background: #b8895a; margin: 4px auto; }
.preview-salon .sl-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 68px; background: white; display: flex; align-items: center; padding: 0 12px; gap: 8px; }
.preview-salon .sl-service { flex: 1; text-align: center; border-right: 1px solid #f0e8e0; padding: 6px 0; }
.preview-salon .sl-service:last-child { border-right: none; }
.preview-salon .sl-service-icon { font-size: 0.9rem; display: block; }
.preview-salon .sl-service-name { font-size: 0.38rem; color: #b8895a; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: 2px; }

/* --- E-Commerce / Online Shop --- */
.preview-shop {
  background: #ffffff;
  position: relative;
}
.preview-shop .sh-nav { position: absolute; top: 0; left: 0; right: 0; height: 28px; background: white; border-bottom: 2px solid #ff4757; display: flex; align-items: center; padding: 0 10px; gap: 8px; }
.preview-shop .sh-logo { font-size: 0.62rem; font-weight: 900; color: #2d2d2d; flex: 1; letter-spacing: -0.5px; }
.preview-shop .sh-logo span { color: #ff4757; }
.preview-shop .sh-nav-icons { display: flex; gap: 6px; }
.preview-shop .sh-icon { width: 16px; height: 16px; background: #f1f3f5; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; }
.preview-shop .sh-banner { position: absolute; top: 28px; left: 0; right: 0; height: 22px; background: linear-gradient(90deg, #ff4757, #ff6b6b); display: flex; align-items: center; justify-content: center; gap: 6px; }
.preview-shop .sh-banner-text { font-size: 0.45rem; color: white; font-weight: 700; letter-spacing: 0.5px; }
.preview-shop .sh-banner-badge { background: rgba(255,255,255,0.25); border-radius: 2px; padding: 1px 5px; font-size: 0.4rem; color: white; font-weight: 800; }
.preview-shop .sh-products { position: absolute; top: 50px; left: 8px; right: 8px; bottom: 8px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }
.preview-shop .sh-product { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 5px; padding: 5px; display: flex; flex-direction: column; gap: 3px; }
.preview-shop .sh-product-img { border-radius: 3px; flex: 1; position: relative; overflow: hidden; }
.preview-shop .sh-product-img::after { content: ''; position: absolute; inset: 0; border-radius: 3px; }
.preview-shop .sh-p1 .sh-product-img { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.preview-shop .sh-p2 .sh-product-img { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.preview-shop .sh-p3 .sh-product-img { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.preview-shop .sh-product-name { font-size: 0.38rem; font-weight: 600; color: #2d2d2d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview-shop .sh-product-price { font-size: 0.42rem; font-weight: 800; color: #ff4757; }
.preview-shop .sh-product-btn { height: 10px; background: #2d2d2d; border-radius: 2px; }

/* --- Creative Photography Portfolio --- */
.preview-creative {
  background: #0c0c0c;
  position: relative;
}
.preview-creative .cr-nav { position: absolute; top: 0; left: 0; right: 0; height: 26px; background: rgba(0,0,0,0.9); display: flex; align-items: center; justify-content: space-between; padding: 0 12px; z-index: 2; }
.preview-creative .cr-logo { font-size: 0.6rem; font-weight: 800; color: white; letter-spacing: 3px; text-transform: uppercase; }
.preview-creative .cr-nav-links { display: flex; gap: 10px; }
.preview-creative .cr-nav-links span { width: 18px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 1px; }
.preview-creative .cr-grid { position: absolute; top: 26px; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.preview-creative .cr-cell { position: relative; overflow: hidden; }
.preview-creative .cr-cell-1 { grid-row: span 2; background: linear-gradient(160deg, #1a1a2e, #4a1942); }
.preview-creative .cr-cell-2 { background: linear-gradient(135deg, #0f3460, #16213e); }
.preview-creative .cr-cell-3 { background: linear-gradient(135deg, #533483, #1a1a2e); }
.preview-creative .cr-cell-4 { background: linear-gradient(135deg, #e94560, #0f3460); }
.preview-creative .cr-cell-5 { background: linear-gradient(135deg, #f5a623, #e94560); }
.preview-creative .cr-cell-1::after { content: 'JANE\ADESIGNS'; white-space: pre; position: absolute; bottom: 10px; left: 10px; font-size: 0.55rem; font-weight: 800; color: white; line-height: 1.2; letter-spacing: 3px; text-transform: uppercase; }
.preview-creative .cr-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5)); }

/* --- Corporate / Professional Services --- */
.preview-corporate {
  background: #f8fafc;
  position: relative;
}
.preview-corporate .co-nav { position: absolute; top: 0; left: 0; right: 0; height: 28px; background: white; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; padding: 0 12px; justify-content: space-between; }
.preview-corporate .co-logo { font-size: 0.6rem; font-weight: 800; color: #1a56db; letter-spacing: -0.3px; }
.preview-corporate .co-nav-links { display: flex; gap: 8px; }
.preview-corporate .co-nav-links span { width: 22px; height: 4px; background: #e2e8f0; border-radius: 2px; }
.preview-corporate .co-nav-btn { height: 16px; padding: 0 8px; background: #1a56db; border-radius: 3px; font-size: 0.42rem; font-weight: 700; color: white; display: flex; align-items: center; }
.preview-corporate .co-hero { position: absolute; top: 28px; left: 0; right: 0; height: 100px; background: linear-gradient(135deg, #0f2060 0%, #1a56db 55%, #3b82f6 100%); padding: 12px 14px; }
.preview-corporate .co-hero-label { font-size: 0.4rem; color: rgba(255,255,255,0.7); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 4px; }
.preview-corporate .co-hero-h1 { font-size: 0.82rem; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.3px; }
.preview-corporate .co-hero-h1 span { color: #93c5fd; }
.preview-corporate .co-hero-sub { font-size: 0.45rem; color: rgba(255,255,255,0.65); margin-top: 5px; line-height: 1.4; }
.preview-corporate .co-hero-btns { display: flex; gap: 5px; margin-top: 7px; }
.preview-corporate .co-hero-btn1 { height: 14px; padding: 0 8px; background: white; color: #1a56db; border-radius: 2px; font-size: 0.4rem; font-weight: 700; display: flex; align-items: center; }
.preview-corporate .co-hero-btn2 { height: 14px; padding: 0 8px; background: rgba(255,255,255,0.15); color: white; border-radius: 2px; font-size: 0.4rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; }
.preview-corporate .co-cards { position: absolute; bottom: 8px; left: 10px; right: 10px; display: flex; gap: 5px; }
.preview-corporate .co-card { flex: 1; background: white; border: 1px solid #e2e8f0; border-radius: 4px; padding: 6px 7px; border-top: 3px solid #1a56db; }
.preview-corporate .co-card-icon { font-size: 0.7rem; display: block; margin-bottom: 3px; }
.preview-corporate .co-card-title { font-size: 0.42rem; font-weight: 700; color: #1e293b; display: block; }

.portfolio-card-info { padding: 1.4rem 1.5rem; }
.portfolio-card-info h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.portfolio-card-info p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.8rem; }

.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.65rem; border-radius: 50px; background: var(--light2); color: var(--muted); border: 1px solid var(--border); }
.tag-price { background: var(--blue-light); color: var(--blue); border-color: #bfdbfe; }

/* ===========================
   Pricing
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.22s;
  background: var(--white);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 100%);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(26,86,219,0.3);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.pricing-card.featured h3 { color: #93c5fd; }

.pricing-price { font-size: 3rem; font-weight: 900; line-height: 1; margin: 1.2rem 0 0.25rem; color: var(--text); letter-spacing: -1px; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-price sup { font-size: 1.4rem; font-weight: 700; vertical-align: super; }

.pricing-period { font-size: 0.83rem; color: var(--muted); margin-bottom: 2rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }

.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li { padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.6rem; color: var(--text); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.12); }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: #93c5fd; }

/* ===========================
   About
   =========================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual {
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  gap: 1rem;
  padding: 2rem;
}

.about-visual p { font-size: 0.85rem; opacity: 0.65; letter-spacing: 2px; text-transform: uppercase; text-align: center; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.75; }

.about-list { list-style: none; margin: 1.5rem 0 2rem; }
.about-list li { padding: 0.5rem 0; font-size: 0.95rem; display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text); }
.about-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===========================
   Contact
   =========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }

.contact-info-box {
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-box h3 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--white); font-weight: 700; }

.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail .icon { font-size: 1.2rem; }
.contact-detail strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 0.2rem; }
.contact-detail span { color: rgba(255,255,255,0.9); font-size: 0.92rem; }

.form-title { font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; letter-spacing: -0.5px; }
.form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 2rem; line-height: 1.65; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item h4 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; display: flex; gap: 0.7rem; align-items: flex-start; }
.faq-item h4::before { content: 'Q'; background: var(--blue-light); color: var(--blue); font-size: 0.72rem; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; margin-top: 1px; }
.faq-item p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; padding-left: 1.9rem; }

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  background: linear-gradient(160deg, #0f2060 0%, #1a56db 60%, #3b82f6 100%);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 1rem; letter-spacing: -0.8px; }
.cta-banner p { opacity: 0.8; margin-bottom: 2.2rem; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ===========================
   Floating Spheres (Inventis-style)
   =========================== */
@keyframes floating-left {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  50%  { transform: translateY(-40px) translateX(20px) rotate(8deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}
@keyframes floating-left-2 {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  50%  { transform: translateY(30px) translateX(-15px) rotate(-6deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}
@keyframes floating-right {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  50%  { transform: translateY(-35px) translateX(-20px) rotate(10deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}
@keyframes floating-right-2 {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  50%  { transform: translateY(25px) translateX(18px) rotate(-8deg); }
  100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

.hero-spheres {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-spheres .sphere {
  position: absolute;
  border-radius: 100%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.35), rgba(100,160,255,0.18) 50%, transparent 75%);
  opacity: 0.65;
}

.hero-spheres .sphere-1 {
  width: 500px; height: 500px;
  bottom: -220px; left: -120px;
  animation: floating-left 14s ease-in-out infinite alternate;
}

.hero-spheres .sphere-2 {
  width: 350px; height: 350px;
  top: -100px; left: -80px;
  animation: floating-left-2 10s ease-in-out infinite alternate;
}

.hero-spheres .sphere-3 {
  width: 600px; height: 600px;
  bottom: -280px; right: -150px;
  animation: floating-right 12s ease-in-out infinite alternate;
}

.hero-spheres .sphere-4 {
  width: 400px; height: 400px;
  top: -80px; right: -100px;
  animation: floating-right-2 9s ease-in-out infinite alternate;
}

/* Make sure hero content sits above spheres */
.hero > *:not(.hero-spheres) { position: relative; z-index: 1; }
.page-header > *:not(.hero-spheres) { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .hero-spheres .sphere-1 { width: 300px; height: 300px; }
  .hero-spheres .sphere-3 { width: 300px; height: 300px; }
  .hero-spheres .sphere-2 { width: 200px; height: 200px; }
  .hero-spheres .sphere-4 { width: 200px; height: 200px; }
}

/* ===========================
   Stats Strip
   =========================== */
.stats-strip {
  background: var(--light2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.stats-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ===========================
   Footer
   =========================== */
footer {
  background: #0f172a;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2.8rem 2rem;
  font-size: 0.85rem;
}

.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.footer-links a:hover { color: var(--white); }
footer strong { color: var(--white); }

.affiliate-btn {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.18s;
}

.affiliate-btn:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

/* ===========================
   Utility
   =========================== */
.bg-light { background: var(--light); }
.text-center { text-align: center; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.3rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  nav ul { gap: 0; }
  nav a { padding: 0.4rem 0.5rem; font-size: 0.78rem; }
  nav .cta-nav { padding: 0.4rem 0.75rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .section-title { font-size: 1.9rem; }
  .cta-banner h2 { font-size: 1.9rem; }
  .page-header h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  nav .cta-nav { display: none; }
}
