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

/* Global input reset — kill native OS styling */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
  font-family: inherit;
}

:root {
  /* Blaustern Brand – Light Mode */
  --bg: #ffffff;
  --bg-2: #f5f4ff;
  --bg-3: #eaeaff;
  --bg-dark: #05111f;
  --bg-dark-2: #071624;

  --surface: rgba(107,106,234,0.04);
  --surface-hover: rgba(107,106,234,0.08);
  --border: rgba(107,106,234,0.1);
  --border-hover: rgba(107,106,234,0.22);

  /* Brand Colors – Blaustern Purple */
  --blue-bright: #6B6AEA;
  --accent: #6B6AEA;
  --blue-sky: #9B9AF5;
  --blue-slate: #4A477A;
  --blue-light: #E8E7FF;
  --blue-mid: #5250D6;

  --pink: #6B6AEA;
  --purple: #5250D6;
  --cyan: #9B9AF5;

  --grad-main: linear-gradient(135deg, #4B49CC 0%, #6B6AEA 50%, #9B9AF5 100%);
  --grad-pink-purple: linear-gradient(135deg, #5250D6, #6B6AEA);
  --grad-text: linear-gradient(135deg, #4B49CC, #6B6AEA, #9B9AF5);

  --text-primary: #05111f;
  --text-secondary: #4A477A;
  --text-muted: #8A87C3;

  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-sm: 12px;
  --transition: 0.14s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.1s ease;
  --shadow-card: 0 4px 24px rgba(107,106,234,0.08);
  --shadow-card-hover: 0 16px 48px rgba(107,106,234,0.16);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ===========================
   TYPOGRAPHY
=========================== */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-it {
  background: linear-gradient(135deg, #9B9AF5, #6B6AEA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(107,106,234,0.08);
  border: 1px solid rgba(107,106,234,0.15);
  border-radius: 50px;
}
.section-label.light {
  color: var(--blue-bright);
  background: rgba(107,106,234,0.08);
  border-color: rgba(107,106,234,0.15);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { margin: 0 auto 16px; }
.section-header .section-desc { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--grad-pink-purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107,106,234,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(107,106,234,0.45);
}

/* Pulse scale effect for hero CTA */
.btn-pulse {
  background: linear-gradient(135deg, #3B39B8, #5250D6, #6B6AEA, #4A5AE8);
  background-size: 300% 300%;
  box-shadow: 0 4px 24px rgba(107,106,234,0.4);
  animation: btn-scale-pulse 2s ease-in-out infinite, btn-grad-shift 6s ease infinite;
}
.btn-pulse:hover {
  animation: none;
  transform: none;
  background: var(--grad-pink-purple);
  box-shadow: 0 6px 28px rgba(107,106,234,0.5);
}
@keyframes btn-grad-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes btn-scale-pulse {
  0%   { transform: scale(1);    box-shadow: 0 4px 20px rgba(107,106,234,0.3); }
  50%  { transform: scale(1.05); box-shadow: 0 8px 32px rgba(107,106,234,0.5); }
  100% { transform: scale(1);    box-shadow: 0 4px 20px rgba(107,106,234,0.3); }
}

.btn-ghost {
  background: #fff;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--blue-bright);
  border: 1.5px solid rgba(107,106,234,0.3);
  width: 100%;
  justify-content: center;
}
.btn-outline-white:hover {
  background: rgba(107,106,234,0.06);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

.btn-primary-white {
  background: #fff;
  color: var(--blue-mid);
  width: 100%;
  justify-content: center;
  font-weight: 800;
}
.btn-primary-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.4);
}

.btn-primary-large {
  background: var(--blue-bright);
  color: #fff;
  font-size: 1rem;
  padding: 17px 36px;
  font-weight: 800;
}
.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(107,106,234,0.3);
}

.btn-ghost-light {
  background: transparent;
  color: var(--blue-bright);
  border: 1.5px solid rgba(107,106,234,0.3);
  font-size: 1rem;
  padding: 17px 36px;
  font-weight: 700;
}
.btn-ghost-light:hover {
  background: rgba(107,106,234,0.06);
  border-color: rgba(107,106,234,0.5);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue-bright);
  border: 1.5px solid rgba(107,106,234,0.3);
  width: 100%;
  justify-content: center;
}
.btn-outline-blue:hover {
  background: rgba(107,106,234,0.06);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

.btn-primary-blue {
  background: var(--grad-pink-purple);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(107,106,234,0.3);
}
.btn-primary-blue:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 32px rgba(107,106,234,0.45);
}

.btn-outline-it {
  background: transparent;
  color: var(--blue-bright);
  border: 1.5px solid rgba(107,106,234,0.3);
  width: 100%;
  justify-content: center;
}
.btn-outline-it:hover {
  background: rgba(107,106,234,0.06);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}
.btn-primary-it-white {
  background: var(--grad-pink-purple);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(107,106,234,0.3);
}
.btn-primary-it-white:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 32px rgba(107,106,234,0.45);
}
.btn-primary-it {
  background: linear-gradient(135deg, #6B6AEA, #9B9AF5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107,106,234,0.25);
}
.btn-primary-it:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(107,106,234,0.4);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(107,106,234,0.08), 0 4px 24px rgba(107,106,234,0.06);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.navbar.scrolled {
  padding: 1px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo-img {
  height: 82px;
  width: auto;
  display: block;
}
.footer-logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.12s ease;
}
.nav-links a:hover {
  color: var(--blue-bright);
  background: rgba(107,106,234,0.07);
}

.nav-cta {
  background: var(--grad-pink-purple) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(107,106,234,0.3) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(107,106,234,0.45) !important;
  background: var(--grad-pink-purple) !important;
  color: #fff !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.14s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(107,106,234,0.15);
  padding: 8px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; width: 100%; padding: 0; margin: 0; }
.mobile-link {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 16px;
  display: block;
  border-radius: var(--radius-sm);
  transition: all 0.12s;
  white-space: nowrap;
}
.mobile-link:hover { color: var(--blue-bright); background: rgba(107,106,234,0.07); }
.mobile-link-cta { color: var(--blue-bright) !important; font-weight: 700; background: rgba(107,106,234,0.07); }
.mobile-link-cta:hover { background: rgba(107,106,234,0.14) !important; }
.mobile-menu-divider { height: 1px; background: var(--border); margin: 4px 8px; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: var(--bg);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,106,234,0.12), transparent 65%);
  top: -200px; left: -250px;
  animation: drift1 10s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,154,245,0.1), transparent 65%);
  top: 50px; right: -200px;
  animation: drift2 13s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,80,214,0.08), transparent 65%);
  bottom: -50px; left: 35%;
  animation: drift1 16s ease-in-out infinite reverse;
}
.orb-cta-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,106,234,0.25), transparent 65%);
  top: -100px; left: -100px;
  animation: drift1 10s ease-in-out infinite;
}
.orb-cta-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,154,245,0.2), transparent 65%);
  bottom: -100px; right: -100px;
  animation: drift2 13s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px,30px) scale(1.06); }
  66% { transform: translate(20px,-20px) scale(0.97); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(107,106,234,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}


.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(107,106,234,0.2);
  border: 1px solid var(--border-hover);
  aspect-ratio: 9/16;
  max-height: 560px;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,17,31,0.18);
  pointer-events: none;
  border-radius: inherit;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(107,106,234,0.07);
  border: 1px solid rgba(107,106,234,0.18);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px rgba(107,106,234,0.5);
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(107,106,234,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 2px rgba(107,106,234,0.2); }
}

.hero-title {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.hero-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats { display: flex; align-items: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; padding: 0 28px; border-right: 1px solid var(--border); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-number {
  font-size: 1rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.stat-divider { display: none; }

.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.scroll-indicator {
  width: 28px; height: 44px;
  border: 2px solid rgba(107,106,234,0.25);
  border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-indicator span {
  width: 4px; height: 8px;
  background: var(--blue-bright);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===========================
   PAIN POINTS
=========================== */
.pain-points { padding: 110px 0 60px; background: #fff; position: relative; overflow: hidden; }
.pain-points::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,106,234,0.05), transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.pain-card {
  background: linear-gradient(135deg, rgba(82,80,214,0.06) 0%, rgba(107,106,234,0.1) 100%);
  border: 1px solid rgba(107,106,234,0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(107,106,234,0.07);
}
.pain-card:hover {
  border-color: rgba(107,106,234,0.4);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 32px rgba(107,106,234,0.15);
  background: linear-gradient(135deg, rgba(82,80,214,0.09) 0%, rgba(107,106,234,0.15) 100%);
}

.pain-icon {
  width: 60px; height: 60px;
  background: rgba(107,106,234,0.12);
  border: 1px solid rgba(107,106,234,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--blue-bright);
  transition: all var(--transition);
}
.pain-card:hover .pain-icon { transform: scale(1.1) rotate(-5deg); background: rgba(107,106,234,0.14); }

.pain-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--text-primary); }
.pain-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ===========================
   SERVICES
=========================== */
.services { padding: 60px 0 110px; background: var(--bg); position: relative; }
.services::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,154,245,0.06), transparent 70%);
  bottom: -200px; left: -200px;
  pointer-events: none;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.service-card:nth-child(1) { border-radius: 28px 28px 8px 28px; }
.service-card:nth-child(2) { border-radius: 28px 28px 28px 8px; }
.service-card:nth-child(3) { border-radius: 28px 8px 28px 28px; }
.service-card:nth-child(4) { border-radius: 8px 28px 28px 28px; }

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-pink-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(107,106,234,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card.featured {
  background: linear-gradient(135deg, #F0EFFF, #EAEAFF);
  border-color: rgba(107,106,234,0.2);
}
.service-card.featured:hover { box-shadow: 0 20px 60px rgba(107,106,234,0.15); }

.service-number { font-size: 0.7rem; font-weight: 800; color: var(--blue-bright); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; opacity: 0.7; }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(107,106,234,0.08);
  border: 1px solid rgba(107,106,234,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--blue-bright);
  transition: all var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-8deg); background: rgba(107,106,234,0.14); }

.service-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; color: var(--text-primary); }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }

/* Services Category Layout */
.services-category { margin-bottom: 80px; }
.services-category:last-child { margin-bottom: 0; }
.services-cat-header { margin-bottom: 40px; }
.cat-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--text-primary); }
.cat-title--it { background: linear-gradient(135deg, #6B6AEA, #9B9AF5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cat-desc { font-size: 0.97rem; color: var(--text-secondary); max-width: 580px; line-height: 1.7; }

.cat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.cat-badge--social { background: rgba(107,106,234,0.08); border: 1px solid rgba(107,106,234,0.2); color: var(--blue-bright); }
.cat-badge--it { background: rgba(155,154,245,0.1); border: 1px solid rgba(155,154,245,0.25); color: #6B6AEA; }

.services-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 20px 0 60px; color: var(--text-muted);
}
.services-divider::before, .services-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.services-divider span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 2rem; font-weight: 900; }

/* IT service card variants */
.service-card--it { border-color: rgba(155,154,245,0.15); }
.service-card--it::after { background: linear-gradient(135deg, #6B6AEA, #9B9AF5) !important; }
.service-card--it:hover { border-color: rgba(107,106,234,0.25) !important; box-shadow: 0 20px 60px rgba(107,106,234,0.12) !important; }
.service-card--it.featured-it { background: linear-gradient(135deg, #F0EFFF, #EAEAFF); border-color: rgba(107,106,234,0.2) !important; }
.service-number--it { color: #9B9AF5 !important; }
.service-icon--it { background: rgba(155,154,245,0.1) !important; border: 1px solid rgba(155,154,245,0.2) !important; color: #6B6AEA !important; }
.service-card--it:hover .service-icon--it { background: rgba(107,106,234,0.14) !important; }

.it-grid { grid-template-columns: repeat(3, 1fr) !important; }
.it-grid .service-card:nth-child(1) { border-radius: 28px 8px 28px 28px; }
.it-grid .service-card:nth-child(2) { border-radius: 28px; }
.it-grid .service-card:nth-child(3) { border-radius: 8px 28px 28px 28px; }
.it-grid .service-card:nth-child(4) { border-radius: 28px 28px 8px 28px; }
.it-grid .service-card:nth-child(5) { border-radius: 28px; }
.it-grid .service-card:nth-child(6) { border-radius: 28px 28px 28px 8px; }

.cat-cta { margin-top: 32px; }

/* IT Partner Banner */
.it-partner-banner {
  margin-top: 48px;
  padding: 28px 36px;
  background: linear-gradient(135deg, #F0EFFF, #EAEAFF);
  border: 1px solid rgba(107,106,234,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.it-partner-text { display: flex; flex-direction: column; gap: 4px; }
.it-partner-text strong { font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.it-partner-text span { font-size: 0.88rem; color: var(--text-secondary); }

/* ===========================
   PACKAGES – SOCIAL MEDIA
=========================== */
.packages { padding: 110px 0; background: var(--bg-2); position: relative; overflow: hidden; }
.packages--social { background: var(--bg-2); }

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

.package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 28px;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.package-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.package-card.popular {
  background: #fff;
  border: 1.5px solid rgba(107,106,234,0.35);
  box-shadow: 0 8px 48px rgba(107,106,234,0.18);
  transform: scale(1.03);
}
.package-card.popular:hover { transform: scale(1.03) translateY(-8px); box-shadow: 0 24px 80px rgba(107,106,234,0.28); }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-pink-purple);
  color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107,106,234,0.35);
}

.package-tier { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 8px; }
.package-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-period { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.package-tagline { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }



.package-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.package-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: var(--text-secondary); line-height: 1.45; }
.package-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-bright); }

.packages-note { text-align: center; margin-top: 48px; font-size: 0.88rem; color: var(--text-muted); }
.packages-note a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ===========================
   ABOUT
=========================== */
.about { padding: 110px 0; background: var(--bg-2); position: relative; }

.about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 420px; }
.about-card-stack { position: relative; width: 100%; height: 100%; }

.about-stat-card {
  position: absolute;
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 4px;
  backdrop-filter: blur(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.about-stat-card:first-child {
  background: #fff;
  border: 1px solid rgba(107,106,234,0.15);
  top: 30px; left: 0; width: 220px;
  transform: rotate(-2deg);
}
.about-stat-card:first-child:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-card-hover); }
.about-stat-card.accent {
  background: linear-gradient(135deg, #F0EFFF, #EAEAFF);
  border: 1px solid rgba(107,106,234,0.2);
  top: 180px; right: 0; width: 210px;
  transform: rotate(2deg);
}
.about-stat-card.accent:hover { transform: rotate(0deg) translateY(-4px); }

.about-stat-value { font-size: 1.3rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.about-badge-pill {
  position: absolute; bottom: 50px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(107,106,234,0.06);
  border: 1px solid rgba(107,106,234,0.15);
  border-radius: 50px; padding: 10px 20px;
  font-size: 0.78rem; font-weight: 700;
  color: var(--blue-bright);
}
.badge-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  width: 7px; height: 7px; border-radius: 50%;
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Decorative rings */
.about-visual::before {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  border: 1px solid rgba(107,106,234,0.08);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-ring 20s linear infinite;
}
.about-visual::after {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  border: 1px dashed rgba(155,154,245,0.12);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: spin-ring 14s linear infinite reverse;
}
@keyframes spin-ring {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.about-content .section-label { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.about-content .btn { margin-top: 16px; }

/* ===========================
   CLIENTS
=========================== */
.clients { padding: 110px 0; background: var(--bg); }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 130px; transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.client-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}
.client-logo-placeholder { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-align: center; }
.client-logo { max-height: 60px; max-width: 160px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: all var(--transition); }
.client-card:hover .client-logo { filter: grayscale(0); opacity: 1; }
.client-card--link { text-decoration: none; cursor: pointer; }
.client-card--link:hover { border-color: var(--primary); }

/* ===========================
   PARTNER SLIDER
=========================== */
.partner-slider-section { padding: 60px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.partner-slider-section .container { text-align: center; }
.partner-slider-track-wrap { overflow: hidden; width: 100%; }
.partner-slider-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: partner-scroll 28s linear infinite;
}
.partner-slider-track:hover { animation-play-state: paused; }
.partner-slide {
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; height: 80px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 28px;
  flex-shrink: 0; transition: all var(--transition);
  text-decoration: none; cursor: pointer;
}
.partner-slide:hover { border-color: var(--primary); box-shadow: var(--shadow-card-hover); }
.partner-slide img { max-height: 48px; max-width: 140px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.65; transition: all var(--transition); }
.partner-slide:hover img { filter: grayscale(0); opacity: 1; }
.partner-slide--text { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.partner-slide--dark { background: #fff; }
.partner-slide--dark img { mix-blend-mode: multiply; }
@keyframes partner-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   CTA SECTION – dark contrast
=========================== */
.cta-section {
  padding: 130px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--text-primary); }
.cta-desc { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 52px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   NEWSLETTER SECTION
=========================== */
/* --- Newsletter Section (Home + Blog Index) --- */
.newsletter-section {
  padding: 64px 0;
  background: #f5f4ff;
  background: var(--bg-2, #f5f4ff);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,106,234,0.05), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B6AEA;
  background: rgba(107,106,234,0.08);
  padding: 4px 11px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.newsletter-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #05111f;
  margin-bottom: 8px;
}
.newsletter-desc {
  font-size: 0.84rem;
  color: #4A477A;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 380px;
}
.newsletter-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 360px;
}
.newsletter-fields .nl-btn-wrap {
  width: 100%;
}
.newsletter-section input[type="text"],
.newsletter-section input[type="email"],
.newsletter-fields input[type="text"],
.newsletter-fields input[type="email"],
.newsletter-fields input {
  display: block !important;
  width: 100% !important;
  height: 36px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border: 1.5px solid rgba(107,106,234,0.15) !important;
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  color: #05111f !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 36px !important;
}
.newsletter-section input[type="text"]:focus,
.newsletter-section input[type="email"]:focus,
.newsletter-fields input:focus {
  border-color: #6B6AEA !important;
  box-shadow: 0 0 0 3px rgba(107,106,234,0.10) !important;
}
.newsletter-section input::placeholder,
.newsletter-fields input::placeholder {
  color: #8A87C3 !important;
  line-height: normal !important;
}
.newsletter-fields .btn {
  width: 100%;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.84rem;
}
.newsletter-legal {
  font-size: 0.7rem;
  color: #8A87C3;
  margin-top: 10px;
  line-height: 1.5;
}
.newsletter-legal a {
  color: #6B6AEA;
  text-decoration: underline;
}

/* Newsletter status messages */
.nl-msg {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  max-width: 360px;
}
.nl-msg.nl-ok      { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.nl-msg.nl-exists  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.nl-msg.nl-err     { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 24px; max-width: 1200px; margin: 0 auto; gap: 40px;
}
.footer .logo { color: var(--text-primary); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 42px; height: 42px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition);
}
.social-link:hover {
  background: rgba(107,106,234,0.1);
  border-color: rgba(107,106,234,0.3);
  color: var(--blue-bright);
  transform: translateY(-3px);
}

.footer-links { display: flex; justify-content: flex-end; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-bright); margin-bottom: 20px; opacity: 0.9; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 0.87rem; color: var(--text-muted); transition: color 0.1s; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; max-width: 1200px; margin: 0 auto; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.1s; }
.footer-legal a:hover { color: var(--blue-bright); }

/* ===========================
   SUBPAGE LAYOUTS
=========================== */
.subpage-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.subpage-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.subpage-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.subpage-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

/* ===========================
   RESPONSIVE
=========================== */
/* ── 1200px ── */
@media (max-width: 1200px) {
  .hero-content { gap: 36px; }
  .packages-grid { gap: 16px; }
  .nav-links a { padding: 8px 10px; font-size: 0.85rem; }
  .nav-cta { padding: 8px 14px !important; font-size: 0.82rem !important; }
}

/* ── 1100px (Half screen on 1920px / tablet landscape edge) ── */
@media (max-width: 1100px) {
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
  .stat { border-right: none; padding: 10px 14px; background: rgba(107,106,234,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 960px (Half screen) ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-title { font-size: clamp(2.4rem, 7vw, 3.2rem); }
  .hero-subtitle { text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 380px; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
  .stat { border-right: none; padding: 10px 14px; background: rgba(107,106,234,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); }
  .stat-divider { display: none; }
  .hero-video-wrap { max-height: 520px; width: 100%; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .package-card.popular { transform: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 300px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .it-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .section-title { font-size: clamp(1.9rem, 5vw, 2.6rem); }
  .pain-points, .services, .packages, .about, .clients, .cta-section { padding: 72px 0; }
}

/* ── 1024px (Tablet landscape) ── */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .package-card.popular { transform: none; }
  .package-card.popular:hover { transform: translateY(-8px); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: auto; }
  .about-card-stack { display: flex; flex-direction: row; gap: 14px; position: static; height: auto; }
  .about-stat-card { position: static; flex: 1; transform: none !important; width: auto; }
  .about-badge-pill { position: static; margin-top: 12px; }
  .about-visual::before, .about-visual::after { display: none; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 768px (Tablet portrait) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero { padding: 110px 0 56px; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 3.6rem); }
  .hero-subtitle { font-size: 1rem; max-width: 100%; text-align: center; }
  .hero-badge { margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 12px; margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; max-width: 380px; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
  .stat { border-right: none; padding: 10px 14px; background: rgba(107,106,234,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); }
  .stat-number { font-size: 0.9rem; }
  .stat-label { font-size: 0.72rem; }
  .stat-divider { display: none; }
  .hero-video-wrap { aspect-ratio: 9/16; max-height: 440px; width: 100%; border-radius: var(--radius-lg); }

  /* Sections - reduce padding */
  .pain-points, .services, .packages, .about, .clients, .cta-section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .subpage-title { font-size: clamp(2rem, 7vw, 3rem); }
  .cta-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }

  /* Grids */
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .it-grid { grid-template-columns: 1fr !important; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid--large { grid-template-columns: 1fr; }
  .packages-grid { max-width: 100%; }

  /* About - stack cards cleanly */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: auto; }
  .about-card-stack { display: flex; flex-direction: row; gap: 14px; position: static; height: auto; }
  .about-stat-card { position: static; flex: 1; transform: none !important; }
  .about-badge-pill { position: static; margin-top: 12px; }
  .about-visual::before, .about-visual::after { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* Misc */
  .service-card { border-radius: var(--radius-lg) !important; }
  .it-partner-banner { flex-direction: column; align-items: center; text-align: center; }
  .post-container { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
}

/* ── 480px (Mobile) ── */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* Hero */
  .hero { padding: 100px 0 48px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .hero-actions { gap: 10px; margin-bottom: 32px; }
  .hero-actions .btn { max-width: 100%; }
  .hero-stats { gap: 8px; }
  .stat { padding: 8px 12px; }
  .hero-video-wrap { max-height: 380px; }

  /* Sections */
  .pain-points, .services, .packages, .about, .clients, .cta-section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .subpage-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .cta-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  /* Services */
  .service-card { padding: 24px 20px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .service-card h3 { font-size: 1.1rem; }
  .services-category { margin-bottom: 48px; }
  .cat-cta { text-align: center; }
  .cat-cta .btn { width: 100%; justify-content: center; }

  /* Pain cards */
  .pain-card { padding: 22px 20px; }

  /* IT partner banner */
  .it-partner-banner { text-align: center; align-items: center; padding: 24px 20px; }

  /* About cards - stack vertically on very small screens */
  .about-card-stack { flex-direction: column; }
  .about-stat-card { width: 100%; padding: 20px 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-links { flex-direction: column; width: 100%; }
  .footer-col a, .footer-col span { word-break: break-all; }
  .footer-legal { flex-direction: column; align-items: center; gap: 8px; }

  /* Newsletter */
  .newsletter-section { padding: 40px 0; }
  .newsletter-inner { max-width: 100%; }
  .newsletter-fields { max-width: 100%; }
  .newsletter-title { font-size: clamp(1.3rem, 5vw, 1.6rem); }

  /* Misc */
  .packages-grid { max-width: 100%; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card { border-radius: var(--radius); }
  .contact-form-wrap { padding: 28px 18px !important; }
  .form-row { grid-template-columns: 1fr !important; }
}
