section {
  padding: 50px 0;
}

/* ══════════════════════════════════════════════════════
           TYPOGRAPHY - CORMORANT + OUTFIT
        ═══════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.2;
  color: white;
}

h1 {
  font-size: clamp(48px, 7vw, 72px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

p {
  /* font-size: 18px; */
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════
           LAYOUT
        ═══════════════════════════════════════════════════════ */
.container {
  max-width: 100%;
  padding: 0 16px;
}

.container-narrow {
  max-width: 100%;
  padding: 0 16px;
}

@media (min-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .container-narrow {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .container-narrow {
    max-width: 960px;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

/* Hero Section */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #1a1f2c;
  width: 100%;
  margin: 0;
  padding-top: 120px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  max-width: 1000px;
}

.hero-tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  width: fit-content;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  text-align: center;
}

.hero-intro {
  font-size: 20px;
  color: #d1d5db;
  max-width: 820px;
  line-height: 1.8;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  text-align: center;
}

.hero-value-props {
  display: flex;
  gap: 30px;
  max-width: 850px;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  color: #d1d5db;
}

.value-prop::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  margin-right: 8px;
  box-shadow: 0 0 10px var(--glow-primary);
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .hero-value-props {
    display: none;
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.value-prop {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-wrap: nowrap;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 100px 0px;
  }

  .hero-content {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .hero-cta {
    gap: 16px;
  }

  .hero-cta a {
    padding-block: 18px;
    font-size: 14px;
  }
}

.btn {
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-white);
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0ea5e9e6;
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  padding: 17px 40px;
  border: 1px solid #00a3ff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════════════
   INTRO SECTION - EXPERIENCE & TRUST (RESPONSIVE)
═══════════════════════════════════════════════════════ */
.intro-section {
  background: white;
  position: relative;
  padding: 50px 0;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-badge {
  background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
  border-radius: 12px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.intro-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
}

/* @keyframes badgeGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.badge-number {
  font-family: "Inter", sans-serif;
  font-size: 96px;
  font-weight: 300;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.badge-text {
  font-size: 18px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.badge-subtext {
  font-size: 14px;
  color: #d1d5db;
  margin-top: 8px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 8px;
  /* border-bottom: 2px solid var(--accent-blue); */
}

.intro-content h2 {
  margin-bottom: 28px;
  color: #000000;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #050505;
  max-width: none;
  margin-bottom: 20px;
  text-align: justify;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════
   TABLET RESPONSIVE (768px - 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-section {
    padding: 80px 0;
  }

  .intro-grid {
    gap: 60px;
  }

  .intro-badge {
    padding: 50px 40px;
  }

  .badge-number {
    font-size: 80px;
  }

  .badge-text {
    font-size: 16px;
  }

  .intro-content p {
    font-size: 16px;
  }
}

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE (768px and below)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .intro-section {
    padding: 60px 0;
  }

  .intro-section::before {
    width: 150px;
  }

  /* Stack into single column */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-badge {
    padding: 40px 30px;
    text-align: center;
  }

  .badge-number {
    font-size: 72px;
  }

  .badge-text {
    font-size: 16px;
  }

  .badge-subtext {
    font-size: 13px;
    line-height: 1.7;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .intro-content h2 {
    /* font-size: 32px; */
    margin-bottom: 24px;
  }

  .intro-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    hyphens: auto;
  }
}

/* ══════════════════════════════════════════════════════
   SMALL MOBILE (480px and below)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .intro-section {
    padding: 50px 0;
  }

  .intro-grid {
    gap: 30px;
  }

  .intro-badge {
    padding: 30px 20px;
    border-radius: 8px;
  }

  .badge-number {
    font-size: 56px;
    margin-bottom: 12px;
  }

  .badge-text {
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .badge-subtext {
    font-size: 12px;
    margin-top: 10px;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .intro-content h2 {
    /* font-size: 26px; */
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .intro-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}

/* ══════════════════════════════════════════════════════
   EXTRA SMALL MOBILE (360px and below)
═══════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .intro-section {
    padding: 40px 0;
  }

  .intro-badge {
    padding: 25px 15px;
  }

  .badge-number {
    font-size: 48px;
  }

  .badge-text {
    font-size: 14px;
  }

  .badge-subtext {
    font-size: 11px;
  }

  .intro-content h2 {
    font-size: 24px;
  }

  .intro-content p {
    font-size: 13px;
  }
}
/* ══════════════════════════════════════════════════════
           CHALLENGES SECTION
        ═══════════════════════════════════════════════════════ */
.challenges-section {
  background: var(--primary-dark);
  color: white;
}

.challenges-section h2 {
  color: white;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 64px;
  background: rgba(14, 165, 233, 0.2);
  padding: 2px;
}

.challenge-card {
  background: var(--primary-dark);
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s ease;
}

.challenge-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--accent-blue);
  transition: height 0.4s ease;
}

.challenge-card:hover {
  background: rgba(58, 80, 107, 0.3);
}

.challenge-card:hover::before {
  height: 100%;
}

.challenge-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.challenge-card p {
  margin: 0;
  color: rgba(250, 249, 246, 0.9);
  line-height: 1.7;
  max-width: none;
}

/* ══════════════════════════════════════════════════════
           SOLUTIONS SECTION
        ═══════════════════════════════════════════════════════ */
.solutions-section {
  background: white;
}

.solutions-section h2 {
  color: var(--primary-dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.solution-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--cream-dark);
  transition: all 0.4s ease;
  position: relative;
}

.solution-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.4s ease;
}

.solution-card:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.solution-card:hover::after {
  width: 100%;
}

.solution-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-blue), rgba(14, 165, 233, 0.5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: white;
  box-shadow: rgba(14, 165, 233, 0.5);
}

.solution-content h3 {
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--primary-dark);
}

.solution-content p {
  margin: 0;
  color: var(--text-mid);
  text-align: justify;
}

@media (max-width: 576px) {
  .solution-card {
    padding: 16px;
    gap: 12px;
  }

  .solution-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 80px 0;
  }

  .solutions-grid {
    gap: 24px;
  }

  .solution-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .solution-content h3 {
    font-size: 30px;
    font-weight: 500;
  }

  .solution-content p {
    font-size: 0.98rem;
    hyphens: auto;
  }
}

/* ══════════════════════════════════════════════════════
           CAPABILITIES SECTION
        ═══════════════════════════════════════════════════════ */
.capabilities-section {
  background: var(--primary-dark);
  color: white;
}

.capabilities-section h2 {
  color: white;
}

.capabilities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: rgba(250, 249, 246, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(14, 165, 233, 0.23);
  transition: all 0.3s ease;
}

.capability-item:hover {
  background: rgba(250, 249, 246, 0.08);
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.capability-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 15px var(--accent-blue);
}

.capability-item p {
  margin: 0;
  color: var(--cream);
  font-size: 16px;
  max-width: none;
}

@media (max-width: 768px) {
  .capabilities-list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════
            CASE STUDIES SECTION
═══════════════════════════════════════════════════════ */
.case-studies-section {
  background: white;
}

.case-studies-section h2 {
  color: var(--primary-dark);
}

.case-study {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--cream-dark);
  transition: all 0.4s ease;
}

.case-study:hover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.case-study-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--navy-mid));
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.case-study-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent);
  border-radius: 50%;
}

.case-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--brand-indigo) 100%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

@media (max-width: 768px) {
  .case-icon {
    width: 48px;
    height: 48px;
  }

  .case-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .case-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .case-icon svg {
    width: 22px;
    height: 22px;
  }
}

.case-study-header h3 {
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.case-location {
  color: var(--accent-blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.case-study-body {
  padding: 48px;
}

.case-study-body p {
  color: var(--text-mid);
  line-height: 1.9;
  max-width: none;
  text-align: justify;
}

.case-tech {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.tech-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  padding: 8px 16px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .case-study {
    margin-bottom: 40px;
  }

  .case-study-header {
    padding: 36px;
  }

  .case-study-header::before {
    width: 160px;
    height: 160px;
  }

  .case-study-header h3 {
    font-size: 1.4rem;
  }

  .case-study-body {
    padding: 36px;
  }

  .case-study-body p {
    font-size: 16px;
    hyphens: auto;
  }

  .tech-tag {
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════════════════
            CTA SECTION
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--primary-dark);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13, 116, 206, 0.15) 0%, transparent 70%);
  filter: blur(100px);
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 24px;
  max-width: 1000px;
  text-align: center;
}

.cta-content p {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-light);
}
