/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors – Premium Midnight Theme */
  --primary: #0A0C2B;
  --primary-light: #161B4D;
  --primary-lighter: #232A6F;
  --accent: #FF8A00;
  --accent-gradient: linear-gradient(135deg, #FF8A00 0%, #FFB800 100%);

  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --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;

  /* Glassmorphism */
  --glass-bg: rgba(10, 12, 43, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-family: 'Outfit', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Shadows */
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --nav-height: 100px;
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: #0A0C2B !important;
  background-attachment: fixed;
  color: var(--white) !important;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  position: relative;
}

/* Contrast Scrim for readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 12, 43, 0.8) 100%);
  backdrop-filter: blur(1px);
  z-index: -2;
  pointer-events: none;
}

#vanta-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  pointer-events: none;
  opacity: 0.6;
}

/* ===== Background Glows ===== */
.bg-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  animation: float-glow 25s infinite alternate ease-in-out;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-duration: 25s;
}

.glow-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation-duration: 35s;
  animation-delay: -5s;
}

.glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
  top: 30%;
  left: 50%;
  animation-duration: 40s;
  animation-delay: -10s;
}

@keyframes float-glow {
  0% { transform: translate(-50px, -50px) scale(1); }
  50% { transform: translate(100px, 150px) scale(1.1); }
  100% { transform: translate(-100px, 50px) scale(1); }
}

h1, h2, h3, .section-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ===== Typography Utility ===== */
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--white);
  opacity: 0.9;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Nav Overlay ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 43, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ===== Navbar ===== */
.navbar {
  height: var(--nav-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: rgba(10, 12, 43, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  height: 80px;
  background: rgba(10, 12, 43, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 64px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 138, 0, 0.2);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-300);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-5xl);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.05) 0%, transparent 70%);
  filter: blur(50px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-text {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  line-height: 1.7;
}

.hero-buttons { 
  display: flex; 
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 138, 0, 0.15);
  border: 1px solid rgba(255, 138, 0, 0.3);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-xl);
  box-shadow: 0 4px 20px rgba(255, 138, 0, 0.1);
  animation: fadeInUp 1s ease forwards;
  width: fit-content;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 138, 0, 0.25);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 8px 30px rgba(255, 138, 0, 0.2);
}

.hero-visual { 
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-graphic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic-circle {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s infinite alternate;
  border: 1px solid rgba(255, 138, 0, 0.1);
}

@keyframes pulse {
  from { transform: scale(0.95); opacity: 0.8; }
  to { transform: scale(1.05); opacity: 1; }
}

/* ===== Contact Specific ===== */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 138, 0, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 20px;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Portfolio Specific ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.portfolio-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--white);
  transition: var(--transition);
  opacity: 0.3;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 43, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.1); opacity: 0.5; }

.portfolio-info h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-info p {
  font-size: var(--fs-xs);
  color: var(--gray-400);
}

.portfolio-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== About Page Specific ===== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.mission-card {
  text-align: center;
  padding: var(--space-3xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
}

.mission-card i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--glass-border);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: var(--space-3xl);
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: var(--space-2xl);
}

.timeline-item:nth-child(odd) {
  padding-right: var(--space-2xl);
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }

.timeline-content h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-content span {
  font-size: var(--fs-xs);
  color: var(--accent);
  font-weight: 600;
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  width: 100%;
  max-width: 400px;
}

.hero-icon-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 138, 0, 0.02) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 138, 0, 0.2);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-icon-item:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 138, 0, 0.03) 100%);
  box-shadow: 0 12px 40px rgba(255, 138, 0, 0.2);
}

.hero-icon-item i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: var(--space-md);
  transition: transform 0.3s ease;
}

.hero-icon-item:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.hero-icon-item span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Buttons ===== */
.btn {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn--lg {
  padding: 16px 40px;
  font-size: var(--fs-sm);
}

.btn--accent {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.25);
}

.btn--accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 138, 0, 0.35);
}

.btn--accent:active {
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn--outline:active {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Stats Bar ===== */
.stats-bar {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, rgba(10, 12, 43, 0.8) 0%, rgba(10, 12, 43, 0.6) 50%, rgba(255, 138, 0, 0.05) 100%);
  border-top: 1px solid rgba(255, 138, 0, 0.2);
  border-bottom: 1px solid rgba(255, 138, 0, 0.2);
  position: relative;
  z-index: 10;
  margin: var(--space-2xl) auto;
  backdrop-filter: blur(10px);
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255, 138, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 138, 0, 0.2);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 0, 0.15), transparent);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.15) 0%, rgba(255, 138, 0, 0.04) 100%);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.12);
}

.stat-item:hover::before {
  opacity: 1;
  inset: -50%;
}

.stat-number {
  font-size: var(--fs-4xl);
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xs);
  transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--accent);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stat-item { padding: var(--space-lg); }
  .stat-number { font-size: var(--fs-3xl); }
}

/* ===== CTA Section ===== */
.cta-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, rgba(22, 27, 77, 0.7) 0%, rgba(10, 12, 43, 0.7) 100%);
  backdrop-filter: blur(10px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08) 0%, transparent 70%);
  transform: rotate(-15deg);
}

.cta-section h2 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--fs-md);
  color: var(--white);
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

/* ===== Inner Page Breadcrumbs ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ===== Why Us Section ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-us-visual { position: relative; }

.why-us-icon-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.why-us-cell {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.12) 0%, rgba(255, 138, 0, 0.02) 100%);
  border: 2px solid rgba(255, 138, 0, 0.25);
  padding: var(--space-2xl);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-us-cell::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 0, 0.2), transparent);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.why-us-cell:hover {
  transform: translateY(-12px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.2) 0%, rgba(255, 138, 0, 0.05) 100%);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 24px 48px rgba(255, 138, 0, 0.15), 0 0 40px rgba(255, 138, 0, 0.1);
}

.why-us-cell:hover::before {
  opacity: 1;
  inset: -50%;
}

.why-us-cell i {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(255, 138, 0, 0.3));
}

.why-us-cell:hover i {
  transform: scale(1.2) rotate(-10deg);
  filter: drop-shadow(0 8px 20px rgba(255, 138, 0, 0.5));
}

.why-us-cell span {
  display: block;
  font-weight: 700;
  font-size: var(--fs-sm);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* ===== Why Feature Cards – Enhanced ===== */
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1.5px solid rgba(255, 138, 0, 0.25);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.05);
}

/* Animated glow border on hover */
.why-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.6), rgba(255, 184, 0, 0.2), transparent);
  
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Radial glow sweep */
.why-feature::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.why-feature:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.12) 0%, rgba(255, 138, 0, 0.02) 100%);
  box-shadow: 0 28px 64px rgba(255, 138, 0, 0.2), 0 0 40px rgba(255, 138, 0, 0.15);
}

.why-feature:hover::before { opacity: 1; }

.why-feature:hover::after {
  top: -20%;
  left: -20%;
  width: 120%;
  height: 120%;
}

/* Accent left bar */
.why-feature-accent {
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 3px;
  background: linear-gradient(180deg, transparent, #FF8A00, transparent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-feature:hover .why-feature-accent { opacity: 1; }

/* Icon Box */
.why-feature-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, #FF8A00 0%, #FFB800 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.why-feature-icon i {
  color: #FFFFFF !important;
  font-size: 24px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.why-feature:hover .why-feature-icon {
  transform: scale(1.15) rotate(-8deg) translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 138, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.why-feature:hover .why-feature-icon i { transform: scale(1.2) rotate(8deg); }

/* Text content */
.why-feature > div:last-child {
  position: relative;
  z-index: 1;
}

.why-feature h4 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 184, 0, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-feature:hover h4 { 
  -webkit-text-fill-color: unset;
  color: #FFB800;
  text-shadow: 0 4px 16px rgba(255, 138, 0, 0.4);
}

.why-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.why-feature:hover p { color: rgba(255, 255, 255, 0.9); }

/* Staggered entrance */
.why-feature:nth-child(1) { animation-delay: 0.05s; }
.why-feature:nth-child(2) { animation-delay: 0.15s; }
.why-feature:nth-child(3) { animation-delay: 0.25s; }
.why-feature:nth-child(4) { animation-delay: 0.35s; }

@media (max-width: 991px) {
  .why-us-grid { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .why-us-icon-block { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-icon-block { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .why-us-cell { padding: var(--space-lg); }
  .why-us-cell i { font-size: 36px; }
  .why-feature { padding: 2rem; }
  .why-feature-icon { width: 56px; height: 56px; }
}

/* ===== Cards ===== */
.card {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1.5px solid rgba(255, 138, 0, 0.2);
  padding: var(--space-3xl);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 138, 0, 0.05);
}

.card::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 138, 0, 0.1), transparent);
  transition: all 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.15) 0%, rgba(255, 138, 0, 0.04) 100%);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 24px 48px rgba(255, 138, 0, 0.15), 0 0 30px rgba(255, 138, 0, 0.1);
}

.card:hover::before {
  opacity: 1;
  inset: -50%;
}

.card-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.2) 0%, rgba(255, 138, 0, 0.05) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 16px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 138, 0, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 8px 16px rgba(255, 138, 0, 0.1);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-8deg);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.3) 0%, rgba(255, 138, 0, 0.1) 100%);
  box-shadow: 0 12px 24px rgba(255, 138, 0, 0.2);
}

.card-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 184, 0, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:hover .card-title {
  -webkit-text-fill-color: unset;
  color: #FFB800;
}

.card-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.card:hover .card-text {
  color: rgba(255, 255, 255, 0.95);
}

.card-link {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.card-link:hover i { transform: translateX(5px); }

/* FAQ Specifics */
.faq-card h4 {
  color: var(--accent);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.faq-card p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
  padding: var(--space-5xl) 0 var(--space-2xl);
  background: #05061A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-4xl);
  margin-bottom: var(--space-4xl);
}

.footer-heading {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.footer-links li { margin-bottom: var(--space-md); }

.footer-links a {
  color: var(--gray-400);
  font-size: var(--fs-sm);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Page Headers (Inner Pages) ===== */
.page-header {
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: transparent;
  text-align: center;
}

/* ===== Common Section Layouts ===== */
.section { padding: var(--space-5xl) 0; }

.section--dark {
  background: rgba(8, 10, 37, 0.4);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.section--glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section--light {
  background: rgba(22, 27, 77, 0.7);
  backdrop-filter: blur(5px);
}

.bg-light { background: var(--primary-light) !important; }

/* Service / Team Detail Layouts */
.content-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 991px) {
  .content-visual-grid { grid-template-columns: 1fr; text-align: center; }
}

.visual-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.visual-box i {
  font-size: 120px;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
}

/* Portfolio Filter */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gray-400);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Forms */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--gray-300);
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Process Steps ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--glass-bg);
  border: 4px solid var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 800;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 30px rgba(255, 138, 0, 0.3);
  transition: var(--transition);
}

.process-step:hover .process-number {
  transform: scale(1.1) rotate(10deg);
  background: var(--accent-gradient);
  border-color: transparent;
}

.process-step h4 {
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.process-step p {
  font-size: var(--fs-xs);
  color: var(--white);
  opacity: 0.8;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
}

/* ===== Service Details ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-info h3 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-info {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl);
  background: transparent;
  border-radius: var(--radius-lg);
}

.service-info p {
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.8;
  font-size: var(--fs-base);
  text-shadow: none;
}

.service-features { 
  margin: var(--space-lg) 0;
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.80);
  text-shadow: none;
  transition: var(--transition);
  font-size: var(--fs-sm);
}

.service-features li:hover { transform: translateX(8px); color: var(--white); }
.service-features li i { color: var(--accent); transition: transform 0.3s ease; font-size: 18px; }
.service-features li:hover i { transform: scale(1.2); }

/* Service Visual Enhancements */
.service-visual {
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.08) 0%, rgba(255, 138, 0, 0.02) 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-visual:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(255, 138, 0, 0.2);
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.12) 0%, rgba(255, 138, 0, 0.04) 100%);
}

.service-visual::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
  top: 0;
  left: 0;
}

.service-visual-icon {
  font-size: 80px;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-visual:hover .service-visual-icon {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 8px 20px rgba(255, 138, 0, 0.3));
}

/* ===== Utilities ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible { 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; }

/* ===== Service Visual Colors ===== */
.sv-web { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2)); }
.sv-mobile { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2)); }
.sv-ai { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2)); }
.sv-marketing { background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2)); }

.service-visual-icon {
  font-size: 80px;
  opacity: 0.9;
  color: var(--white);
  filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.service-visual {
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-visual:hover {
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 138, 0, 0.2);
  transform: translateY(-15px) rotate(0.5deg) scale(1.02);
}

.service-visual::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-visual:hover::after { opacity: 1; }

.service-visual::before {
  content: '';
  position: absolute;
  width: 150%; height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Mobile Menu Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding: 0 var(--space-lg);
  }

  .hero-visual {
    order: -1;
  }

  .hero-graphic-circle {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  /* Home Hero Responsive */
  .hero {
    min-height: auto;
    padding: var(--nav-height) 0 60px 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: 0 var(--space-md);
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }

  .hero-badge {
    margin-bottom: var(--space-lg);
    justify-content: center;
  }

  .hero-text {
    font-size: var(--fs-base);
    max-width: 100%;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.75);
  }

  .hero-buttons {
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-visual {
    margin-top: var(--space-2xl);
  }

  .hero-graphic-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: var(--nav-height) var(--space-md) 50px var(--space-md);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.25;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    margin-bottom: var(--space-md);
  }

  .hero-text {
    font-size: var(--fs-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
  }

  .hero-buttons {
    gap: var(--space-sm);
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-graphic-circle {
    width: 260px;
    height: 260px;
  }

  .hero-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}
