/* =============================================
   WEBCÖZÜM – PREMIUM LIGHT THEME  v4.0
   White / Indigo / Amber — Clean & Professional
   ============================================= */

/* ---- Google Fonts already loaded in HTML ---- */

/* ---- CSS Variables ---- */
:root {
  /* Core light palette */
  --bg:          #f8faff;
  --bg-alt:      #ffffff;
  --bg-section:  #f1f5ff;
  --surface:     rgba(255,255,255,0.85);
  --border:      rgba(99,102,241,0.12);
  --border-h:    rgba(99,102,241,0.28);
  --card-shadow: 0 4px 24px rgba(99,102,241,0.10);
  --card-shadow-h: 0 16px 48px rgba(99,102,241,0.18);

  /* Professional accent colors */
  --primary:     #6366f1;       /* indigo */
  --primary-d:   #4f46e5;
  --primary-l:   #818cf8;
  --accent:      #f59e0b;       /* amber */
  --accent-l:    #fbbf24;
  --emerald:     #10b981;
  --rose:        #f43f5e;
  --wa:          #25d366;

  /* Text hierarchy */
  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;

  /* Gradients */
  --grad:        linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  --grad-warm:   linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --grad-cool:   linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad-bg:     linear-gradient(160deg, #eef2ff 0%, #f8faff 50%, #fef3c7 100%);

  /* Spacing & shape */
  --nav-h:       76px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow:      0 20px 60px rgba(99,102,241,0.15);
  --shadow-glow: 0 0 40px rgba(99,102,241,0.25);

  --ease:        cubic-bezier(0.4,0,0.2,1);
  --speed:       0.3s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; outline: none; }

/* ---- Animated Background Canvas ---- */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  opacity: 0.18;
}

/* ---- Gradient Orbs ---- */
.gradient-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  animation: drift 30s infinite ease-in-out alternate;
}
.orb-1 { width: 700px; height: 700px; background: #c7d2fe; top: -200px; left: -200px; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: #fde68a; bottom: -200px; right: -150px; animation-delay: -10s; }
.orb-3 { width: 400px; height: 400px; background: #a5f3fc; top: 40%; left: 35%; animation-delay: -20s; }

@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-50px) scale(1.05); }
  100% { transform: translate(-30px,60px) scale(0.95); }
}

/* ---- Glass / Card utility ---- */
.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.card-white {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

/* ---- Gradient text ---- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  background: rgba(248,250,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(99,102,241,0.08);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(99,102,241,0.2));
}
.logo-img.sm { height: 50px; }
.logo-img.xs { height: 38px; }

.logo-accent { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-2);
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
  position: relative;
}

.nav-link:hover { color: var(--primary); background: rgba(99,102,241,0.07); }
.nav-link.active { color: var(--primary); background: rgba(99,102,241,0.1); font-weight: 600; }

.btn-auth {
  padding: 10px 22px;
  background: var(--grad);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.btn-auth:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   PAGE SYSTEM
   ============================ */
#app { padding-top: var(--nav-h); }
.page { display: none; }
.page.active {
  display: block;
  animation: pageFadeIn 0.45s ease both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   SECTION COMMONS
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 99px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   HOME – HERO
   ============================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 28px;
}

.hero-content { flex: 1 1 0; min-width: 0; }
.hero-visual  { flex: 1 1 0; min-width: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 99px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: #d97706;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: badgePop 0.6s ease both;
}
.hero-badge i { color: var(--accent); }

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -1.5px;
}

.typewriter {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  min-height: 1.15em;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 6px 20px rgba(99,102,241,0.35);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(99,102,241,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 14px;
  border: 2px solid var(--border-h);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  box-shadow: var(--card-shadow);
}
.btn-outline:hover { border-color: var(--wa); color: var(--wa); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.2); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-left: -8px;
  object-fit: cover;
  display: inline-block;
}
.trust-avatars img:first-child { margin-left: 0; }

.trust-text { font-size: 0.88rem; color: var(--text-2); }
.trust-text strong { color: var(--text); font-weight: 700; }

.trust-stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 1px; }

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}

.stat-num {
  font-size: 2.1rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}

.stat-item > .plus-sign {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  vertical-align: top;
  line-height: 1.4;
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Mockup */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mockup-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(99,102,241,0.18), 0 0 0 8px rgba(99,102,241,0.05);
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(0.4deg); }
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  box-shadow: 0 12px 40px rgba(99,102,241,0.18);
  animation: floatCard 4s ease-in-out infinite alternate;
  color: var(--text);
}
.floating-card i { font-size: 1.6rem; }
.floating-card strong { display: block; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.floating-card span { color: var(--primary); font-weight: 800; font-size: 1rem; }
.card-top { top: 30px; left: -30px; animation-delay: 0s; }
.card-bottom { bottom: 40px; right: -20px; animation-delay: 1s; }

@keyframes floatCard {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ============================
   HOME – BRANDS TICKER
   ============================ */
.brands {
  padding: 44px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}

.brands-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 24px;
  font-weight: 600;
}

.brands-track { overflow: hidden; }

.brands-slide {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.brands-slide span {
  font-size: 1rem;
  font-weight: 800;
  color: #cbd5e1;
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--speed) var(--ease);
}
.brands-slide span:hover { color: var(--primary); }

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

/* ============================
   HOME – WHY US
   ============================ */
.why-us {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 28px;
}

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

.why-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--speed) var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-h); border-color: var(--border-h); }
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.why-card:nth-child(1) .why-icon { background: rgba(99,102,241,0.1); color: #6366f1; }
.why-card:nth-child(2) .why-icon { background: rgba(16,185,129,0.1); color: #10b981; }
.why-card:nth-child(3) .why-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.why-card:nth-child(4) .why-icon { background: rgba(244,63,94,0.1);  color: #f43f5e; }

.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.why-card p  { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; }

/* ============================
   HOME – PROCESS STEPS
   ============================ */
.process-section {
  background: var(--bg-section);
  padding: 100px 28px;
}

.process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-l));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  box-shadow: var(--card-shadow);
  color: var(--primary);
  font-weight: 900;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
  position: relative;
}

.process-step:hover .step-num {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(99,102,241,0.25);
}

.step-count {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.process-step p  { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

/* ============================
   HOME – TESTIMONIALS
   ============================ */
.testimonials-section {
  padding: 100px 28px;
  background: #fff;
}

.testimonials-inner {
  max-width: 1300px;
  margin: 0 auto;
}

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

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-h); }

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: var(--card-shadow);
}
.author-info strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.author-info span   { font-size: 0.82rem; color: var(--text-3); }

/* ============================
   HOME – PRICING
   ============================ */
.pricing-section {
  background: var(--bg-section);
  padding: 100px 28px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 2px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-h); }

.pricing-card.featured {
  background: var(--grad);
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 24px 64px rgba(99,102,241,0.35);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(245,158,11,0.15);
  color: #d97706;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.pricing-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.pricing-card.featured .pricing-name { color: #fff; }

.pricing-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price sub { font-size: 1.1rem; font-weight: 600; vertical-align: bottom; margin-right: 2px; }
.pricing-card.featured .pricing-price { color: #fff; }

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.75); }

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.2); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.9); }

.pricing-features li i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-features li i {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
  cursor: pointer;
}
.btn-pricing:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.pricing-card.featured .btn-pricing {
  background: #fff;
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.pricing-card.featured .btn-pricing:hover { background: rgba(255,255,255,0.85); }

/* ============================
   HOME – CTA BANNER
   ============================ */
.cta-section {
  padding: 60px 28px;
  background: #fff;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(99,102,241,0.35);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.cta-text p  { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 480px; line-height: 1.7; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 14px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), transform var(--speed) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

/* ============================
   SERVICES PAGE
   ============================ */
.services-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow-h); border-color: var(--border-h); }

.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.5) 0%, transparent 60%);
}

.service-icon {
  position: absolute;
  bottom: 16px; left: 20px;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(99,102,241,0.45);
}

.service-body {
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-body > p { font-size: 0.92rem; color: var(--text-2); margin-bottom: 20px; line-height: 1.75; }

.service-body ul { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-body ul li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-2); }
.service-body ul li i { color: var(--emerald); font-size: 0.78rem; }

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  background: rgba(99,102,241,0.07);
  border: 1px solid var(--border-h);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.service-btn:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateX(4px); }

/* ============================
   ABOUT PAGE
   ============================ */
.about-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 28px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about-img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow-h);
}
.about-badge-float i { font-size: 1.8rem; }
.about-badge-float strong { display: block; font-weight: 700; color: var(--text); }
.about-badge-float span { color: var(--text-3); font-size: 0.8rem; }

.about-text-side h3 { font-size: 1.9rem; font-weight: 800; line-height: 1.25; margin-bottom: 20px; color: var(--text); }
.about-text-side > p { color: var(--text-2); margin-bottom: 16px; line-height: 1.85; }

.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }

.value-item { display: flex; align-items: center; gap: 18px; }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(99,102,241,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.value-item strong { display: block; font-weight: 700; font-size: 0.97rem; color: var(--text); }
.value-item p { font-size: 0.87rem; color: var(--text-2); margin: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-h); }

.team-avatar-ring {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  padding: 3px;
  background: var(--grad);
  box-shadow: 0 6px 20px rgba(99,102,241,0.25);
}
.team-avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

.team-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; color: var(--text); }
.team-card > span { color: var(--text-3); font-size: 0.84rem; }

.team-socials { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.team-socials a {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(99,102,241,0.07);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.team-socials a:hover { background: var(--primary); border-color: transparent; color: #fff; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--grad);
  box-shadow: 0 20px 60px rgba(99,102,241,0.3);
  position: relative;
  overflow: hidden;
  border: none;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; color: #fff; position: relative; z-index: 1; }

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.c-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 4px; font-weight: 600; }
.contact-item a, .contact-item span { font-weight: 600; color: #fff; font-size: 0.95rem; transition: opacity var(--speed) var(--ease); }
.contact-item a:hover { opacity: 0.75; }

.whatsapp-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 32px;
  padding: 15px;
  border-radius: 12px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  position: relative; z-index: 1;
}
.whatsapp-contact-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.whatsapp-contact-btn i { font-size: 1.3rem; }

.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 30px; color: var(--text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label { font-size: 0.85rem; color: var(--text-2); font-weight: 600; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 11px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ============================
   FOOTER
   ============================ */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 0;
  background: var(--text);
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand .logo { color: #fff; }
.footer-brand .logo-accent { color: var(--primary-l); }

.footer-brand p { color: #94a3b8; font-size: 0.9rem; margin-top: 16px; line-height: 1.75; }

.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.footer-socials a:hover { background: var(--primary); border-color: transparent; color: #fff; }

.footer-links-group h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; color: #fff; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a { color: #94a3b8; font-size: 0.9rem; transition: color var(--speed) var(--ease), padding-left var(--speed) var(--ease); }
.footer-links-group a:hover { color: var(--primary-l); padding-left: 4px; }

.footer-contact-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; color: #fff; }
.footer-contact-info a { display: flex; align-items: center; gap: 10px; color: #94a3b8; font-size: 0.9rem; margin-bottom: 14px; transition: color var(--speed) var(--ease); }
.footer-contact-info a:hover { color: var(--primary-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.82rem; color: #64748b; }

/* ============================
   AUTH MODAL
   ============================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed) var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(99,102,241,0.25);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--speed) var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: none;
  background: var(--bg);
  color: var(--text-2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease);
}
.modal-close:hover { background: var(--border); color: var(--text); }

.modal-brand { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; margin-bottom: 30px; color: var(--text); }

.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.modal-tab { flex: 1; padding: 10px; background: none; border: none; color: var(--text-3); font-weight: 600; font-size: 1rem; transition: color var(--speed) var(--ease); }
.modal-tab.active { color: var(--primary); }

.tab-indicator { position: absolute; bottom: -1px; left: 0; height: 2px; width: 50%; background: var(--grad); border-radius: 2px 2px 0 0; transition: left var(--speed) var(--ease); }
.tab-indicator.right { left: 50%; }

.modal-form { display: none; }
.modal-form.active { display: block; animation: pageFadeIn 0.3s ease both; }

.modal-form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.modal-form-group label { font-size: 0.85rem; color: var(--text-2); display: flex; align-items: center; gap: 7px; font-weight: 500; }
.modal-form-group input {
  padding: 13px 16px;
  border-radius: 11px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  width: 100%;
}
.modal-form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }

.form-row-modal { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.modal-form-extra { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-2); }
.modal-form-extra a { color: var(--primary); transition: color var(--speed) var(--ease); }
.modal-form-extra a:hover { color: var(--primary-d); }

.remember { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-2); cursor: pointer; }
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--primary); }

.modal-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-3); font-size: 0.8rem; }
.modal-divider::before, .modal-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.btn-whatsapp-login {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  border-radius: 12px;
  background: rgba(37,211,102,0.08);
  border: 1.5px solid rgba(37,211,102,0.25);
  color: #16a34a; font-weight: 700; font-size: 0.95rem;
  transition: background var(--speed) var(--ease), color var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.btn-whatsapp-login:hover { background: var(--wa); color: #fff; border-color: transparent; }

/* ============================
   FLOATING WHATSAPP
   ============================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.85rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  z-index: 800;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.wa-float:hover { transform: scale(1.12) translateY(-4px); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }

.wa-pulse {
  position: absolute; inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: pulse 2.5s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 74px; top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow-h);
  padding: 9px 16px;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ============================
   TOAST
   ============================ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  z-index: 2000;
  box-shadow: 0 8px 28px rgba(99,102,241,0.35);
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
  opacity: 0;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================
   PROFILE PAGE
   ============================ */
.profile-grid { display: grid; grid-template-columns: 300px 1fr; gap: 30px; }
.profile-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Profile Avatar (Instagram style) */
.profile-avatar-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 3px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 24px rgba(230,104,60,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-alt, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-alt, #fff);
}
.profile-avatar-letter {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #818cf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}

/* Settings toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #e2e8f0;
  border-radius: 99px;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

/* Settings panel items */
.settings-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.settings-item:last-child { border-bottom: none; }
.settings-item-label { display: flex; align-items: center; gap: 14px; }
.settings-item-label i { font-size: 1.1rem; color: var(--primary); width: 20px; }
.settings-item-label strong { display: block; font-size: 0.95rem; color: var(--text); font-weight: 600; }
.settings-item-label span { font-size: 0.82rem; color: var(--text-3); }

/* ============================
   DARK MODE
   ============================ */
body.dark {
  --bg:          #0f172a;
  --bg-alt:      #1e293b;
  --bg-section:  #1a2540;
  --surface:     rgba(30,41,59,0.9);
  --border:      rgba(99,102,241,0.18);
  --border-h:    rgba(99,102,241,0.35);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
  --card-shadow-h: 0 16px 48px rgba(0,0,0,0.55);
  --text:        #e2e8f0;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --grad-bg:     linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  background: var(--bg);
  color: var(--text);
}

body.dark .glass {
  background: rgba(30,41,59,0.8);
  border-color: var(--border);
}

body.dark .navbar {
  background: rgba(15,23,42,0.85);
}

body.dark .navbar.scrolled {
  background: rgba(15,23,42,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.3);
}

body.dark .nav-menu {
  background: #0f172a;
}

body.dark .hero-stats,
body.dark .why-card,
body.dark .service-card,
body.dark .testimonial-card,
body.dark .team-card,
body.dark .pricing-card,
body.dark .contact-form,
body.dark .modal-box {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text);
}

body.dark .brands {
  background: var(--bg-alt);
}

body.dark .process-section {
  background: var(--bg-section);
}

body.dark .testimonials-section,
body.dark .cta-section {
  background: var(--bg-alt);
}

body.dark .step-num {
  background: var(--bg-alt);
  color: var(--primary-l);
}

body.dark .modal-close {
  background: var(--bg-alt);
  color: var(--text-2);
  border-color: var(--border);
}

body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea,
body.dark .modal-form-group input {
  background: var(--bg-section);
  border-color: var(--border);
  color: var(--text);
}

body.dark .form-group select option {
  background: var(--bg-alt);
  color: var(--text);
}

body.dark .profile-avatar-inner {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
}

body.dark .toggle-slider {
  background: #334155;
}

body.dark .orb-1 { background: #3730a3; opacity: 0.15; }
body.dark .orb-2 { background: #78350f; opacity: 0.1; }
body.dark .orb-3 { background: #164e63; opacity: 0.12; }

body.dark .pricing-section {
  background: var(--bg-section);
}

body.dark .wa-tooltip {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img { height: 340px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 52px 36px; }
  .cta-actions { justify-content: center; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Navbar */
  .hamburger {
    display: flex;
    order: 3;
    z-index: 1001;
  }
  .logo {
    order: 1;
    font-size: 1.25rem;
  }
  .logo-img { height: 48px; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-alt, #fff);
    padding: 30px;
    gap: 12px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; text-align: center; width: 100%; padding: 14px; border-radius: 14px; }
  .btn-auth { width: 80%; justify-content: center; padding: 12px; font-size: 1rem; }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 32px 16px 40px;
    gap: 32px;
    min-height: unset;
  }
  .hero-visual { display: none; }
  .hero-content { order: 1; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    font-size: 0.78rem;
    margin-bottom: 0;
  }
  .stat-item { padding: 14px 12px; }
  .stat-num { font-size: 1.6rem; }

  /* Sections */
  .why-us { padding: 60px 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 18px; }
  .process-section { padding: 60px 16px; }
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-step { padding: 0 8px; }

  /* Pricing */
  .pricing-section { padding: 60px 16px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .cta-actions { justify-content: center; flex-direction: column; align-items: center; width: 100%; }
  .btn-cta-white, .btn-cta-outline { width: 100%; max-width: 300px; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-page { padding: 60px 16px; }

  /* About */
  .about-page { padding: 60px 16px; }

  /* Contact */
  .contact-page { padding: 60px 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 28px 20px; }
  .contact-form { padding: 28px 20px; }

  /* Profile */
  .profile-grid { grid-template-columns: 1fr; }
  .profile-features-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Modal */
  .modal-box { padding: 28px 18px; width: 100%; max-width: 100%; border-radius: var(--radius-lg); }
  .form-row-modal { grid-template-columns: 1fr; }

  /* Teams */
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }

  .logo-img { height: 40px; }

  .hero { padding: 24px 14px 32px; }
  .hero-title { font-size: 1.8rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.92rem; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-item + .stat-item::before { width: 80%; height: 1px; left: 10%; top: 0; bottom: auto; }
  .stat-num { font-size: 1.5rem; }

  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }

  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.9rem; }
  .section-badge { font-size: 0.7rem; }

  .btn-primary, .btn-outline { font-size: 0.9rem; padding: 12px 20px; }

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

  .footer-top { padding: 40px 16px 28px; }

  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
  .wa-tooltip { display: none; }

  .brands-slide { gap: 36px; }
  .brands-slide span { font-size: 0.85rem; }

  .process-step { padding: 0; }
  .step-num { width: 72px; height: 72px; font-size: 1.5rem; }

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

  .modal-box { padding: 20px 14px; }
  .modal-form-group input { padding: 11px 12px; }

  .cta-text h2 { font-size: 1.5rem; }
  .cta-text p { font-size: 0.9rem; }
}
