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

:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #0f0f0f;
  --bg-card: rgba(255, 255, 255, 0.02);
  --border-color: rgba(255, 255, 255, 0.06);
  --text-primary: #ffffff;
  --text-secondary: rgb(255, 255, 255);
  --text-muted: rgba(255, 255, 255, 0.4);
  --accent: #ffd83b;
  --accent-secondary: #d4a50a;
  --accent-dim: rgba(240, 185, 11, 0.1);
  --accent-glow: rgba(240, 185, 11, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

nav.scrolled {
  padding: 0.875rem 4rem;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo .white {
  color: var(--text-primary);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin-right: 1rem;
}

.nav-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.625rem 1.125rem;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.2px;
  position: relative;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links li a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links li a:hover::before {
  width: 20px;
}

.nav-cta {
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: #000000;
  border: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.nav-cta:hover::before {
  transform: translateX(100%);
}

.nav-cta:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow), 0 0 60px rgba(240, 185, 11, 0.15);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav .nav-cta {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* Sections */
section {
  position: relative;
  padding: 8rem 4rem;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* HERO SECTION */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../image.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 5, 0.6) 0%,
      rgba(5, 5, 5, 0.4) 40%,
      rgba(5, 5, 5, 0.85) 80%,
      var(--bg-primary) 100%);
  z-index: -1;
}

.hero-radial {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 950px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(20px);
}

.hero-badge small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 8px rgba(240, 185, 11, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 2.75rem;
  background: var(--accent);
  color: #000000;
  border: none;
  border-radius: 100px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.3px;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.hero-cta:hover::before {
  transform: translateX(100%);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 60px var(--accent-glow), 0 0 100px rgba(240, 185, 11, 0.15);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 22px; }
}

/* AUTHORITY SECTION */
.authority {
  padding: 12rem 4rem;
  position: relative;
  overflow: hidden;
}

.authority-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.authority-content {
  position: relative;
  z-index: 1;
}

.authority-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.authority-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.authority h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 2rem;
}

.authority h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.authority p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.85;
  letter-spacing: -0.2px;
  max-width: 480px;
}

.authority-image {
  position: relative;
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
}

.authority-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.authority-image:hover img {
  transform: scale(1.05);
}

.authority-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.authority-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.authority-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

/* Services category header */
.services-category-header {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.services-category-header h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 0.5rem;
}

.services-category-header .section-label {
  letter-spacing: 3px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.75;
  letter-spacing: -0.2px;
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 10rem 4rem;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 185, 11, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 185, 11, 0.05);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  letter-spacing: -2px;
}

.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon {
  background: var(--accent);
  color: #000000;
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Why CTA Bar / Stats */
.why-cta-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 5rem;
  padding: 3rem 4rem;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.08) 0%, rgba(240, 185, 11, 0.02) 100%);
  border: 1px solid rgba(240, 185, 11, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.why-stat {
  text-align: center;
}

.why-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* OFFER SECTION */
.offer {
  background: var(--bg-secondary);
  position: relative;
  padding: 10rem 4rem;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 185, 11, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 185, 11, 0.05);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card-image {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card:hover .offer-card-image img {
  transform: scale(1.1);
}

.offer-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}

.offer-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.5px;
}

.offer-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.offer-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-card.featured .offer-card-image {
  height: 100%;
  min-height: 280px;
  margin-bottom: 0;
}

/* ======================== */
/* SERVICES GRID (new 4-up) */
/* ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 185, 11, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(240, 185, 11, 0.06);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Icon + title inline */
.service-card-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.service-card-icon {
  font-size: 1.375rem;
  line-height: 1;
  flex-shrink: 0;
}

.service-card-title {
  font-size: 0.975rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin: 0;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0;
}

.service-list li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* E-Commerce Pipeline */
.service-pipeline {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pipeline-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.pipeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.25rem;
  align-items: center;
}

.pipeline-steps span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.25rem 0.625rem;
}

.pipeline-steps .arrow {
  font-size: 0.75rem;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0 0.1rem;
}

.pipeline-steps .pipeline-final {
  color: var(--accent);
  border-color: rgba(240, 185, 11, 0.3);
  background: rgba(240, 185, 11, 0.08);
  font-weight: 700;
}

/* Responsive services grid */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.125rem 1.25rem;
  }
}

.how-it-works {
  padding: 10rem 4rem;
  position: relative;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--border-color), var(--accent), transparent);
  opacity: 0.4;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  position: relative;
  border: 3px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-image {
  border-color: var(--accent);
  box-shadow: 0 0 50px rgba(240, 185, 11, 0.15);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-image img {
  transform: scale(1.15);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: #000000;
  z-index: 2;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.step-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.step-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 300px;
  margin: 0 auto;
}

/* RISK REVERSAL */
.risk-reversal {
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.risk-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.risk-image {
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.risk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
}

.risk-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.risk-content {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.05) 0%, rgba(240, 185, 11, 0.01) 100%);
  border: 1px solid rgba(240, 185, 11, 0.12);
  border-radius: 28px;
  position: relative;
  backdrop-filter: blur(20px);
}

.risk-content::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.08), transparent 60%);
  pointer-events: none;
}

.risk-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.risk-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.risk-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.risk-content strong {
  color: var(--accent);
  font-weight: 600;
}

/* PORTFOLIO / DELIVERABLES */
.deliverables {
  background: var(--bg-secondary);
  padding: 10rem 4rem;
  position: relative;
}

.deliverables::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.deliverables-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.deliverables-content h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.deliverables-content > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 450px;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.deliverable-item:hover {
  transform: translateX(10px);
  border-color: rgba(240, 185, 11, 0.2);
  background: rgba(240, 185, 11, 0.03);
}

.deliverable-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.deliverable-item:hover .deliverable-check {
  background: var(--accent);
}

.deliverable-check svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: color 0.3s;
}

.deliverable-item:hover .deliverable-check svg {
  color: #000000;
}

.deliverable-text {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.deliverables-image {
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.deliverables-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.1);
}

.deliverables-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

/* TEAM SECTION */
.team {
  padding: 10rem 4rem;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.team-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240, 185, 11, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(240, 185, 11, 0.05);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.1);
}

.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 5, 0.9) 100%);
  pointer-events: none;
}

.team-info {
  padding: 1.75rem 2rem;
  text-align: center;
  position: relative;
  margin-top: -3rem;
  z-index: 2;
}

.team-info h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  letter-spacing: -0.5px;
}

.team-info h5 {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

.team-info .role {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.2px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  transform: translateY(-3px);
}

.team-socials svg {
  width: 16px;
  height: 16px;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--bg-secondary);
  padding: 10rem 4rem;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 185, 11, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(240, 185, 11, 0.03);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-quote {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
  letter-spacing: -0.3px;
}

.testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 12rem 4rem;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.7);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      var(--bg-secondary) 0%,
      rgba(5, 5, 5, 0.85) 30%,
      rgba(5, 5, 5, 0.85) 70%,
      var(--bg-primary) 100%);
  z-index: -1;
}

.final-cta-radial {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 span {
  background: linear-gradient(135deg, var(--accent), #ffd700, #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta .hero-cta {
  margin-bottom: 2rem;
}

.final-cta .subtext {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* FOOTER */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

/* Footer Contact Section */
.footer-contact {
  padding: 6rem 4rem;
  background: var(--bg-secondary);
}

.footer-contact .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.footer-info .section-label {
  margin-bottom: 1rem;
}

.footer-info h3 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.footer-info > p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-list li:hover {
  color: var(--text-primary);
}

.contact-list li:nth-child(2) span:last-child {
  color: var(--accent);
  font-weight: 700;
}

.contact-icon {
  font-size: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  transform: translateY(-3px);
}

.footer-socials a[aria-label="Facebook"] {
  color: var(--accent);
  border-color: rgba(240, 185, 11, 0.35);
  background: rgba(240, 185, 11, 0.1);
}

.footer-socials a[aria-label="Facebook"]:hover {
  color: #000000;
}

/* Contact Form */
.footer-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.625rem;
  letter-spacing: -0.2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(240, 185, 11, 0.03);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1.125rem 2rem;
  background: var(--accent);
  color: #000000;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.3px;
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--accent-glow), 0 0 60px rgba(240, 185, 11, 0.15);
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast-card {
  min-width: 320px;
  max-width: 360px;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: auto;
  overflow: hidden;
}

.toast-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.spinner-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 0.85s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.92); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Footer Bottom with Quick Links */
.footer-bottom {
  padding: 4rem 4rem 2rem;
  background: var(--bg-primary);
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom .footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-bottom .footer-logo .white {
  color: var(--text-primary);
}

.footer-bottom .footer-logo .gold {
  color: var(--accent);
}

.footer-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.quick-links-column h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.quick-links-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.quick-links-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-links-column ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.quick-links-column ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.quick-links-column ul li a:hover::before {
  width: 10px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  max-width: 1200px;
  margin: 3rem auto 0;
}

.footer-copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: -0.2px;
}

.footer-bottom-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-bottom-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-bottom-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  transform: translateY(-3px);
}

/* ==================== */
/* RESPONSIVE STYLES    */
/* ==================== */

@media (max-width: 1400px) {
  .footer-bottom-content { grid-template-columns: 1fr 2fr; }
}

@media (max-width: 1200px) {
  section { padding: 6rem 3rem; }
  nav { padding: 1.25rem 2rem; }
  nav.scrolled { padding: 0.875rem 2rem; }
  .authority { padding: 8rem 3rem; }
  .offer { padding: 8rem 3rem; }
  .footer-contact { padding: 5rem 3rem; }
  .footer-bottom { padding: 3rem 3rem 2rem; }
}

@media (max-width: 1024px) {
  .authority-wrapper { grid-template-columns: 1fr; gap: 4rem; }
  .authority-image { height: 400px; order: -1; }
  .authority-content { text-align: center; }
  .authority-label { justify-content: center; }
  .authority-label::before { display: none; }
  .authority p { max-width: 100%; margin: 0 auto; }
  .authority-stats { justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cta-bar { flex-wrap: wrap; gap: 2rem; }
  .why-stat { flex: 1 1 40%; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-card.featured { grid-column: span 2; }
  .steps-wrapper { grid-template-columns: 1fr; gap: 4rem; }
  .steps-wrapper::before { display: none; }
  .risk-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .risk-image { height: 350px; }
  .deliverables-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .deliverables-content { text-align: center; }
  .deliverables-content > p { max-width: 100%; margin-left: auto; margin-right: auto; margin-bottom: 2rem; }
  .deliverables-image { height: 400px; order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-info { text-align: center; }
  .footer-info > p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .contact-list { align-items: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-quick-links { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-menu { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 7rem 1.5rem 5rem; }
  .hero h1 { letter-spacing: -2px; }
  .hero-badge { padding: 0.5rem 1rem; font-size: 0.75rem; margin-bottom: 2rem; }
  .hero p { margin-bottom: 2rem; }
  .hero-cta { padding: 1rem 2rem; font-size: 1rem; }
  .hero-scroll { bottom: 2rem; }
  .authority { padding: 5rem 1.5rem; }
  .authority-image { height: 300px; border-radius: 20px; }
  .authority-stats { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .stat { text-align: center; min-width: 100px; }
  .stat-number { font-size: 2rem; }
  .offer { padding: 5rem 1.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 2rem; }
  .offer-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .offer-card.featured .offer-card-image { min-height: 200px; margin-bottom: 1.5rem; }
  .how-it-works { padding: 5rem 1.5rem; }
  .step-image { width: 160px; height: 160px; }
  .step-number { width: 40px; height: 40px; font-size: 1rem; }
  .risk-reversal { padding: 5rem 1.5rem; }
  .risk-image { height: 280px; border-radius: 20px; }
  .risk-content { padding: 2rem; border-radius: 20px; }
  .risk-icon { width: 60px; height: 60px; font-size: 1.5rem; }
  .deliverables { padding: 5rem 1.5rem; }
  .deliverables-image { height: 300px; border-radius: 20px; }
  .deliverable-item { padding: 1rem 1.25rem; }
  .deliverable-item:hover { transform: none; }
  .deliverable-check { width: 36px; height: 36px; min-width: 36px; }
  .deliverable-text { font-size: 1rem; }
  .team { padding: 5rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .team-image { height: 280px; }
  .testimonials { padding: 5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonial-card { padding: 2rem; }
  .testimonial-quote { font-size: 1rem; }
  .final-cta { padding: 5rem 1.5rem; }
  .footer-contact { padding: 4rem 1.5rem; }
  .footer-form { padding: 1.75rem; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input, .form-group textarea { padding: 0.875rem 1rem; }
  .footer-bottom { padding: 3rem 1.5rem 1.5rem; }
  .footer-quick-links { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .quick-links-column { text-align: left; }
  .footer-copyright-row { flex-direction: column; gap: 1.5rem; text-align: center; }
  .section-header { margin-bottom: 3rem; }
  .why-choose-us { padding: 5rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .why-card { padding: 2rem; }
  .why-card-number { font-size: 2.5rem; }
  .why-card-icon { width: 52px; height: 52px; }
  .why-cta-bar { padding: 2rem; gap: 1.5rem; }
  .why-stat { flex: 1 1 45%; }
  .why-stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 1.25rem; }
  .hero { padding: 6rem 1rem 4rem; }
  .hero h1 { font-size: 2.25rem; letter-spacing: -1.5px; }
  .hero p { font-size: 0.9375rem; }
  .hero-cta { padding: 0.875rem 1.75rem; font-size: 0.9375rem; width: 100%; justify-content: center; }
  section { padding: 4rem 1rem; }
  .authority h2 { font-size: 1.75rem; letter-spacing: -1px; }
  .authority p { font-size: 1rem; }
  .authority-image { height: 250px; }
  .section-title { font-size: 1.75rem; letter-spacing: -1px; }
  .section-subtitle { font-size: 0.9375rem; }
  .offer-card { padding: 1.5rem; border-radius: 20px; }
  .offer-card-icon { width: 44px; height: 44px; font-size: 1.125rem; }
  .offer-card h3 { font-size: 1.125rem; }
  .offer-card p { font-size: 0.875rem; }
  .step-image { width: 140px; height: 140px; }
  .step-card h3 { font-size: 1.25rem; }
  .step-card p { font-size: 0.9375rem; }
  .risk-content h2 { font-size: 1.5rem; }
  .risk-content p { font-size: 1rem; }
  .deliverables-content h2 { font-size: 1.5rem; }
  .team-info h3 { font-size: 1.25rem; }
  .final-cta h2 { font-size: 1.75rem; letter-spacing: -1px; }
  .final-cta .hero-cta { width: 100%; justify-content: center; }
  .footer-info h3 { font-size: 1.5rem; }
  .footer-info > p { font-size: 1rem; }
  .contact-list li { font-size: 0.9375rem; }
  .footer-form { padding: 1.5rem; }
  .form-submit { padding: 1rem 1.5rem; }
  .footer-quick-links { grid-template-columns: 1fr; gap: 2rem; }
  .quick-links-column { text-align: center; }
  .quick-links-column ul { align-items: center; }
  .quick-links-column ul li a:hover { transform: none; }
  .footer-bottom .footer-logo { font-size: 1.5rem; }
  .mobile-nav a { font-size: 1.25rem; }
  .why-card { padding: 1.5rem; }
  .why-card h3 { font-size: 1.125rem; }
  .why-stat { flex: 1 1 100%; }
  .why-cta-bar { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2rem; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 0.75rem; }
  .authority-stats { gap: 1.5rem; }
}

@media (hover: none) and (pointer: coarse) {
  .offer-card:hover, .team-card:hover, .testimonial-card:hover { transform: none; }
  .deliverable-item:hover { transform: none; }
  .quick-links-column ul li a:hover { transform: none; }
  .nav-cta:hover { transform: none; }
  .hero-cta:hover { transform: none; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 5rem 2rem; }
  .hero-scroll { display: none; }
  .mobile-nav { padding-top: 4rem; gap: 1rem; }
  .mobile-nav a { font-size: 1rem; }
}

@media print {
  nav, .hero-scroll, .mobile-menu-btn, .mobile-nav { display: none; }
  body { background: white; color: black; }
  section { padding: 2rem; }
}
