/* ============================================================= */
/* 🔥 H I R E O R A – ULTRA PREMIUM LANDING PAGE (2025 Edition) */
/*  Sexiest, cleanest, most modern UI with perfect alignment    */
/* ============================================================= */

/* ---------- GLOBAL SPACING ---------- */
section {
  padding: 5rem 0;
}

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: 2rem;
}

/* ============================================================= */
/* HERO SECTION – Apple / Linear-style Blend */
/* ============================================================= */



/* Optional: further reduce global section padding for the hero only */
.page-home > .hero {
  padding-top: 0.1rem;
  padding-bottom: 0rem; /* keep some bottom spacing */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

/* Pill */
.hero-pill {
  background: linear-gradient(135deg, rgba(102,126,234,0.25), rgba(140,82,255,0.25));
  border: 1px solid rgba(140,82,255,0.45);
  padding: .55rem 1.3rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(140,82,255,0.25);
}

/* Title */
.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1px;
}

.hero-title .grad-primary {
  background: linear-gradient(135deg, #6D83F7, #8A4BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
.hero-subtext {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
  opacity: .9;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.hero-actions a {
  padding: .85rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: .95rem;
  transition: .25s ease;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  color: #fff;
  box-shadow: 0 6px 24px rgba(140,82,255,0.35);
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(140,82,255,0.45);
}

.hero-actions .btn-outline {
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
}

.hero-actions .btn-outline:hover {
  background: rgba(102,126,234,0.15);
}

/* Trust Badges */
.hero-trust {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.6rem;
  font-size: .9rem;
  display: flex;
  gap: 1.8rem;
  color: var(--text-muted);
  opacity: .85;
}


/* ============================================================= */
/* HERO VISUAL – Premium Glass Card */
/* ============================================================= */

.hero-visual {
  background: rgba(20, 20, 35, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(22px);
  border-radius: 28px;
  padding: 2.6rem;
  height: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.glass-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255,255,255,.12);
  padding: 2rem;
  border-radius: 22px;
  width: 100%;
  max-width: 320px;
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.metric-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: .4rem;
}

/* ============================================================= */
/* SECTION HEADER */
/* ============================================================= */

.section-header {
  margin-bottom: 3.6rem;
  text-align: center;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section-subtext {
  font-size: 1rem;
  max-width: 620px;
  margin: 0.8rem auto 0;
  color: var(--text-secondary);
}

/* ============================================================= */
/* GRID SYSTEM */
/* ============================================================= */

.value-grid,
.steps-grid,
.jobs-grid,
.services-grid,
.expertise-grid,
.testimonials-grid,
.resources-grid {
  display: grid;
  gap: 2.4rem;
}

.value-grid { grid-template-columns: repeat(2, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.jobs-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.expertise-grid { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.resources-grid { grid-template-columns: repeat(3, 1fr); }

/* ============================================================= */
/* PREMIUM CARD STYLE */
/* ============================================================= */

.sub-card {
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,23,42,0.70);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.sub-card:hover {
  background: rgba(15,23,42,0.90);
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}

.sub-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.sub-card p {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.65;
}

/* ============================================================= */
/* STATS SECTION */
/* ============================================================= */

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-secondary);
  font-size: .95rem;
  margin-top: .4rem;
}

/* ============================================================= */
/* CTA SECTION */
/* ============================================================= */

.cta-section {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 5rem 0;
  text-align: center;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: .6rem;
}

.cta-subtext {
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
  font-size: 1.05rem;
}

/* CTA Buttons */
.cta-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

/* ============================================================= */
/* ABOUT SECTION – PREMIUM REDESIGN */
/* ============================================================= */

.about-section {
  padding: 6rem 0;
  position: relative;
}

/* Gradient soft glow behind */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 450px;
  height: 450px;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(102,126,234,0.15),
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-pill {
  padding: .4rem 1.2rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(102,126,234,0.15);
  border: 1px solid var(--accent-blue);
  display: inline-block;
  margin-bottom: 1rem;
}

.about-subtext {
  max-width: 620px;
  margin: 1rem auto 0;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

/* Glass Content Card */
.glass-about {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  transition: .25s ease;
}

.glass-about:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
}

/* Text inside */
.glass-about p {
  margin-bottom: 1.3rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Button */
.about-btn {
  margin-top: .4rem;
  padding: .9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
}

/* Right Visual */
.about-photo-card {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-glass);
  backdrop-filter: blur(22px);
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

.about-image {
  width: 100%;
  height: 100%;
  background: url('https://plus.unsplash.com/premium_photo-1661767467261-4a4bed92a507?q=80&w=1770&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')
    center/cover no-repeat;
  opacity: 0.9;
}

/* Floating Badge */
.about-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: .5rem 1.2rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: .85rem;
  color: #fff;
  font-weight: 600;
}

/* Float animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ------------------------------ */
/* RESPONSIVE */
/* ------------------------------ */
@media(max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .glass-about {
    padding: 2rem;
  }
  .about-photo-card {
    height: 300px;
  }
}

@media(max-width: 520px) {
  .about-photo-card {
    height: 240px;
  }
  .glass-about p {
    font-size: .95rem;
  }
}


/* ============================================================= */
/* RESPONSIVENESS */
/* ============================================================= */

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 350px; }
}

@media (max-width: 820px) {
  section { padding: 3.8rem 0; }
  .section-title { font-size: 2.2rem; }
  .value-grid,
  .services-grid,
  .expertise-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-title { font-size: 2.2rem; }
  .hero-visual { height: 260px; }
  .hero-grid { gap: 2rem; }
  .sub-card { padding: 1.6rem; }
}