/* ============================================================
   CleanBuild — Professional CSS
   Lightweight, fast, modern, pixel-perfect
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;

  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;

  --success: #10b981;
  --danger: #ef4444;

  /* Neutrals */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,.15);

  /* Borders */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --transition-fast: 0.15s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-50);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.subscription-note {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.highlight {
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #8b5cf6, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.3);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}
.btn-nav:hover {
  background: var(--primary-dark);
}
.btn-arrow {
  transition: transform var(--transition-fast);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50) 0%, #fff 40%, var(--primary-50) 100%);
  padding: 7rem 0 3rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -200px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #8b5cf6;
  top: 40%; left: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  text-align: center;
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,.08);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(37,99,235,.15);
  animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

.hero-highlight {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border: 1px solid var(--primary-200);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
  animation: fadeInUp 0.7s ease-out 0.15s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease-out 0.25s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}

.stat {
  text-align: center;
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gray-900);
  display: block;
  line-height: 1.2;
}

.stat-icon {
  font-size: 2.25rem;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  display: block;
  margin-top: 0.15rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 0.7s ease-out 0.6s both;
}

/* Hero Guarantees */
.hero-guarantees {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.hero-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  background: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all var(--transition);
  white-space: nowrap;
}

.hero-guarantee-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37,99,235,.12);
  border-color: var(--primary-200);
}

.hero-guarantee-item .guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-guarantee-item .guarantee-icon.green {
  background: rgba(16,185,129,.1);
}
.hero-guarantee-item .guarantee-icon.gold {
  background: rgba(245,158,11,.1);
}
.hero-guarantee-item .guarantee-icon.blue {
  background: rgba(37,99,235,.1);
}

.hero-guarantee-item strong {
  color: var(--gray-900);
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gray-300);
  border-radius: 11px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--gray-400);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: #fff;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.about-grid .about-card {
  flex: 0 1 calc(50% - 1rem);
  min-width: 280px;
}

.about-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-card:hover::before {
  opacity: 1;
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ============================================================
   VALUES & CULTURE SECTION
   ============================================================ */
.values {
  background: var(--gray-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.value-card {
  background: #fff;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #8b5cf6, var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.value-card p strong {
  color: var(--gray-800);
}

.values-manifesto {
  text-align: center;
}

.values-manifesto blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--primary-50) 0%, rgba(139,92,246,.05) 100%);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary);
  position: relative;
}

.values-manifesto blockquote::before {
  content: '"';
  position: absolute;
  top: -0.25rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--primary-200);
  line-height: 1;
}

.values-manifesto blockquote strong {
  color: var(--primary);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.service-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-200);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card:hover .service-num {
  color: var(--primary-light);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ============================================================
   WEBSITE TYPES SECTION
   ============================================================ */
.website-types {
  background: #fff;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.type-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.type-card.highlight-card {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(245,158,11,.03) 0%, #fff 100%);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.type-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.type-icon {
  font-size: 1.75rem;
}

.type-header h3 {
  font-size: 1.1rem;
  flex: 1;
}

.type-complexity {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-500);
}

.type-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.type-pros {
  margin-bottom: 1rem;
}

.type-pros li {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.type-pros li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.type-best-for {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.type-price-range {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.price-usd {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.price-inr {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.types-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.types-note p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  background: var(--gray-50);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray-600);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.portfolio-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.portfolio-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--gray-800);
}

/* Mockup styles inside portfolio cards */
.portfolio-mockup {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  width: 75%;
  height: 70%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.mockup-bar {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  background: rgba(255,255,255,.25);
}

.mockup-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

.mockup-content {
  padding: 10px;
}

.mockup-header {
  height: 10px;
  background: rgba(255,255,255,.3);
  border-radius: 3px;
  margin-bottom: 8px;
  width: 60%;
}

.mockup-text {
  height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  margin-bottom: 5px;
}
.mockup-text.short { width: 40%; }

.mockup-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
}
.mockup-grid-small div {
  height: 25px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}

.mockup-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin: 8px 0;
}
.mockup-products div {
  height: 30px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 8px;
}
.mockup-cards div {
  height: 35px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}

.mockup-cta {
  height: 14px;
  width: 50%;
  background: rgba(255,255,255,.35);
  border-radius: 7px;
  margin-top: 10px;
}

.mockup-calendar { padding: 4px; }
.cal-header {
  height: 10px;
  background: rgba(255,255,255,.3);
  border-radius: 3px;
  margin-bottom: 6px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.cal-grid div {
  height: 14px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
}
.cal-grid div:nth-child(3),
.cal-grid div:nth-child(7),
.cal-grid div:nth-child(11) {
  background: rgba(255,255,255,.4);
}

.mockup-dashboard {
  display: flex;
  gap: 6px;
  height: 100%;
}
.dash-sidebar {
  width: 25%;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
}
.dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dash-chart {
  flex: 1;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}
.dash-stats {
  display: flex;
  gap: 4px;
}
.dash-stats div {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.portfolio-tech {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================================
   USPs SECTION
   ============================================================ */
.usps {
  background: #fff;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.usp-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.usp-card.usp-highlight {
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
  border-color: var(--primary-200);
}

.usp-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.usp-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.unbeatable-banner {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}

/* Azure Expertise Banner */
.azure-expertise-banner {
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 50%, #003f72 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.azure-expertise-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.azure-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.azure-icon {
  font-size: 2rem;
}

.azure-expertise-banner h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.azure-expertise-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.azure-services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.azure-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.azure-tag:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.banner-content h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.banner-content p {
  color: var(--gray-300);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Influencer Portfolio Banner */
.influencer-banner {
  background: linear-gradient(135deg, #e44d90 0%, #c026b3 50%, #8b5cf6 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.influencer-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  pointer-events: none;
}

.influencer-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.banner-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.banner-emoji {
  font-size: 2rem;
}

.influencer-banner h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.influencer-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.influencer-banner p strong {
  color: #fff;
}

.influencer-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.influencer-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.influencer-tag:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* Automation Banner */
.automation-banner {
  background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #0891b2 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.automation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}

.automation-banner h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.automation-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.automation-banner p strong {
  color: #fff;
}

.automation-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.automation-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.automation-tag:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-2px);
}

/* ============================================================
   FREE OFFERINGS
   ============================================================ */
.free-offerings {
  margin-top: 4rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 2px solid #86efac;
  position: relative;
  overflow: hidden;
}

.free-offerings::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399, #06b6d4);
}

.free-offerings-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.free-tag {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.free-offerings-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gray-900);
  margin: 0.75rem 0 0.5rem;
}

.free-offerings-header p {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.free-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.free-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  border: 1px solid #d1fae5;
  transition: all var(--transition-fast);
  text-align: center;
}

.free-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
  border-color: #10b981;
}

.free-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.free-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.free-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.free-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--gray-50);
}

.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.currency-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--gray-600);
  transition: all var(--transition);
}

.currency-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 30%);
  transform: scale(1.02);
}

.pricing-card.popular:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pricing-header p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.pricing-price {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1.25rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.price-period {
  font-size: 0.82rem;
  color: var(--gray-400);
  display: block;
  margin-top: 0.25rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  font-size: 0.85rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-600);
}

.pricing-features li.included::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pricing-features li.not-included {
  color: var(--gray-300);
  text-decoration: line-through;
}

.pricing-features li.not-included::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--gray-300);
}

.pricing-delivery {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

/* Pricing Add-ons */
.pricing-addons {
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--primary-100);
  margin-top: 0.5rem;
}

.addons-header {
  text-align: center;
  margin-bottom: 2rem;
}

.addons-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-50);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.addons-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.addons-header p {
  font-size: 0.92rem;
  color: var(--gray-500);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.addon {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  gap: 1rem;
  position: relative;
}

.addon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,99,235,.12);
  border-color: var(--primary-200);
}

.addon-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.addon:hover .addon-icon {
  background: var(--primary-50);
  transform: scale(1.05);
}

.addon-details {
  flex: 1;
  min-width: 0;
}

.addon-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}

.addon-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.addon-price {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.addon-period {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

/* Highlighted addon */
.addon-highlight {
  border-color: var(--primary-200);
  background: linear-gradient(135deg, #fff 0%, var(--primary-50) 100%);
}

.addon-popular {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
}

/* Free addon */
.addon-free {
  border-color: #d1fae5;
  background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%);
}

.addon-free:hover {
  border-color: #6ee7b7;
  box-shadow: 0 8px 24px rgba(5,150,105,.12);
}

.addon-price-free {
  color: #059669;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139,92,246,.15) 0%, transparent 50%);
  pointer-events: none;
}

.ai-section .section-tag {
  background: rgba(255,255,255,.1);
  color: var(--accent-light);
}

.ai-section .section-header h2 {
  color: #fff;
}

.ai-section .section-desc {
  color: rgba(255,255,255,.6);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.ai-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.ai-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
}

.ai-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ai-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.ai-card p {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ai-impact {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,.15);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: #fff;
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-50);
  border: 2px solid var(--primary-200);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--gray-50);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 2px 16px rgba(59,130,246,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  gap: 1rem;
  transition: color 0.15s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 950px;
  margin: 0 auto;
}

.contact-wrapper.contact-simple {
  grid-template-columns: 1fr;
  max-width: 600px;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Quick Reach Buttons */
.quick-reach {
  margin-bottom: 1.75rem;
}

.quick-reach-title {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--gray-800);
}

.quick-reach-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 0.65rem;
  position: relative;
  overflow: hidden;
}

.quick-reach-btn .qr-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.quick-reach-btn .qr-text {
  flex: 1;
}

.quick-reach-btn .qr-text strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.quick-reach-btn .qr-text small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.quick-reach-btn .qr-arrow {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--transition);
}

.quick-reach-btn:hover .qr-arrow {
  opacity: 1;
  transform: translateX(0);
}

.quick-reach-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Calendly */
.calendly-btn {
  background: linear-gradient(135deg, #006bff 0%, #0052cc 100%);
  color: #fff;
}

.calendly-btn .qr-text strong,
.calendly-btn .qr-text small,
.calendly-btn .qr-arrow {
  color: #fff;
}

.calendly-btn:hover {
  box-shadow: 0 6px 20px rgba(0,107,255,.35);
}

/* WhatsApp */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
}

.whatsapp-btn .qr-text strong,
.whatsapp-btn .qr-text small,
.whatsapp-btn .qr-arrow {
  color: #fff;
}

.whatsapp-btn:hover {
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* Call */
.call-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.call-btn .qr-text strong,
.call-btn .qr-text small,
.call-btn .qr-arrow {
  color: #fff;
}

.call-btn:hover {
  box-shadow: 0 6px 20px rgba(118,75,162,.35);
}

/* Email */
.email-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
}

.email-btn .qr-text strong,
.email-btn .qr-text small,
.email-btn .qr-arrow {
  color: #fff;
}

.email-btn:hover {
  box-shadow: 0 6px 20px rgba(245,158,11,.35);
}

/* Hero WhatsApp CTA Button */
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20c05c 0%, #0f7a42 100%);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transform: translateY(-2px);
}

.contact-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.mini-guarantee {
  font-size: 0.88rem;
  color: var(--gray-600);
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--gray-800);
  transition: all var(--transition-fast);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 0.85rem;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-links h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ============================================================
   SCROLL ANIMATION (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .free-offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .free-offerings {
    padding: 2.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: span 3;
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 0;
  }

  /* ---------- Typography scaling ---------- */
  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  /* ---------- Nav ---------- */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
  }

  .nav-toggle {
    z-index: 10000;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .btn-nav {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero-highlight {
    font-size: 0.88rem;
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    line-height: 1.5;
  }

  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: space-evenly;
  }

  .stat {
    flex: 1;
    min-width: 0;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Hero guarantees */
  .hero-guarantees {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .guarantee-item {
    width: 100%;
    justify-content: flex-start;
  }

  .scroll-indicator {
    display: none;
  }

  /* ---------- All Grids => single column ---------- */
  .about-grid,
  .services-grid,
  .types-grid,
  .portfolio-grid,
  .ai-grid,
  .testimonials-grid,
  .values-grid,
  .usps-grid,
  .pricing-grid,
  .free-offerings-grid {
    grid-template-columns: 1fr;
  }

  .about-grid .about-card {
    flex: 1 1 100%;
    min-width: 0;
  }

  /* ---------- Services ---------- */
  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-num {
    font-size: 2.5rem;
  }

  .service-badge {
    font-size: 0.65rem;
  }

  /* ---------- Values ---------- */
  .value-card {
    padding: 1.75rem 1.25rem;
  }

  /* ---------- Free Offerings ---------- */
  .free-offerings {
    padding: 2rem 1.25rem;
    margin-top: 2.5rem;
  }

  .free-offerings-header h3 {
    font-size: 1.35rem;
  }

  .values-manifesto blockquote {
    font-size: 1.05rem;
    padding: 2rem 1.5rem;
  }

  .values-manifesto blockquote::before {
    font-size: 3rem;
    left: 1rem;
  }

  /* ---------- Portfolio ---------- */
  .portfolio-filters {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }

  /* ---------- Pricing ---------- */
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

  .price {
    font-size: 2.5rem;
  }

  /* ---------- Add-ons ---------- */
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .addon {
    padding: 1rem;
  }

  .addon-icon {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .addons-header h3 {
    font-size: 1.25rem;
  }

  .pricing-addons {
    padding: 1.75rem 1.25rem;
  }

  /* ---------- USPs / Banners ---------- */
  .azure-expertise-banner,
  .influencer-banner,
  .automation-banner,
  .unbeatable-banner {
    padding: 2rem 1.25rem;
  }

  .azure-expertise-banner h3,
  .influencer-banner h3,
  .automation-banner h3 {
    font-size: 1.15rem;
  }

  .azure-expertise-banner p,
  .influencer-banner p,
  .automation-banner p {
    font-size: 0.88rem;
  }

  .azure-services-list,
  .influencer-tags,
  .automation-tags {
    gap: 0.35rem;
  }

  .azure-tag,
  .influencer-tag,
  .automation-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  .banner-icon-row,
  .azure-logo-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .banner-content h3 {
    font-size: 1.35rem;
  }

  /* ---------- AI Section ---------- */
  .ai-card {
    padding: 1.5rem 1.25rem;
  }

  /* ---------- Process ---------- */
  .process-timeline::before {
    left: 15px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.75rem;
  }

  .process-step {
    gap: 1.25rem;
  }

  .step-content h3 {
    font-size: 1.05rem;
    margin-top: 0;
  }

  /* ---------- Testimonials ---------- */
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }

  /* ---------- FAQ ---------- */
  .faq-question {
    padding: 1rem 1rem;
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
  }

  /* ---------- Contact ---------- */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-reach-btn {
    padding: 0.8rem 0.9rem;
  }

  .quick-reach-btn .qr-text strong {
    font-size: 0.88rem;
  }

  .quick-reach-btn .qr-text small {
    font-size: 0.7rem;
  }

  .quick-reach-btn .qr-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  /* ---------- Footer ---------- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid > div:last-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ============================================================
   SMALL MOBILE (< 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 1.3rem;
  }

  .hero-highlight {
    font-size: 0.82rem;
    padding: 0.5rem 0.85rem;
  }

  .hero-sub {
    font-size: 0.82rem;
  }

  .hero-cta .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }

  .stat-icon {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 1.35rem;
  }

  .section-tag {
    font-size: 0.7rem;
  }

  /* Values manifesto */
  .values-manifesto blockquote {
    font-size: 0.95rem;
    padding: 1.5rem 1.25rem;
    border-left-width: 3px;
  }

  /* Pricing */
  .price {
    font-size: 2.2rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  /* Currency toggle */
  .currency-toggle {
    transform: scale(0.92);
  }

  /* Quick reach */
  .quick-reach-btn .qr-icon {
    font-size: 1.2rem;
  }

  /* Addons */
  .addon {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .addon-details {
    flex: 1 1 calc(100% - 60px);
  }

  .addon-price {
    margin-left: auto;
  }

  /* Banners */
  .azure-expertise-banner,
  .influencer-banner,
  .automation-banner,
  .unbeatable-banner {
    padding: 1.5rem 1rem;
  }

  .banner-content h3 {
    font-size: 1.15rem;
  }

  .banner-content p {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 0.88rem;
  }

  /* Type cards */
  .type-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ============================================================
   EXTRA SMALL MOBILE (< 360px)
   ============================================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  .hero-cta .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .addon-icon {
    display: none;
  }

  .quick-reach-btn .qr-icon {
    font-size: 1rem;
  }

  .quick-reach-btn .qr-text strong {
    font-size: 0.82rem;
  }

  .price {
    font-size: 1.9rem;
  }
}

/* ============================================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Bigger tap targets */
  .nav-links a {
    padding: 0.5rem 0.75rem;
  }

  .filter-btn {
    min-height: 44px;
    min-width: 44px;
  }

  .faq-question {
    min-height: 48px;
  }

  .quick-reach-btn {
    min-height: 56px;
  }

  /* Remove hover effects that look stuck on touch */
  .service-card:hover,
  .about-card:hover,
  .value-card:hover,
  .addon:hover,
  .type-card:hover,
  .ai-card:hover,
  .testimonial-card:hover,
  .usp-card:hover {
    transform: none;
  }

  /* Show arrows always on touch */
  .quick-reach-btn .qr-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar, .scroll-indicator, .hero-bg-shapes { display: none; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 2rem 0; }
}
