body{
  background: #000000;
}


/* Menu Icon Container */
.menu-icon-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1050;
}

/* Menu Icon */
.menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.menu-icon:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Logo in icon */
.menu-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Menu content */
.menu-collapse {
  position: absolute;
  bottom: 60px;
  left: 0;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  padding: 15px;
  width: 200px;
  z-index: 1040;
}

/* Menu navigation */
.menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin: 10px 0;
}

.menu-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.menu-link:hover {
  color: #007bff;
}

.menu-button {
  width: 100%;
  margin-top: 5px;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 85px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1050;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
}

/* ── TOKENS ── */
:root {
  --blue-electric : #1a6cff;
  --blue-glow     : rgba(26, 108, 255, 0.55);
  --blue-subtle   : rgba(26, 108, 255, 0.08);
  --blue-border   : rgba(26, 108, 255, 0.22);
  --white         : #ffffff;
  --white-soft    : rgba(255,255,255,0.75);
  --white-dim     : rgba(255,255,255,0.36);
  --silver        : #b8cce0;
  --ff-display    : 'Cormorant Garamond', Georgia, serif;
  --ff-ui         : 'Syne', system-ui, sans-serif;
  --ff-art        : 'Bebas Neue', sans-serif;
}

/* ── HERO SHELL ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem,10vw,8rem) clamp(1.5rem,7vw,9rem);
  overflow: hidden;
  isolation: isolate;
}

/* Mesh ambient light */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 15% 55%, rgba(26,108,255,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 85% 15%, rgba(26,108,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 70% 85%, rgba(26,108,255,0.05) 0%, transparent 55%);
  pointer-events: none;
  animation: ambientDrift 16s ease-in-out infinite alternate;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

@keyframes ambientDrift {
  to { transform: scale(1.04) translate(1.5%, -1%); }
}

/* ── TYPOGRAPHIC ART (background word) ── */
.hero-typo-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.typo-word {
  font-family: var(--ff-art);
  font-size: clamp(14rem, 28vw, 30rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26,108,255,0.18);
  user-select: none;
  white-space: nowrap;
  transform: translateX(8%) translateY(5%);
  clip-path: inset(0 0 0 100%);
  animation: wordReveal 1.6s cubic-bezier(0.77,0,0.18,1) 0.1s forwards;
  position: relative;
}

/* Shimmer scan on the art word */
.typo-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26,108,255,0.0);
  background: linear-gradient(105deg, transparent 40%, rgba(26,108,255,0.3) 50%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 300% 100%;
  animation: shimmerScan 6s ease-in-out 2s infinite;
}

@keyframes wordReveal {
  to { clip-path: inset(0 0 0 0%); }
}

@keyframes shimmerScan {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}

/* ── MAIN CONTENT ── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

/* Label */
.hero-label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue-electric);
  display: block;
}

/* Headline */
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-headline .line {
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: lineReveal 1s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-headline .line-1 { animation-delay: 0.75s; }
.hero-headline .line-2 { animation-delay: 0.95s; font-weight: 700; }
.hero-headline em {
  font-style: italic;
  color: var(--silver);
  font-weight: 300;
}

@keyframes lineReveal {
  to { clip-path: inset(0 0 0% 0); }
}

/* Sub */
.hero-sub {
  font-family: var(--ff-ui);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 0 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.25s forwards;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.4s forwards;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-electric);
  padding: 0.95rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Ripple sweep on hover */
.cta-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s ease;
}

.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px var(--blue-glow); }
.cta-primary:hover::before { opacity: 1; }
.cta-primary:hover::after  { left: 160%; }

.cta-primary span { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); display: inline-block; }
.cta-primary:hover span { transform: translateX(4px); }

.cta-secondary {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.cta-secondary::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--blue-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.cta-secondary:hover { color: var(--white); }
.cta-secondary:hover::after { transform: scaleX(1); }

/* ── VERTICAL SIDE TEXT ── */
.hero-side-text {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3.5rem);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-family: var(--ff-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s ease 1.55s forwards;
}

/* ── BOTTOM RULE ── */
.hero-bottom-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border) 25%, var(--blue-border) 75%, transparent);
}

/* ── SHARED KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero-side-text { display: none; }
  .hero-typo-art  { justify-content: center; }
  .typo-word      { transform: translateX(0) translateY(8%); font-size: 52vw; }
  .hero-cta-row   { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cta-primary, .cta-secondary { text-align: center; justify-content: center; }
}

/* ── ABOUT SHELL ── */
.sa-about {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 7vw, 9rem);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient mesh */
.sa-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 25% 35%, rgba(26,108,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 75% 65%, rgba(26,108,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

/* Grain */
.sa-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHIC ART ── */
.sa-typo-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.sa-art-word {
  font-family: var(--ff-art);
  font-size: clamp(10rem, 18vw, 22rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26,108,255,0.15);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(0 100% 0 0);
  animation: artReveal 1.8s cubic-bezier(0.77,0,0.18,1) 0.3s forwards;
}

@keyframes artReveal {
  to { clip-path: inset(0 0% 0 0); }
}

/* ── CONTENT GRID ── */
.sa-content-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}



.sa-founder-label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.sa-founder-label.visible {
  animation: fadeUp 0.8s ease forwards;
}

.sa-founder-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue-electric);
  display: block;
}

.sa-founder-name {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.sa-founder-name.visible {
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.sa-founder-title {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white-dim);
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.sa-founder-title.visible {
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.sa-founder-quote {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--silver);
  margin: 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blue-border);
  opacity: 0;
  transform: translateY(20px);
}

.sa-founder-quote.visible {
  animation: fadeUp 0.8s ease 0.45s forwards;
}

/* ── RIGHT COLUMN: STORY ── */
.sa-story-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sa-story-block {
  opacity: 0;
  transform: translateY(30px);
}

.sa-story-block.visible {
  animation: fadeUp 0.9s ease forwards;
}

.sa-story-block:nth-child(1) { animation-delay: 0.2s; }
.sa-story-block:nth-child(2) { animation-delay: 0.4s; }
.sa-story-block:nth-child(3) { animation-delay: 0.6s; }

.sa-story-label {
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sa-story-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-border), transparent);
  max-width: 120px;
}

.sa-story-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.sa-story-text {
  font-family: var(--ff-ui);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--white-dim);
  margin: 0;
}

.sa-story-text strong {
  color: var(--white);
  font-weight: 600;
}

.sa-highlight {
  color: var(--white);
  position: relative;
  display: inline-block;
}

.sa-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-electric);
  opacity: 0.6;
}

/* ── MISSION CARDS ── */
.sa-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.sa-mission-grid.visible {
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.sa-mission-card {
  padding: 1.75rem;
  background: rgba(26, 108, 255, 0.04);
  border: 1px solid var(--blue-border);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sa-mission-card:hover {
  background: rgba(26, 108, 255, 0.08);
  border-color: rgba(26, 108, 255, 0.4);
  transform: translateY(-3px);
}

.sa-mission-icon {
  font-family: var(--ff-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-electric);
  margin-bottom: 0.75rem;
  display: block;
}

.sa-mission-title {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.sa-mission-desc {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-dim);
  margin: 0;
}

/* ── BOTTOM CTA ── */
.sa-bottom-cta {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: clamp(4rem, 8vw, 6rem) auto 0;
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.sa-bottom-cta.visible {
  animation: fadeUp 0.9s ease forwards;
}

.sa-cta-text {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.sa-cta-text em {
  font-style: italic;
  color: var(--blue-electric);
}

.sa-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-electric);
  padding: 0.95rem 2.25rem;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  white-space: nowrap;
}

.sa-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sa-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--blue-glow);
}

.sa-cta-button:hover::before {
  opacity: 1;
}

.sa-cta-button span {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-block;
}

.sa-cta-button:hover span {
  transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sa-content-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .sa-typo-art {
    opacity: 0.25;
  }
  
  .sa-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .sa-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .sa-cta-button {
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .sa-founder-quote {
    padding-left: 1rem;
    font-size: 1.05rem;
  }
  
  .sa-story-label::after {
    display: none;
  }
}

/* ── CEO SHELL ── */
.sa-ceo-section {
  position: relative;
  padding: clamp(8rem, 14vw, 12rem) clamp(1.5rem, 7vw, 9rem);
  background: linear-gradient(180deg, #030f1f 0%, var(--blue-void) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient glow */
.sa-ceo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(26,108,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 70% 60%, rgba(26,108,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: ambientDrift 20s ease-in-out infinite alternate;
}

/* Grid pattern */
.sa-ceo-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26, 108, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 108, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── CEO CONTAINER ── */
.sa-ceo-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* ── PORTRAIT SECTION ── */
.sa-ceo-portrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Geometric frame */
.sa-geo-frame {
  position: relative;
  width: clamp(280px, 45vw, 420px);
  aspect-ratio: 4/5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Blue geometric shape behind */
.sa-geo-shape {
  position: absolute;
  width: 70%;
  height: 60%;
  top: 10%;
  left: 15%;
  background: var(--blue-electric);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 60% 100%, 0 100%);
  opacity: 0.8;
  animation: geoPulse 8s ease-in-out infinite;
}

@keyframes geoPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Curved cutout shape */
.sa-curve-cutout {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 75%;
  height: 70%;
  background: var(--blue-void);
  border-radius: 50% 0 0 0;
  z-index: 5;
}

/* CEO Image */
.sa-ceo-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.sa-ceo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(110%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.sa-geo-frame:hover .sa-ceo-image {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.03);
}

/* Signature overlay */
.sa-signature {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  z-index: 15;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}

/* Floating badge */
.sa-ceo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--blue-electric);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  z-index: 20;
  box-shadow: 0 10px 40px rgba(26,108,255,0.4);
  animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sa-badge-text {
  font-family: var(--ff-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  line-height: 1.6;
}

/* ── QUOTE SECTION ── */
.sa-ceo-quote-section {
  position: relative;
  padding-left: 2rem;
}

/* Large quotation mark */
.sa-quote-mark-large {
  position: absolute;
  top: -40px;
  left: 0;
  font-family: var(--ff-display);
  font-size: 12rem;
  line-height: 1;
  color: var(--blue-electric);
  opacity: 0.15;
  font-style: italic;
  pointer-events: none;
}

/* Quote box */
.sa-quote-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
  transition: all 0.4s ease;
}

.sa-quote-box:hover {
  background: rgba(26, 108, 255, 0.06);
  border-color: rgba(26, 108, 255, 0.4);
  transform: translateX(5px);
}

/* Opening quote */
.sa-quote-open {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-electric);
  margin-bottom: -0.5rem;
  display: block;
}

/* Quote text */
.sa-quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 1.5rem;
  font-style: italic;
}

.sa-quote-text em {
  color: var(--blue-electric);
  font-style: italic;
  font-weight: 400;
}

/* Closing quote */
.sa-quote-close {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-electric);
  display: block;
  text-align: right;
  margin-top: -1rem;
}

/* CEO Info */
.sa-ceo-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--blue-border);
}

.sa-ceo-name {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
}

.sa-ceo-name span {
  color: var(--blue-electric);
}

.sa-ceo-role {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin: 0;
}

/* Decorative line */
.sa-deco-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-electric), transparent);
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .sa-ceo-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .sa-ceo-quote-section {
    padding-left: 0;
  }
  
  .sa-quote-mark-large {
    font-size: 8rem;
    top: -20px;
  }
  
  .sa-ceo-portrait {
    order: 1;
  }
  
  .sa-ceo-quote-section {
    order: 2;
  }
  
  .sa-geo-frame {
    width: clamp(240px, 60vw, 340px);
  }
  
  .sa-ceo-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }
}

@media (max-width: 640px) {
  .sa-geo-shape {
    width: 60%;
    height: 50%;
  }
  
  .sa-curve-cutout {
    width: 65%;
    height: 60%;
  }
  
  .sa-quote-box {
    padding: 1.75rem;
  }
  
  .sa-ceo-info {
    padding-left: 1rem;
  }
}


.sa-services-section {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}
.sa-services-section::before {
  content: '';
  position: absolute;
  top: -5%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,80,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* INTRO */
.sa-intro {
  text-align: center;
  margin-bottom: 7rem;
  position: relative; z-index: 2;
  padding: 0 2rem;
}
.sa-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #4D9EFF; margin-bottom: 2rem;
}
.sa-eyebrow-line { width: 32px; height: 1px; background: #4D9EFF; opacity: 0.4; }
.sa-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.05em; line-height: 0.9;
  margin-bottom: 2rem; color: #fff;
}
.sa-heading .h-plain { display: block; }
.sa-heading .h-grad {
  display: block;
  background: linear-gradient(90deg, #2979FF, #00C2FF, #60C0FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%;
  animation: saGrad 5s linear infinite;
}
.sa-heading .h-serif {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  font-size: 0.72em; color: rgba(255,255,255,0.18);
  letter-spacing: 0;
}
@keyframes saGrad { 0%{background-position:0%} 100%{background-position:200%} }
.sa-sub {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: rgba(255,255,255,0.28); max-width: 380px; margin: 0 auto;
}

/* CONTENT WRAP */
.sa-content {
  max-width: 1240px; margin: 0 auto;
  padding: 0 3rem; position: relative; z-index: 2;
}

/* BENEFITS HORIZONTAL GRID */
.sa-benefits-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; overflow: hidden;
  margin-bottom: 5rem;
}
.sa-bcell {
  padding: 2.6rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background 0.4s; cursor: default;
}
.sa-bcell::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,71,255,0.09), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.sa-bcell::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #2979FF, transparent);
  transform: translateX(-100%); transition: transform 0.5s ease;
}
.sa-bcell:hover::before { opacity: 1; }
.sa-bcell:hover::after  { transform: translateX(0); }
.sa-bcell:hover .sa-bicon {
  background: rgba(41,121,255,0.18);
  box-shadow: 0 0 18px rgba(41,121,255,0.14);
}
.sa-bnum {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: rgba(41,121,255,0.3);
  margin-bottom: 1.6rem; display: block;
}
.sa-bicon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(41,121,255,0.08);
  border: 1px solid rgba(41,121,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: #4D9EFF; font-size: 0.9rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.sa-btitle {
  font-weight: 700; font-size: 0.82rem;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 0.6rem; line-height: 1.3;
}
.sa-btext {
  font-size: 11px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.25);
}

/* BOTTOM ROW */
.sa-bottom {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}

/* Left statement */
.sa-stag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #4D9EFF; margin-bottom: 1.8rem;
}
.sa-tagdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #00C2FF; animation: saBlink 2s ease infinite;
}
@keyframes saBlink { 0%,100%{opacity:1} 50%{opacity:.15} }

.sa-sdesc {
  font-size: 13px; font-weight: 300; line-height: 2;
  color: rgba(255,255,255,0.28); max-width: 380px; margin-bottom: 2rem;
}
.sa-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.sa-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(41,121,255,0.07);
  border: 1px solid rgba(41,121,255,0.15);
  border-radius: 100px; padding: 0.45rem 1rem;
  font-size: 10px; font-weight: 600;
  color: #4D9EFF; letter-spacing: 0.08em;
  transition: background 0.3s, border-color 0.3s;
}
.sa-pill:hover { background: rgba(41,121,255,0.14); border-color: rgba(77,158,255,0.35); }
.sa-pilldot { width: 4px; height: 4px; border-radius: 50%; background: #00C2FF; }
.sa-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  padding: 1rem 2.2rem; border-radius: 100px;
  background: linear-gradient(135deg, #0047FF, #0080FF);
  box-shadow: 0 8px 40px rgba(0,71,255,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sa-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,71,255,0.45); }

/* Tech block right */
.sa-tech {
  padding: 2.8rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.sa-tech::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,71,255,0.12), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.sa-tech-header {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 2rem;
}
.sa-tech-title { font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; color: #fff; }
.sa-tech-sub { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.sa-tech-grid { display: flex; flex-direction: column; }
.sa-tech-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding-left 0.3s; cursor: default;
}
.sa-tech-row:last-child { border-bottom: none; }
.sa-tech-row:hover { padding-left: 0.7rem; }
.sa-tech-row:hover .sa-ticon { background: rgba(41,121,255,0.09); border-color: rgba(41,121,255,0.22); }
.sa-ticon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.sa-ticon img { width: 24px; height: 24px; object-fit: contain; }
.sa-tinfo { flex: 1; }
.sa-tname { font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.6); display: block; letter-spacing: -0.01em; }
.sa-trole { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.08em; display: block; margin-top: 0.1rem; }
.sa-tbar { width: 56px; height: 2px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.sa-tbar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #2979FF, #00C2FF); }

/* REVEAL */
.sa-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.sa-reveal.on { opacity: 1; transform: translateY(0); }
.sa-d1{transition-delay:.08s} .sa-d2{transition-delay:.16s}
.sa-d3{transition-delay:.24s} .sa-d4{transition-delay:.32s} .sa-d5{transition-delay:.40s}

/* RESPONSIVE */
@media(max-width:1100px){ .sa-benefits-row{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:768px){
  .sa-content{ padding:0 1.5rem; }
  .sa-benefits-row{ grid-template-columns:1fr 1fr; }
  .sa-bottom{ grid-template-columns:1fr; }
}
@media(max-width:480px){ .sa-benefits-row{ grid-template-columns:1fr; } }

/* ── GRAPHIC SECTION ── */
.gfx-section {
  position: relative;
  padding: 9rem 0 11rem;
  overflow: hidden;
}

.gfx-section::before {
  content: '';
  position: absolute;
  top: 30%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,71,255,0.06), transparent 70%);
  pointer-events: none;
}

.gfx-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative; z-index: 2;
}

/* ── HEADER — same pattern as other sections ── */
.gfx-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
}

.gfx-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #4D9EFF; margin-bottom: 1.4rem;
}
.gfx-kicker-line { width: 28px; height: 1px; background: #4D9EFF; opacity: 0.4; }

.gfx-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.05em; line-height: 0.9;
}
.gfx-title .t-outline {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  -webkit-text-fill-color: transparent; color: transparent;
}
.gfx-title .t-solid { display: block; color: #fff; }
.gfx-title .t-grad {
  display: block;
  background: linear-gradient(90deg, #2979FF, #00C2FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gfx-header-right {
  max-width: 280px; flex-shrink: 0;
  font-size: 13px; font-weight: 300;
  line-height: 2; color: rgba(255,255,255,0.28);
}

/* ── POSTER GRID ── */
.gfx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Offset middle card for visual rhythm */
.gfx-grid .gfx-item:nth-child(2) {
  margin-top: 3rem;
}

.gfx-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  cursor: default;
}

/* Poster frame — 4:5 ratio */
.gfx-poster {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, #080D24, #0A1535);
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.5s,
              border-color 0.4s;
}

.gfx-item:hover .gfx-poster {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(41,121,255,0.2),
    0 0 60px rgba(0,71,255,0.08);
  border-color: rgba(41,121,255,0.25);
}

.gfx-poster img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.gfx-item:hover .gfx-poster img { transform: scale(1.04); }

/* Overlay that appears on hover */
.gfx-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,5,15,0.85) 0%, rgba(4,5,15,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex; align-items: flex-end;
  padding: 1.8rem;
}
.gfx-item:hover .gfx-overlay { opacity: 1; }

.gfx-overlay-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(41,121,255,0.15);
  border: 1px solid rgba(41,121,255,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #4D9EFF;
  backdrop-filter: blur(8px);
}

/* Placeholder (before real images) */
.gfx-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}
.gfx-ph-icon { font-size: 3rem; opacity: 0.12; }
.gfx-ph-lbl {
  font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(77,158,255,0.3);
  text-align: center;
}

/* ── POSTER CAPTION ── */
.gfx-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.4rem;
}
.gfx-cap-left {}
.gfx-cap-num {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; color: rgba(41,121,255,0.35);
  display: block; margin-bottom: 0.3rem;
}
.gfx-cap-title {
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: -0.02em; color: rgba(255,255,255,0.7);
}
.gfx-cap-type {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 0.3rem 0.8rem;
}

/* ── BOTTOM STRIP ── */
.gfx-strip {
  margin-top: 5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative; overflow: hidden;
}
.gfx-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41,121,255,0.4), transparent);
}

.gfx-strip-left {
  display: flex; align-items: center; gap: 3rem;
}
.gfx-strip-stat {}
.gfx-strip-val {
  font-weight: 900; font-size: 2rem;
  letter-spacing: -0.05em; color: #fff;
  display: block; line-height: 1;
}
.gfx-strip-val span { color: #4D9EFF; }
.gfx-strip-lbl {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
  display: block; margin-top: 0.3rem;
}

.gfx-strip-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.07);
}

.gfx-strip-text {
  font-size: 13px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,0.28);
  max-width: 380px;
}

.gfx-strip-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none; white-space: nowrap;
  padding: 0.9rem 2rem; border-radius: 100px;
  background: linear-gradient(135deg, #0047FF, #0080FF);
  box-shadow: 0 8px 30px rgba(0,71,255,0.28);
  transition: transform 0.3s, box-shadow 0.3s; flex-shrink: 0;
}
.gfx-strip-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,71,255,0.42); }

/* ── REVEAL ── */
.gfx-reveal { opacity:0; transform:translateY(28px); transition:opacity .9s ease,transform .9s ease; }
.gfx-reveal.on { opacity:1; transform:translateY(0); }
.gfx-d1{transition-delay:.08s} .gfx-d2{transition-delay:.2s} .gfx-d3{transition-delay:.32s}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .gfx-wrap{ padding:0 1.5rem; }
  .gfx-header{ flex-direction:column; align-items:flex-start; }
  .gfx-grid{ grid-template-columns:1fr; }
  .gfx-grid .gfx-item:nth-child(2){ margin-top:0; }
  .gfx-strip{ flex-direction:column; align-items:flex-start; }
  .gfx-strip-left{ flex-wrap:wrap; }
}


.seo-section {
  position: relative;
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}

.star-cluster {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background-image: radial-gradient(2px 2px at calc(var(--x, 10) * 10%) calc(var(--y, 10) * 10%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 30) * 10%) calc(var(--y, 30) * 5%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 50) * 10%) calc(var(--y, 50) * 10%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 70) * 10%) calc(var(--y, 70) * 5%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 90) * 10%) calc(var(--y, 90) * 10%), white, transparent);
  opacity: 0.3;
  z-index: 0;
}

.seo-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.seo-visual {
  flex: 0 0 45%;
  position: relative;
  z-index: 3;
  height: 500px;
}

.orbit-visualization {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.planet-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #4f46e5, #312e81);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
  z-index: 10;
  animation: corePulse 4s ease-in-out infinite alternate;
}

.planet-core span {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
}

.orbit-path-1 {
  width: 200px;
  height: 200px;
  animation: orbitRotate 20s linear infinite;
}

.orbit-path-2 {
  width: 280px;
  height: 280px;
  animation: orbitRotate 30s linear infinite reverse;
}

.orbit-path-3 {
  width: 360px;
  height: 360px;
  animation: orbitRotate 40s linear infinite;
}

.orbit-keyword {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.orbit-keyword span {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.search-engine-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 70deg,
    rgba(79, 70, 229, 0.05) 75deg 85deg,
    transparent 90deg 160deg,
    rgba(79, 70, 229, 0.05) 165deg 175deg,
    transparent 180deg 250deg,
    rgba(79, 70, 229, 0.05) 255deg 265deg,
    transparent 270deg 340deg,
    rgba(79, 70, 229, 0.05) 345deg 355deg
  );
  border-radius: 50%;
  animation: raysSpin 30s linear infinite;
  z-index: 1;
  opacity: 0.7;
}

.seo-content {
  flex: 0 0 50%;
  z-index: 3;
}

.seo-title {
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(79, 70, 229, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #a5b4fc;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #e0e0ff;
}

.feature-card p {
  font-size: 0.95rem;
  color: #a5b4fc;
  line-height: 1.6;
}

@keyframes corePulse {
  0% {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes orbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes raysSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .seo-container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .seo-visual {
    flex: 0 0 auto;
    height: 350px;
  }
  
  .orbit-visualization {
    width: 300px;
    height: 300px;
  }
  
  .orbit-path-1 {
    width: 150px;
    height: 150px;
  }
  
  .orbit-path-2 {
    width: 210px;
    height: 210px;
  }
  
  .orbit-path-3 {
    width: 270px;
    height: 270px;
  }
  
  .seo-content {
    flex: 0 0 auto;
  }
  
  .seo-title {
    text-align: center;
  }
  
  .seo-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .orbit-visualization {
    width: 250px;
    height: 250px;
  }
  
  .planet-core {
    width: 80px;
    height: 80px;
  }
  
  .orbit-path-1 {
    width: 120px;
    height: 120px;
  }
  
  .orbit-path-2 {
    width: 180px;
    height: 180px;
  }
  
  .orbit-path-3 {
    width: 240px;
    height: 240px;
  }
}

/* ── SMM SECTION ── */
.smm-section {
  position: relative;
  padding: 9rem 0 11rem;
  overflow: hidden;
}

/* Atmosphere */
.smm-section::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,71,255,0.06) 0%, transparent 68%);
  pointer-events: none;
}

/* ── GIANT BG TEXT ── */
.smm-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(10rem, 20vw, 22rem);
  letter-spacing: -0.08em;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.smm-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════
   TOP — SPLIT HEADER
══════════════════════════════ */
.smm-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-end;
  margin-bottom: 6rem;
}

.smm-top-left {}

.smm-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #4D9EFF; margin-bottom: 2rem;
}
.smm-kicker-line { width: 28px; height: 1px; background: #4D9EFF; opacity: 0.45; }

.smm-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #fff;
}
.smm-heading .word-outline {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.smm-heading .word-solid { display: block; }
.smm-heading .word-blue {
  display: block;
  background: linear-gradient(90deg, #2979FF 0%, #00C2FF 60%, #4D9EFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.smm-top-right {
  padding-bottom: 0.5rem;
}
.smm-desc {
  font-size: 14px; font-weight: 300; line-height: 2.1;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2.5rem;
}
.smm-cta {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  padding: 1rem 2.2rem; border-radius: 100px;
  background: linear-gradient(135deg, #0047FF, #0080FF);
  box-shadow: 0 8px 40px rgba(0,71,255,0.28);
  transition: transform 0.3s, box-shadow 0.3s;
}
.smm-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(0,71,255,0.44); }

/* ══════════════════════════════
   PLATFORMS MARQUEE STRIP
══════════════════════════════ */
.smm-platforms-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  margin-bottom: 6rem;
  overflow: hidden;
  position: relative;
}
/* fade edges */
.smm-platforms-strip::before,
.smm-platforms-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.smm-platforms-strip::before { left: 0; background: linear-gradient(to right, #04050F, transparent); }
.smm-platforms-strip::after  { right: 0; background: linear-gradient(to left,  #04050F, transparent); }

.smm-platforms-track {
  display: inline-flex;
  align-items: center;
  animation: smmScroll 18s linear infinite;
  white-space: nowrap;
}
.smm-platforms-track:hover { animation-play-state: paused; }
@keyframes smmScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.smm-platform-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 3rem;
  cursor: default;
  transition: opacity 0.3s;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.smm-platform-item:hover { opacity: 1; }
.smm-platform-item:hover .smm-plat-icon { transform: scale(1.1) rotate(-5deg); }

.smm-plat-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: transform 0.3s;
}
.smm-plat-icon img { width: 28px; height: 28px; object-fit: contain; }
.smm-plat-name {
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: -0.01em; color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.smm-platform-item:hover .smm-plat-name { color: rgba(255,255,255,0.9); }

/* Platform icon tint bg */
.plat-ig  { background: rgba(225,48,108,0.12); }
.plat-fb  { background: rgba(24,119,242,0.12); }
.plat-tw  { background: rgba(29,161,242,0.12); }
.plat-li  { background: rgba(10,102,194,0.12); }
.plat-wa  { background: rgba(37,211,102,0.12); }
.plat-yt  { background: rgba(255,0,0,0.1); }
.plat-tt  { background: rgba(255,0,80,0.1); }
.plat-pi  { background: rgba(230,0,35,0.1); }

/* ══════════════════════════════
   BENTO BENEFITS GRID
══════════════════════════════ */
.smm-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1.5rem;
}

/* Base card */
.smm-bcard {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: border-color 0.35s, transform 0.4s;
  cursor: default;
}
.smm-bcard:hover {
  border-color: rgba(41,121,255,0.25);
  transform: translateY(-4px);
}
.smm-bcard::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,71,255,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  border-radius: 20px;
}
.smm-bcard:hover::before { opacity: 1; }

/* Grid placements */
.smm-bc-1 { grid-column: 1 / 6; }   /* Visibilité — wide left */
.smm-bc-2 { grid-column: 6 / 9; }   /* Engagement — medium */
.smm-bc-3 { grid-column: 9 / 13; }  /* Analyse — medium right */
.smm-bc-4 { grid-column: 1 / 5; }   /* Contenu — left */
.smm-bc-5 { grid-column: 5 / 9; }   /* Stratégie — center */
.smm-bc-6 { grid-column: 9 / 13; }  /* Reporting — right */

/* Card 1 — featured wide */
.smm-bc-1 {
  background: linear-gradient(135deg, rgba(0,71,255,0.1) 0%, rgba(0,130,255,0.05) 50%, transparent 100%);
  border-color: rgba(41,121,255,0.18);
}

.smm-bc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(41,121,255,0.1);
  border: 1px solid rgba(41,121,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #4D9EFF; font-size: 1rem;
  margin-bottom: 1.8rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.smm-bcard:hover .smm-bc-icon {
  background: rgba(41,121,255,0.2);
  box-shadow: 0 0 20px rgba(41,121,255,0.15);
}
.smm-bc-1 .smm-bc-icon {
  background: linear-gradient(135deg, #0047FF, #0080FF);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0,71,255,0.3);
  color: #fff;
}

.smm-bc-num {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.1);
}

.smm-bc-title {
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: -0.02em;
  color: #fff; margin-bottom: 0.8rem; line-height: 1.2;
}
.smm-bc-1 .smm-bc-title { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.smm-bc-text {
  font-size: 12px; font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.28);
}

/* Stat inside card 1 */
.smm-bc-stat {
  display: flex; gap: 2rem; margin-top: 1.8rem;
}
.smm-stat-item {}
.smm-stat-val {
  font-weight: 900; font-size: 2rem;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff, #A8D4FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1;
}
.smm-stat-val span { color: #4D9EFF; -webkit-text-fill-color: #4D9EFF; }
.smm-stat-lbl {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); display: block; margin-top: 0.3rem;
}

/* Decorative diagonal stripe on card 3 */
.smm-bc-3::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(41,121,255,0.08) 50%);
  border-radius: 0 20px 0 0;
}

/* Card 5 — slightly highlighted */
.smm-bc-5 {
  background: rgba(255,255,255,0.02);
}

/* ══════════════════════════════
   PROCESS ROW — bottom strip
══════════════════════════════ */
.smm-process {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.smm-proc-step {
  padding: 2.2rem 2rem;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.smm-proc-step:hover { background: rgba(41,121,255,0.05); }
.smm-proc-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.6rem; top: 50%;
  transform: translateY(-50%);
  color: rgba(41,121,255,0.3);
  font-size: 1rem; z-index: 1;
}

.smm-proc-n {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; color: rgba(41,121,255,0.35);
  display: block; margin-bottom: 1rem;
}
.smm-proc-title {
  font-weight: 700; font-size: 0.88rem;
  color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.smm-proc-text {
  font-size: 11px; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.25);
}

/* ── REVEAL ── */
.smm-reveal { opacity:0; transform:translateY(28px); transition:opacity .9s ease,transform .9s ease; }
.smm-reveal.on { opacity:1; transform:translateY(0); }
.smm-d1{transition-delay:.06s} .smm-d2{transition-delay:.14s}
.smm-d3{transition-delay:.22s} .smm-d4{transition-delay:.30s}
.smm-d5{transition-delay:.38s} .smm-d6{transition-delay:.46s}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .smm-bc-1{grid-column:1/8} .smm-bc-2{grid-column:8/13} .smm-bc-3{grid-column:1/5}
  .smm-bc-4{grid-column:5/9} .smm-bc-5{grid-column:9/13} .smm-bc-6{grid-column:1/13}
  .smm-process{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .smm-wrap{padding:0 1.5rem}
  .smm-top{grid-template-columns:1fr; gap:2.5rem}
  .smm-bento{grid-template-columns:1fr}
  .smm-bc-1,.smm-bc-2,.smm-bc-3,.smm-bc-4,.smm-bc-5,.smm-bc-6{grid-column:1/-1}
  .smm-process{grid-template-columns:1fr}
  .smm-proc-step::after{display:none}
}

/* Variables */
:root {
  --faq-space-primary: #3b82f6;
  --faq-space-secondary: #60a5fa;
  --faq-space-accent: #fbbf24;
  --faq-space-dark: rgba(15, 23, 42, 0.6);
  --faq-space-glass: rgba(255, 255, 255, 0.05);
}

/* Container */
.faq-space-container {
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Header */
.faq-space-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.faq-space-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-space-title-word {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: faqSpaceTitleFloat 3s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
}

.faq-space-title-word:nth-child(1) { animation-delay: 0s; }
.faq-space-title-word:nth-child(2) { animation-delay: 0.2s; }
.faq-space-title-word:nth-child(3) { animation-delay: 0.4s; }

@keyframes faqSpaceTitleFloat {
  0%, 100% { transform: translateY(0) rotateX(0); }
  50% { transform: translateY(-15px) rotateX(5deg); }
}

.faq-space-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 2px;
}

/* FAQ Items */
.faq-space-item {
  margin-bottom: 120px;
  opacity: 0;
  animation: faqSpaceFadeInScale 0.8s ease forwards;
  animation-delay: calc(var(--index) * 0.1s);
}

.faq-space-item:nth-child(even) .faq-space-card {
  flex-direction: row-reverse;
}

@keyframes faqSpaceFadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* FAQ Card */
.faq-space-card {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  padding: 40px;
  background: var(--faq-space-dark);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.faq-space-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 0%, 
    rgba(59, 130, 246, 0.3) 50%, 
    transparent 100%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.faq-space-card:hover::before {
  opacity: 1;
  animation: faqSpaceBorderGlow 2s linear infinite;
}

@keyframes faqSpaceBorderGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.faq-space-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 60px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Question Container */
.faq-space-question-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-space-question-number {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.1);
  z-index: 0;
  line-height: 1;
}

/* Planet Question */
.faq-space-planet {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #001f3f, #003d7a);
  box-shadow: 
    0 0 60px rgba(59, 130, 246, 0.6),
    inset 0 0 40px rgba(0, 100, 200, 0.3),
    inset -10px -10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: faqSpacePlanetRotate 20s linear infinite;
  z-index: 2;
}

@keyframes faqSpacePlanetRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.faq-space-card:hover .faq-space-planet {
  transform: scale(1.1);
  box-shadow: 
    0 0 80px rgba(59, 130, 246, 0.8),
    inset 0 0 60px rgba(0, 150, 255, 0.4);
}

.faq-space-planet-core {
  position: absolute;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: faqSpaceCorePulse 3s ease-in-out infinite;
}

@keyframes faqSpaceCorePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.faq-space-planet-atmosphere {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, transparent 60%, rgba(59, 130, 246, 0.2) 80%, transparent 100%);
  border-radius: 50%;
  animation: faqSpaceAtmosphereGlow 4s ease-in-out infinite;
}

@keyframes faqSpaceAtmosphereGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.faq-space-planet-text {
  max-width: 80%;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  z-index: 3;
  position: relative;
  padding: 20px;
  animation: faqSpaceTextFloat 6s ease-in-out infinite;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes faqSpaceTextFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Orbits */
.faq-space-orbit {
  position: absolute;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: faqSpaceOrbitRotate 15s linear infinite;
}

.faq-space-orbit-1 {
  width: 350px;
  height: 350px;
  animation-duration: 10s;
}

.faq-space-orbit-2 {
  width: 420px;
  height: 420px;
  animation-duration: 15s;
  animation-direction: reverse;
}

.faq-space-orbit-3 {
  width: 490px;
  height: 490px;
  animation-duration: 20s;
  opacity: 0.5;
}

@keyframes faqSpaceOrbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Answer Container */
.faq-space-answer-container {
  flex: 1.2;
  position: relative;
}

/* Meteor Answer */
.faq-space-meteor {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.3);
  overflow: hidden;
  transition: all 0.5s ease;
}

.faq-space-card:hover .faq-space-meteor {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.faq-space-meteor-glow {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  animation: faqSpaceMeteorGlow 8s linear infinite;
}

@keyframes faqSpaceMeteorGlow {
  0% { transform: translate(-50%, -50%); }
  100% { transform: translate(50%, 50%); }
}

.faq-space-meteor-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.faq-space-meteor-particles {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.faq-space-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #60a5fa;
  border-radius: 50%;
  animation: faqSpaceParticleFloat 5s ease-in-out infinite;
  opacity: 0;
  box-shadow: 0 0 10px #60a5fa;
}

.faq-space-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.faq-space-particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.faq-space-particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.faq-space-particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.faq-space-particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }

@keyframes faqSpaceParticleFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-30px); }
}

/* Action Buttons */
.faq-space-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.faq-space-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.faq-space-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.faq-space-btn:hover::before {
  width: 300px;
  height: 300px;
}

.faq-space-btn svg {
  position: relative;
  z-index: 1;
}

.faq-space-btn span {
  position: relative;
  z-index: 1;
}

.faq-space-btn-edit {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
  border: 2px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.faq-space-btn-edit:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.3));
  border-color: #60a5fa;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}

.faq-space-btn-delete {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.faq-space-btn-delete:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.3));
  border-color: #f87171;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
  transform: translateY(-3px);
}

.faq-space-delete-form {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-space-title {
    font-size: 3rem;
  }
  
  .faq-space-card {
    flex-direction: column !important;
    gap: 40px;
    padding: 30px;
  }
  
  .faq-space-planet {
    width: 240px;
    height: 240px;
  }
  
  .faq-space-orbit-1, .faq-space-orbit-2, .faq-space-orbit-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-space-container {
    padding: 80px 15px;
  }
  
  .faq-space-title {
    font-size: 2rem;
    gap: 10px;
  }
  
  .faq-space-subtitle {
    font-size: 1rem;
  }
  
  .faq-space-header {
    margin-bottom: 60px;
  }
  
  .faq-space-item {
    margin-bottom: 80px;
  }
  
  .faq-space-card {
    padding: 25px;
  }
  
  .faq-space-planet {
    width: 200px;
    height: 200px;
  }
  
  .faq-space-planet-text {
    font-size: 0.9rem;
  }
  
  .faq-space-meteor {
    padding: 25px;
  }
  
  .faq-space-meteor-text {
    font-size: 0.95rem;
  }
  
  .faq-space-question-number {
    font-size: 3rem;
    top: -30px;
  }
}

@media (max-width: 480px) {
  .faq-space-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 5px;
  }
  
  .faq-space-planet {
    width: 180px;
    height: 180px;
  }
  
  .faq-space-actions {
    flex-direction: column;
  }
  
  .faq-space-btn {
    width: 100%;
    justify-content: center;
  }
}

.earth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

.earth-container {
  text-align: center;
  max-width: 800px; /* Adjust if you want to limit the width of the section */
  margin: 0 auto; /* Center the container */
}

.earth-image {
  max-width: 100%;
  height: auto;
  width: 80%; /* Set a percentage of the container width */
  max-width: 600px; /* Set a maximum width for the image */
  display: block;
  margin: 0 auto;
}

.earth-description {
  margin-top: 20px;
  color: white;
}

.divider {
  border: 0;
  height: 1px;
  background: #504949; /* Line color */
  margin: 20px auto;
  width: 50%; /* Adjust width as needed */
}

.earth-description p {
  margin: 0;
  font-size: 16px; /* Adjust font size as needed */
}


/* Premium CEO Section */
.ceo-section {
  padding: 8rem 0;
  position: relative;
}

.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 8rem;
  align-items: center;
}

/* Image Container */
.ceo-image-container {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.ceo-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(15%) contrast(1.05);
}

.image-frame:hover .ceo-image {
  transform: scale(1.05);
}

.signature {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Content Container */
.ceo-content {
  position: relative;
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.quote-container {
  position: relative;
  margin-bottom: 4rem;
}

.quote-mark {
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Times New Roman', serif;
  position: absolute;
  top: -2rem;
  left: -1rem;
  z-index: 1;
  font-weight: 400;
}

.ceo-quote {
  font-size: 2.2rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #ffffff 0%, #64b5f6 30%, #1976d2 70%, #0d47a1 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  margin: 0;
  font-style: normal;
  animation: gradientShift 6s ease-in-out infinite;
}

/* CEO Info */
.ceo-info {
  position: relative;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #2196f3 0%, #64b5f6 50%, rgba(255, 255, 255, 0.3) 100%);
  margin-bottom: 2rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: expandLine 0.8s ease-out 1s forwards;
}

.ceo-name {
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ffffff 0%, #90caf9 50%, #2196f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.ceo-title {
  font-size: 1rem;
  background: linear-gradient(90deg, #bbdefb 0%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

/* Animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ceo-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .ceo-image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .ceo-image {
    height: 500px;
  }

  .quote-mark {
    left: 50%;
    transform: translateX(-50%);
  }

  .divider-line {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    padding: 4rem 0;
  }

  .ceo-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .ceo-image-container {
    max-width: 300px;
  }

  .ceo-image {
    height: 400px;
  }

  .ceo-quote {
    font-size: 1.6rem;
  }

  .ceo-name {
    font-size: 1.5rem;
  }

  .quote-mark {
    font-size: 6rem;
    top: -1rem;
  }
}

@media (max-width: 480px) {
  .ceo-container {
    gap: 2rem;
  }

  .ceo-quote {
    font-size: 1.3rem;
  }

  .ceo-name {
    font-size: 1.3rem;
  }

  .signature {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

/* ── SHOWCASE SECTION ── */
.sc-section {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}

.sc-section::before {
  content: '';
  position: absolute;
  top: 20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(0,71,255,0.05), transparent 70%);
  pointer-events: none;
}

/* ── HEADER ── */
.sc-header {
  max-width: 1240px;
  margin: 0 auto 6rem;
  padding: 0 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.sc-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #4D9EFF; margin-bottom: 1.4rem;
}
.sc-kicker-line { width: 28px; height: 1px; background: #4D9EFF; opacity: 0.4; }

.sc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.05em; line-height: 0.9;
  color: #fff;
}
.sc-title .t-outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  -webkit-text-fill-color: transparent;
  color: transparent; display: block;
}
.sc-title .t-grad {
  display: block;
  background: linear-gradient(90deg, #2979FF, #00C2FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sc-header-right {
  max-width: 300px;
  font-size: 13px; font-weight: 300;
  line-height: 2; color: rgba(255,255,255,0.28);
  flex-shrink: 0;
}

/* ── CARDS ── */
.sc-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s, transform 0.4s;
  background: linear-gradient(135deg, rgba(10,15,35,0.3), transparent);
}
.sc-card:hover {
  border-color: rgba(41,121,255,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.sc-card.reverse { direction: rtl; }
.sc-card.reverse > * { direction: ltr; }

/* Image side - FIXED for full screenshot visibility */
.sc-img-side {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a1128, #111a3a);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  box-sizing: border-box;
}

/* ✅ KEY FIX: Show FULL screenshot, no cropping */
.sc-img-side img {
  width: 100%; 
  height: 100%;
  object-fit: contain; /* ← Changed from 'cover' to show full image */
  display: block;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94), opacity 0.4s, filter 0.4s;
  opacity: 1; /* ← Was 0.85 - now fully visible */
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.sc-card:hover .sc-img-side img { 
  transform: scale(1.02); 
  opacity: 1; 
  filter: brightness(1.03) drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}

/* ✅ Lighter gradient overlay - doesn't hide your screenshots */
.sc-img-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, 
    rgba(4,5,15,0.02), 
    rgba(4,5,15,0.08)
  );
  pointer-events: none;
  border-radius: 8px;
  margin: 1.2rem;
}
.sc-card.reverse .sc-img-side::after {
  background: linear-gradient(to left, 
    rgba(4,5,15,0.02), 
    rgba(4,5,15,0.08)
  );
}

/* ✅ Better placeholder visibility for demo projects */
.sc-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #0f1a35, #1a2545);
  border-radius: 8px;
  border: 1px dashed rgba(77,158,255,0.3);
}
.sc-ph-icon { 
  font-size: 3rem; 
  opacity: 0.5; 
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sc-ph-lbl {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; 
  color: rgba(77,158,255,0.85);
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

/* Text side */
.sc-text-side {
  padding: 3rem 3.5rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 0;
}

.sc-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: #4D9EFF;
  margin-bottom: 1.4rem;
}
.sc-badge::before {
  content: '';
  width: 20px; height: 1px;
  background: #4D9EFF; opacity: 0.5;
}

.sc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.04em; line-height: 1.1;
  color: #fff; margin-bottom: 1rem;
}

.sc-card-desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.9; color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
  max-width: 380px;
}

.sc-link {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  padding: 0.85rem 2rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  align-self: flex-start;
  transition: background 0.3s, border-color 0.3s, gap 0.3s, box-shadow 0.3s;
}
.sc-link svg { transition: transform 0.3s; flex-shrink: 0; }
.sc-link:hover {
  background: rgba(41,121,255,0.18);
  border-color: rgba(41,121,255,0.55);
  gap: 1.3rem;
  box-shadow: 0 8px 25px rgba(41,121,255,0.2);
}
.sc-link:hover svg { transform: translateX(4px); }

/* Featured card (first) — taller, accented */
.sc-card.featured {
  border-color: rgba(41,121,255,0.35);
  background: linear-gradient(135deg, rgba(0,71,255,0.08), rgba(0,194,255,0.04));
  box-shadow: 0 10px 40px rgba(0,71,255,0.12);
}
.sc-card.featured .sc-link {
  background: linear-gradient(135deg, #0047FF, #0080FF);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0,71,255,0.35);
}
.sc-card.featured .sc-link:hover { 
  box-shadow: 0 14px 45px rgba(0,71,255,0.55);
  transform: translateY(-1px);
}

/* Index counter */
.sc-index {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(77,158,255,0.6);
  z-index: 2;
  background: rgba(41,121,255,0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(41,121,255,0.25);
}

/* ── REVEAL ── */
.sc-reveal { opacity:0; transform:translateY(28px); transition:opacity .9s ease,transform .9s ease; }
.sc-reveal.on { opacity:1; transform:translateY(0); }
.sc-d1{transition-delay:.08s} .sc-d2{transition-delay:.18s} .sc-d3{transition-delay:.28s}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .sc-header{ flex-direction:column; align-items:flex-start; }
  .sc-list{ padding:0 1.5rem; }
  .sc-card, .sc-card.reverse { grid-template-columns:1fr; direction:ltr; }
  .sc-img-side{ min-height:240px; padding: 1rem; }
  .sc-text-side{ padding:2rem; }
  .sc-img-side img { border-radius: 6px; }
}

/* Extra small screens */
@media(max-width:480px){
  .sc-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .sc-card-title { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .sc-img-side { min-height: 200px; padding: 0.8rem; }
  .sc-text-side { padding: 1.5rem; }
}

  
.footer {
  color: #ffffff;
  width: 100%;
  padding: 3rem 0 1rem;
  margin: 0;
  border-top: 1px solid #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

/* Services Styles */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.services-list li:hover {
  color: #ffffff;
}

/* Contact Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
    z-index: 10; /* Ensures input is on top */
    pointer-events: auto; /* Ensures input is clickable */
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
    z-index: 10; /* Ensures input is on top */
    pointer-events: auto; /* Ensures input is clickable */
}

.social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}


/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }

  .contact-info {
      align-items: center;
  }

  .services-list {
      text-align: center;
  }
}