/* ═══════════════════════════════════════════════════════
   NEXTGOAL365 — PREMIUM STARTUP CSS
   Design: Dark hero / White sections / Electric accent
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════════════════ */

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

:root {
  --bg-dark:    #080B14;
  --bg-dark2:   #0D1120;
  --bg-light:   #F8F9FC;
  --bg-white:   #FFFFFF;
  --text-light: #EEF0FB;
  --text-muted: #8A93B2;
  --text-dark:  #0E1228;
  --text-body:  #3D4468;

  --accent-1:   #4A7BF7;   /* electric blue */
  --accent-2:   #8B5CF6;   /* violet */
  --accent-3:   #06D6A0;   /* mint green */
  --accent-hot: #FF6B6B;   /* coral red */

  --grad-main:  linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  --grad-glow:  linear-gradient(135deg, #4A7BF720, #8B5CF620);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(74,123,247,.12);
  --shadow-md:  0 8px 32px rgba(74,123,247,.18);
  --shadow-lg:  0 20px 60px rgba(8,11,20,.25);
  --shadow-card: 0 4px 24px rgba(14,18,40,.08);

  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-1);
  background: rgba(74,123,247,.1);
  border: 1px solid rgba(74,123,247,.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-accent {
  position: relative;
}
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-main);
  border-radius: 2px;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-main);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(74,123,247,.35);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,123,247,.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid rgba(14,18,40,.15);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  transform: translateY(-2px);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8,11,20,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
}
.logo-accent { color: var(--accent-1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.08); }

.btn-nav {
  background: rgba(74,123,247,.15);
  border: 1px solid rgba(74,123,247,.4);
  color: var(--accent-1);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--grad-main);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,123,247,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,123,247,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,123,247,.25) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,214,160,.15) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: orbFloat1 12s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,123,247,.1);
  border: 1px solid rgba(74,123,247,.3);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-3);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(6,214,160,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(6,214,160,.25); }
  50% { box-shadow: 0 0 0 6px rgba(6,214,160,.1); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub em {
  color: var(--accent-3);
  font-style: normal;
  font-weight: 500;
}

.br-desktop { display: block; }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-ctas .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.2);
}
.hero-ctas .btn-ghost:hover {
  border-color: white;
  color: white;
  background: rgba(255,255,255,.08);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  object-fit: cover;
}
.proof-avatars img:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.hero-social-proof strong { color: white; }

.hero-ticker {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
  background: rgba(255,255,255,.02);
}
.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.ticker-dot { color: var(--accent-1) !important; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.0), rgba(255,255,255,.3));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ── PROBLEM → SOLUTION ────────────────────────────── */
.problem-solution {
  background: var(--bg-light);
  padding: 100px 0;
}

.problem-solution .section-title {
  max-width: 600px;
  margin-bottom: 56px;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}

.ps-col {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(14,18,40,.06);
}

.ps-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ps-col-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.ps-icon { font-size: 24px; }

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ps-list li {
  font-size: 15px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-list li {
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.problem-list li::before { content: '✗'; font-weight: 700; }

.solution-list li {
  color: #065F46;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}
.solution-list li::before { content: '✓'; font-weight: 700; }

.ps-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.arrow-circle {
  width: 52px; height: 52px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: var(--shadow-md);
}

.ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  background: white;
  border: 1px solid rgba(14,18,40,.07);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

/* ── SERVICES ──────────────────────────────────────── */
.services {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74,123,247,.4), transparent);
}

.services .section-title,
.services .section-label { color: white; }
.services .section-sub { color: rgba(255,255,255,.55); }

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

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(74,123,247,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,123,247,.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(74,123,247,.15);
  border: 1px solid rgba(74,123,247,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}
.service-icon { font-size: 24px; }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  position: relative;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
}
.service-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(74,123,247,.1);
  border: 1px solid rgba(74,123,247,.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── HOW IT WORKS ──────────────────────────────────── */
.how-it-works {
  background: var(--bg-light);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(14,18,40,.06);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,123,247,.2);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  opacity: .3;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}
.step-timeline {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(74,123,247,.1);
  border: 1px solid rgba(74,123,247,.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.step-connector {
  color: var(--accent-1);
  font-size: 18px;
  letter-spacing: 2px;
  opacity: .4;
  text-align: center;
  flex-shrink: 0;
}

.hiw-cta { text-align: center; }

/* ── PORTFOLIO ─────────────────────────────────────── */
.portfolio {
  background: var(--bg-dark);
  padding: 100px 0;
}
.portfolio .section-title,
.portfolio .section-label { color: white; }
.portfolio .section-sub { color: rgba(255,255,255,.55); }

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

.portfolio-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,123,247,.3);
  box-shadow: 0 20px 50px rgba(74,123,247,.15);
}

.portfolio-preview { padding: 16px; padding-bottom: 0; }

.preview-mockup {
  background: #1A1D2E;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.mockup-bar {
  background: #252840;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.mockup-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-bar span:nth-child(1) { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FFBD2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }

.mockup-hero {
  height: 110px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hotel-bg  { background: linear-gradient(135deg, #7B3F1E 0%, #C9914A 100%); }
.nature-bg { background: linear-gradient(135deg, #1A3A1A 0%, #4A7C4A 100%); }
.yoga-bg   { background: linear-gradient(135deg, #2D2040 0%, #7B5EA7 100%); }
.artist-bg { background: linear-gradient(135deg, #1A1A2E 0%, #E84393 70%); }
.coastal-bg{ background: linear-gradient(135deg, #0B2545 0%, #1A6B8A 100%); }

.mockup-overlay {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.mockup-tag {
  font-size: 9px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mockup-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.mockup-body {
  padding: 12px 14px;
}
.mockup-line {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  margin-bottom: 6px;
}
.w-80 { width: 80%; }
.w-60 { width: 60%; }
.mockup-cards {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.mockup-mini-card {
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
}

.portfolio-info {
  padding: 24px;
}
.portfolio-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.portfolio-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.portfolio-info p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 14px;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.portfolio-tags span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 3px 10px;
  border-radius: 100px;
}
.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-1);
  transition: var(--transition);
}
.portfolio-link:hover { gap: 10px; }

.portfolio-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-glow);
  border: 1px dashed rgba(74,123,247,.3);
  min-height: 300px;
}
.cta-card-inner { text-align: center; padding: 40px 24px; }
.cta-card-icon { font-size: 48px; margin-bottom: 16px; }
.cta-card-inner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.cta-card-inner p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ── PRICING ───────────────────────────────────────── */
.pricing {
  background: var(--bg-light);
  padding: 100px 0;
}

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

.pricing-card {
  background: white;
  border: 1px solid rgba(14,18,40,.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-highlight {
  background: var(--bg-dark);
  border: 2px solid rgba(74,123,247,.4);
  box-shadow: 0 8px 40px rgba(74,123,247,.2);
  transform: scale(1.03);
}
.pricing-highlight:hover { transform: scale(1.03) translateY(-4px); }

.plan-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.plan-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
.plan-basic   { color: #0369A1; background: #E0F2FE; }
.plan-standard{ color: white; background: rgba(74,123,247,.25); border: 1px solid rgba(74,123,247,.4); }
.plan-premium { color: #7C3AED; background: #EDE9FE; }

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 8px;
}
.price-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}
.price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: auto;
  padding-bottom: 8px;
}

.pricing-highlight .price-currency,
.pricing-highlight .price-num { color: white; }
.pricing-highlight .price-note { color: rgba(255,255,255,.4); }

.plan-tagline {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(14,18,40,.07);
}
.pricing-highlight .plan-tagline { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.08); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li.disabled { color: var(--text-muted); opacity: .5; }
.pricing-highlight .plan-features li { color: rgba(255,255,255,.8); }
.pricing-highlight .plan-features li.disabled { color: rgba(255,255,255,.3); }

.plan-btn { width: 100%; justify-content: center; }

.pricing-note {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
  background: white;
  border: 1px solid rgba(14,18,40,.08);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  box-shadow: var(--shadow-card);
}
.pricing-note a {
  color: var(--accent-1);
  font-weight: 600;
}
.pricing-note a:hover { text-decoration: underline; }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials {
  background: var(--bg-dark);
  padding: 100px 0;
}
.testimonials .section-title,
.testimonials .section-label { color: white; }

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

.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(74,123,247,.3);
  background: rgba(74,123,247,.06);
  transform: translateY(-4px);
}

.testi-stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.testi-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(74,123,247,.3);
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.testi-author span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ── WHY US ────────────────────────────────────────── */
.why-us {
  background: var(--bg-light);
  padding: 100px 0;
}

.why-us .section-sub {
  font-style: italic;
  color: var(--accent-1);
  font-weight: 500;
  font-size: 18px;
}

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

.why-card {
  background: white;
  border: 1px solid rgba(14,18,40,.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,123,247,.15);
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── CONTACT ───────────────────────────────────────── */
.contact {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,123,247,.1) 0%, transparent 70%);
  top: -200px; right: -200px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.contact .section-label,
.contact .section-title { color: white; }
.contact .section-title { margin-bottom: 16px; }
.contact p { color: rgba(255,255,255,.6); margin-bottom: 40px; font-size: 16px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(74,123,247,.3);
  background: rgba(74,123,247,.08);
}
.whatsapp-item:hover { border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.08); }
.contact-item-icon { font-size: 24px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; font-weight: 600; color: white; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: rgba(255,255,255,.5); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group select option { background: var(--bg-dark2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-1);
  background: rgba(74,123,247,.08);
  box-shadow: 0 0 0 3px rgba(74,123,247,.1);
}

.plan-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: 100px;
  transition: var(--transition);
}
.radio-label:hover { border-color: var(--accent-1); color: white; }
.radio-label input[type="radio"] { accent-color: var(--accent-1); }

.contact-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-privacy {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: #050710;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-tagline {
  font-style: italic;
  color: var(--accent-1) !important;
  font-size: 13px !important;
  margin-top: 12px !important;
}
.footer-logo { margin-bottom: 4px; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  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: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--accent-1); color: white; border-color: var(--accent-1); }

.footer-links-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.footer-links-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── POPUP ─────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,11,20,.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--bg-dark2);
  border: 1px solid rgba(74,123,247,.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  transform: scale(.9) translateY(20px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}
.popup-overlay.active .popup-card {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,.15); color: white; }

.popup-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-3);
  background: rgba(6,214,160,.1);
  border: 1px solid rgba(6,214,160,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.popup-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.popup-sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-form input,
.popup-form select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.popup-form input:focus,
.popup-form select:focus {
  border-color: var(--accent-1);
  background: rgba(74,123,247,.08);
}
.popup-form input::placeholder { color: rgba(255,255,255,.25); }
.popup-form select option { background: var(--bg-dark2); }
.popup-btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ── FLOATING BUTTONS ──────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: var(--transition);
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  max-width: 52px;
}
.float-whatsapp:hover { max-width: 200px; box-shadow: 0 12px 40px rgba(37,211,102,.5); }
.float-whatsapp svg { width: 24px; height: 24px; flex-shrink: 0; }
.float-label { white-space: nowrap; opacity: 0; transition: opacity .2s .1s; }
.float-whatsapp:hover .float-label { opacity: 1; }

.float-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 999;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.float-top.visible { opacity: 1; pointer-events: all; }
.float-top:hover { background: var(--grad-main); border-color: transparent; box-shadow: var(--shadow-md); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-grid { grid-template-columns: 1fr; gap: 24px; }
  .ps-arrow { flex-direction: row; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bg-dark2);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-links.open + .btn-nav { display: flex; }
  .nav-links.open a { color: white; padding: 12px; font-size: 16px; }

  .hero-headline { font-size: 38px; }
  .br-desktop { display: none; }
  .hero-ctas { flex-direction: column; }

  .ps-grid { grid-template-columns: 1fr; }
  .ps-arrow { transform: rotate(90deg); }

  .ps-stats { grid-template-columns: 1fr; }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-highlight { transform: scale(1); }
  .pricing-highlight:hover { transform: translateY(-4px); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .float-whatsapp { bottom: 80px; }
  .float-top { bottom: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 16px 60px; }
  .hero-headline { font-size: 32px; }
  .contact-form { padding: 24px; }
  .popup-card { padding: 28px 20px; }
}
