/* ========================================
   BRANDFILLS — MAIN STYLESHEET v2
   Font: Montserrat | Dark: Black+Orange | Light: White+Orange
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-dark: #CC5500;
  --orange-glow: rgba(255, 107, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Montserrat', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 24px rgba(255,107,0,0.25);
}

/* DARK THEME */
[data-theme="dark"] {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --bg4: #1e1e1e;
  --border: rgba(255,255,255,0.07);
  --text: #f2f2f2;
  --text2: #999;
  --text3: #555;
  --card-bg: #111111;
  --nav-bg: rgba(8,8,8,0.96);
  --footer-bg: #050505;
  --input-bg: #161616;
}

/* LIGHT THEME */
[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f7f7f7;
  --bg3: #efefef;
  --bg4: #e5e5e5;
  --border: rgba(0,0,0,0.08);
  --text: #0f0f0f;
  --text2: #555;
  --text3: #999;
  --card-bg: #ffffff;
  --nav-bg: rgba(255,255,255,0.96);
  --footer-bg: #080808;
  --input-bg: #f3f3f3;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font); font-weight: 700; line-height: 1.2; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ======= NAVBAR ======= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font); font-size: 1.5rem; font-weight: 800;
  color: var(--orange); letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; color: var(--text2);
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.02em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--orange-glow); }
.bf-btn-sm {
  background: var(--orange) !important; color: white !important;
  padding: 9px 22px !important; border-radius: 50px !important; font-weight: 700 !important;
}
.bf-btn-sm:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.theme-toggle:hover { background: var(--bg4); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; width: 38px; }
.nav-hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ======= HERO SLIDER — CREATIVE ANIMATED ======= */
.hero-slider {
  position: relative; width: 100%;
  height: 100vh; min-height: 620px;
  overflow: hidden; margin-top: 68px;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }

/* SLIDE WITH IMAGE */
.hero-slide img.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

/* STYLE 1: split-orange */
.hero-slide[data-style="split-orange"] {
  background: var(--bg);
}
.hero-slide[data-style="split-orange"]::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--orange);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-slide[data-style="split-orange"]::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 10px,
    rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 20px
  );
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

/* STYLE 2: dark-grid */
.hero-slide[data-style="dark-grid"] {
  background: var(--bg);
}
.hero-slide[data-style="dark-grid"]::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,107,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-slide[data-style="dark-grid"]::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,107,0,0.12) 0%, transparent 65%);
}

/* IMAGE SLIDE OVERLAY */
.hero-slide[data-style="image-slide"]::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.1) 100%);
}

/* HERO CONTENT */
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; width: 100%; padding: 0 48px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-slide[data-style="image-slide"] .hero-content { align-items: flex-start; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow); color: var(--orange);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s ease both;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: heroFadeUp 0.8s 0.15s ease both;
}
.hero-headline .accent { color: var(--orange); display: block; }
[data-theme="light"] .hero-slide[data-style="split-orange"] .hero-headline { color: var(--text); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400; color: var(--text2); line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
  animation: heroFadeUp 0.8s 0.25s ease both;
}
.hero-slide[data-style="image-slide"] .hero-sub { color: rgba(255,255,255,0.8); }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroFadeUp 0.8s 0.35s ease both;
}

/* Floating orange orbs for dark-grid */
.hero-orb {
  position: absolute; border-radius: 50%;
  background: var(--orange); filter: blur(80px);
  opacity: 0.15; z-index: 1; pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; right: -100px; top: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 250px; height: 250px; right: 200px; bottom: 50px; animation-delay: -3s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-20px,20px) scale(1.05); }
  66%     { transform: translate(20px,-15px) scale(0.96); }
}

.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--orange); width: 26px; border-radius: 4px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,107,0,0.85); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition); border: none;
}
.hero-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.1); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.88rem;
  padding: 13px 28px; border-radius: 50px;
  transition: var(--transition); letter-spacing: 0.02em;
  text-transform: uppercase; cursor: pointer;
}
.btn-primary { background: var(--orange); color: white; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,0,0.4); }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.btn-ghost { color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); background: var(--bg3); }
.btn-white { background: white; color: var(--orange-dark); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ======= SECTION ======= */
.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow); color: var(--orange);
  border: 1px solid rgba(255,107,0,0.25);
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.02em; }
.section-title span { color: var(--orange); }
.section-subtitle { color: var(--text2); font-size: 1rem; max-width: 580px; line-height: 1.75; font-weight: 400; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ======= CARDS ======= */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

/* ======= SERVICES ======= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(255,107,0,0.2); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.card-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card-text { color: var(--text2); font-size: 0.88rem; line-height: 1.7; font-weight: 400; }

/* ======= PREMIUM PACKAGES ======= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.18); border-color: rgba(255,107,0,0.25); }

/* POPULAR — highlighted */
.package-card.popular {
  background: linear-gradient(160deg, #111 0%, #1a1a1a 100%);
  border: 1.5px solid var(--orange);
  box-shadow: 0 0 40px rgba(255,107,0,0.12);
}
[data-theme="light"] .package-card.popular { background: linear-gradient(160deg, #fff 0%, #fff5ee 100%); }

/* ENTERPRISE — dark prestige */
.package-card.enterprise {
  background: linear-gradient(160deg, #0a0a0a 0%, #1c1200 100%);
  border: 1.5px solid rgba(255,107,0,0.4);
}
[data-theme="light"] .package-card.enterprise { background: linear-gradient(160deg, #1a0a00 0%, #2d1500 100%); }
[data-theme="light"] .package-card.enterprise .package-name,
[data-theme="light"] .package-card.enterprise .package-subtitle,
[data-theme="light"] .package-card.enterprise .package-features li { color: #f0f0f0; }
[data-theme="light"] .package-card.enterprise .package-price { color: var(--orange-light); }

.popular-badge, .enterprise-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 4px 20px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
}
.popular-badge { background: var(--orange); color: white; }
.enterprise-badge { background: linear-gradient(90deg, #FF6B00, #FF9500); color: white; }

.package-tier-icon {
  font-size: 2rem; margin-bottom: 16px;
  width: 52px; height: 52px;
  background: var(--orange-glow); border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
}
.package-name {
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.package-subtitle { color: var(--text2); font-size: 0.82rem; margin-bottom: 22px; font-weight: 400; }
.package-price {
  font-size: 2.6rem; font-weight: 900;
  color: var(--orange); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 4px;
}
.package-price.custom-price { font-size: 1.8rem; }
.package-price sup { font-size: 1.3rem; font-weight: 700; }
.package-price small { font-size: 0.85rem; color: var(--text2); font-weight: 400; }
.package-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.package-features { margin-bottom: 28px; flex: 1; }
.package-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-size: 0.85rem; color: var(--text2);
  border-bottom: 1px solid var(--border); font-weight: 400;
}
.package-features li:last-child { border: none; }
.package-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ======= GRID ======= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

/* ======= STATS ======= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { background: var(--card-bg); padding: 36px 28px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -0.04em; }
.stat-label { color: var(--text2); font-size: 0.82rem; margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ======= WHY CHOOSE ======= */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card {
  display: flex; gap: 18px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; transition: var(--transition);
}
.why-card:hover { border-color: rgba(255,107,0,0.3); }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--orange-glow); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; border: 1px solid rgba(255,107,0,0.2);
}
.why-content h4 { font-size: 0.95rem; margin-bottom: 7px; font-weight: 700; }
.why-content p { color: var(--text2); font-size: 0.85rem; line-height: 1.7; font-weight: 400; }

/* ======= MISSION ======= */
.mission-box {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg); padding: 52px;
  position: relative; overflow: hidden;
}
.mission-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 280px; height: 280px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.mission-box::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 220px; height: 220px; background: rgba(0,0,0,0.1); border-radius: 50%; }
.mission-box h2 { color: white; font-size: 2.2rem; margin-bottom: 18px; position: relative; z-index: 1; font-weight: 800; }
.mission-box p { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.8; position: relative; z-index: 1; max-width: 800px; font-weight: 400; }

/* ======= CLIENTS SLIDER ======= */
.clients-section { padding: 56px 0; overflow: hidden; }
.clients-track { display: flex; gap: 40px; animation: slideClients 30s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
.client-logo { height: 48px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.45); transition: var(--transition); flex-shrink: 0; }
.client-logo:hover { filter: grayscale(0) opacity(1); }
@keyframes slideClients { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======= BLOG ======= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,107,0,0.2); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-thumb-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg3), var(--bg4)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 22px; }
.blog-category { display: inline-block; background: var(--orange-glow); color: var(--orange); padding: 3px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.blog-title { font-size: 0.98rem; margin-bottom: 10px; line-height: 1.45; font-weight: 700; }
.blog-excerpt { color: var(--text2); font-size: 0.85rem; line-height: 1.65; margin-bottom: 18px; font-weight: 400; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; color: var(--text3); font-size: 0.78rem; }
.blog-read-more { color: var(--orange); font-weight: 600; font-size: 0.82rem; }
.blog-read-more:hover { text-decoration: underline; }

/* ======= CONTACT ======= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-item-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--orange-glow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--orange); }
.contact-item-text h4 { font-size: 0.78rem; color: var(--text2); margin-bottom: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; font-weight: 600; }
.contact-form-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text2); margin-bottom: 7px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-control { width: 100%; padding: 12px 14px; background: var(--input-bg); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font); font-size: 0.9rem; transition: var(--transition); outline: none; font-weight: 400; }
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-control::placeholder { color: var(--text3); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ======= PAGE HERO ======= */
.page-hero { margin-top: 68px; background: var(--bg2); padding: 72px 0; border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
.page-hero p { color: var(--text2); font-size: 1rem; max-width: 560px; margin: 14px auto 0; font-weight: 400; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--text3); font-size: 0.8rem; margin-bottom: 14px; font-weight: 500; }
.breadcrumb a { color: var(--orange); }

/* ======= CTA ======= */
.cta-section { padding: 80px 0; }
.cta-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 64px; text-align: center; }
.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; font-weight: 800; letter-spacing: -0.02em; }
.cta-box p { color: var(--text2); font-size: 1rem; margin-bottom: 30px; font-weight: 400; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.08); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ======= FOOTER ======= */
.footer { background: var(--footer-bg); border-top: 1px solid var(--border); padding-top: 72px; }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-text { font-family: var(--font); font-size: 1.6rem; font-weight: 800; color: var(--orange); display: block; margin-bottom: 10px; letter-spacing: -0.02em; }
.footer-tagline { color: var(--orange); font-weight: 600; font-size: 0.82rem; margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-about { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.75; margin-bottom: 22px; font-weight: 400; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; 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: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-links h4, .footer-services h4, .footer-contact h4 { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links ul li a, .footer-services ul li a { color: rgba(255,255,255,0.4); font-size: 0.86rem; padding: 5px 0; display: block; transition: var(--transition); font-weight: 400; }
.footer-links ul li a:hover, .footer-services ul li a:hover { color: var(--orange); padding-left: 5px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.4); font-size: 0.86rem; padding: 5px 0; font-weight: 400; }
.contact-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-list a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.contact-list a:hover { color: var(--orange); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.25); font-size: 0.82rem; font-weight: 400; }
.footer-credit { color: var(--orange); font-weight: 600; }

/* ======= ALERTS ======= */
.alert { padding: 13px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 0.88rem; font-weight: 600; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }

/* ======= ANIMATIONS ======= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; padding: 32px 24px; gap: 0; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { padding: 15px 0; font-size: 1rem; display: block; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-3, .packages-grid, .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-box { padding: 40px 22px; }
  .mission-box { padding: 36px 22px; }
  .hero-content { padding: 0 24px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-slider { min-height: 500px; height: 80vh; }
}

/* ============================================================
   PACKAGE SLIDER — DIVYAKULAM STYLE
   ============================================================ */

/* Billing toggle */
.pkg-toggle-track {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  display: inline-flex;
  gap: 2px;
}
.pkg-tog {
  padding: 9px 22px;
  border-radius: 7px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text2);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pkg-tog.active {
  background: var(--card-bg);
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.pkg-save-pill {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
}

/* Slider outer — clips overflow */
.pkg-slider-outer {
  position: relative;
  overflow: hidden;
}

/* Track — flex row, animated */
.pkg-slider-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  padding-bottom: 4px;
  align-items: stretch; /* KEY: all cards same height */
}

/* ── CARD ── */
.pkg-card {
  /* Desktop: 3 visible */
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 24px 24px; /* top=0 so banner sits flush */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.pkg-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.pkg-card.pkg-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,0,.15);
}

/* Banner */
.pkg-banner {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 0;
  margin: 0 -24px 22px;
}
.pkg-banner--popular   { background: var(--orange); color: #fff; }
.pkg-banner--enterprise{ background: var(--orange-glow); color: var(--orange); border-bottom: 1px solid rgba(255,107,0,.2); }
.pkg-banner--plain     { background: var(--bg3); color: var(--text2); border-bottom: 1px solid var(--border); }

/* Name & desc */
.pkg-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.pkg-desc {
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 18px;
  line-height: 1.5;
  min-height: 36px; /* equal height for subtitle row */
}

/* Price row */
.pkg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 2px;
  line-height: 1;
}
.pkg-price-cur {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  align-self: flex-end;
  padding-bottom: 5px;
}
.pkg-price-amt {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.05em;
  line-height: 1;
}
.pkg-price-mo {
  font-size: 0.85rem;
  color: var(--text2);
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 6px;
}
.pkg-price-note {
  font-size: 0.75rem;
  color: var(--text2);
  margin-bottom: 4px;
  min-height: 18px;
}
.pkg-price-note strong { color: var(--text); font-weight: 600; }

/* CTA button */
.pkg-btn-buy {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  margin: 18px 0 8px;
  transition: background .2s, transform .15s;
}
.pkg-btn-buy:hover { background: var(--orange-dark); transform: translateY(-1px); }
.pkg-card.pkg-featured .pkg-btn-buy { box-shadow: 0 4px 16px rgba(255,107,0,.35); }

/* Divider */
.pkg-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 14px;
}

/* Features */
.pkg-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1; /* push nothing — all cards same height via align-items:stretch */
}
.pkg-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.4;
}
[data-theme="light"] .pkg-feat-item { border-bottom-color: #f0f0f0; }
.pkg-feat-item:last-child { border-bottom: none; }
.pkg-check { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

/* Nav arrows + dots */
.pkg-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.pkg-arr {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 1.1rem;
  color: var(--text);
}
.pkg-arr:hover  { background: var(--orange); border-color: var(--orange); color: #fff; }
.pkg-arr:disabled { opacity: .3; cursor: default; pointer-events: none; }
.pkg-dots { display: flex; gap: 6px; }
.pkg-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.pkg-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* Responsive card widths */
@media(max-width:1024px) {
  .pkg-card { flex: 0 0 calc(50% - 10px); }
}
@media(max-width:640px) {
  .pkg-card { flex: 0 0 calc(80vw); }
}
