/* ============ Hero Section ============ */
.hero {
  position: relative;
  padding: 160px 0 140px;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  margin-top: -80px;
  padding-top: 200px;
}

/* Warm ambient glow — replaces harsh neon radials */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 70% 50% at 25% 40%, rgba(232, 168, 56, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 75% 60%, rgba(62, 207, 207, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 8px 20px;
  background: rgba(232, 168, 56, 0.1);
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 50px;
  color: var(--accent-warm);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease-out;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.08;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.7s ease-out 0.1s both;
  color: var(--text-primary);
}

.hero .description {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 44px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero .cta {
  animation: fadeInUp 0.6s ease-out 0.3s both;
  font-size: 16px;
  padding: 16px 40px;
  margin: 0 auto;
  display: inline-flex;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
    min-height: 480px;
    margin-top: -70px;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero .description {
    font-size: 17px;
  }

  .hero::after {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 80px 0 60px;
    min-height: auto;
    margin-top: -60px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero .description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .tagline {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 24px;
  }

  .hero .cta {
    font-size: 15px;
    padding: 14px 32px;
  }

  .hero::after {
    display: none;
  }
}

/* ========== Stats/Social Proof Section ========= */
.stats-section {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.stats-section h2 {
  font-family: var(--font-heading);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
  background: var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.stat-card {
  background: var(--bg-secondary);
  padding: 52px 32px;
  transition: all var(--transition-base);
  position: relative;
}

.stat-card:hover {
  background: var(--bg-tertiary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  color: var(--accent-warm);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Tech stack ticker */
.tech-stack-ticker {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

.tech-stack-ticker::before,
.tech-stack-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.tech-stack-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.tech-stack-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.ticker-track {
  display: flex;
  gap: 32px;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  padding: 10px 22px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-tertiary);
  font-size: 14px;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.ticker-item:hover {
  border-color: var(--card-border-hover);
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

/* ========== About Section ========== */
.about {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.about-hero h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.about-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-md);
}

.about-card-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: inline-block;
}

.about-card h3 {
  margin-bottom: 14px;
  color: var(--text-primary);
  font-size: 20px;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.about-approach {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 56px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.approach-content h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-size: 32px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.approach-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.approach-content p:last-child {
  margin-bottom: 0;
}

.approach-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Replaced border-left accents with subtle background tints */
.value-item {
  padding: 24px 28px;
  background: rgba(232, 168, 56, 0.04);
  border-radius: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: 15px;
  transition: all var(--transition-base);
}

.value-item:hover {
  background: rgba(232, 168, 56, 0.08);
}

.value-item strong {
  color: var(--accent-warm);
  font-weight: 600;
}

.about-tech-stack {
  text-align: center;
}

.about-tech-stack h4 {
  font-size: 14px;
  margin-bottom: 28px;
  color: var(--text-tertiary);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.tech-tag {
  padding: 8px 18px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
}

.tech-tag:hover {
  border-color: var(--card-border-hover);
  color: var(--text-secondary);
  background: rgba(232, 168, 56, 0.05);
}

.tech-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-hero h2 {
    font-size: 36px;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-approach {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .about-hero h2 {
    font-size: 30px;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-card {
    padding: 32px 24px;
  }

  .about-approach {
    padding: 24px 20px;
  }
}

/* =========== Services ========== */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.services-title {
  text-align: center;
  font-family: var(--font-heading);
}

.services-wrapper > div {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 44px 36px;
  border-radius: 20px;
  transition: all var(--transition-base);
  position: relative;
}

.services-wrapper > div:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-md);
}

.services-wrapper h3 {
  margin: 20px 0 14px;
  color: var(--text-primary);
  font-size: 21px;
}

.services-wrapper ul {
  margin-top: 8px;
  padding-left: 1.2em;
  color: var(--text-secondary);
  font-size: 15px;
}

.services-wrapper ul li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.services-wrapper img {
  width: 52px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  padding: 14px;
  background: rgba(232, 168, 56, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(232, 168, 56, 0.12);
  transition: all var(--transition-base);
}

.services-wrapper > div:hover img {
  opacity: 0.9;
  background: rgba(232, 168, 56, 0.12);
  border-color: rgba(232, 168, 56, 0.25);
}

.about-img img {
  border-radius: 20px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .services-wrapper > div {
    padding: 24px 20px;
  }
  .services-wrapper h3 {
    margin: 14px 0 10px;
  }
  .services-wrapper img {
    width: 44px;
  }
}

/* =============== Why Section =============== */
.why h2 {
  font-family: var(--font-heading);
}

.why-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-base);
  position: relative;
  background: transparent;
}

.why-card:hover {
  border-color: var(--card-border-hover);
  background: rgba(232, 168, 56, 0.03);
}

.why-card h3 {
  color: var(--text-primary);
  font-size: 21px;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .why-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .why-card {
    padding: 28px 24px;
  }
}

/* ========= Strategy / Pricing ========= */
.strategy h2 {
  font-family: var(--font-heading);
}

.strategy-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}

.strategy-card {
  padding: 44px 36px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition-base);
  position: relative;
}

.strategy-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-md);
}

/* Most Popular Badge */
.most-popular-badge {
  background: var(--accent-warm);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

/* Featured card (middle one) */
.strategy-card:nth-child(2) {
  border-color: rgba(232, 168, 56, 0.3);
  background: linear-gradient(135deg, rgba(232, 168, 56, 0.06) 0%, rgba(62, 207, 207, 0.03) 100%), var(--card-bg);
}

.strategy-card:nth-child(2):hover {
  border-color: rgba(232, 168, 56, 0.5);
  box-shadow: var(--shadow-lg), var(--glow-warm);
}

.strategy-card h3 {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
}

.strategy-card > p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.strategy-card ul {
  padding-left: 1.2em;
  color: var(--text-secondary);
  font-size: 15px;
}

.strategy-card ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .strategy-card {
    padding: 28px 24px;
  }
}

/* ========== Testimonials ========= */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  text-align: left;
  flex-basis: 30%;
}

.stars {
  padding: 7px 0;
}

.avatar {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  margin: 0 auto;
}

.avatar,
.testimonial-text {
  margin-top: 15px;
  font-size: 18px;
}

.info .name {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-top: 5px;
  color: var(--text-primary);
}

.info .position {
  font-size: 16px;
  line-height: normal;
  margin-top: 8px;
}

@media (max-width: 500px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ========== Case Study ========= */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 75px;
  margin-top: 50px;
}

.case-study {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.case-study > div {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study img {
  border-radius: 20px;
}

@media (max-width: 500px) {
  .case-study {
    flex-direction: column-reverse;
  }
  .case-study > div {
    max-width: 100%;
  }
}

/* ========== Process Section ========= */
.process-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.process-section h2 {
  font-family: var(--font-heading);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 48px 32px;
  border-radius: 20px;
  transition: all var(--transition-base);
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 168, 56, 0.1);
  border: 1.5px solid rgba(232, 168, 56, 0.25);
  color: var(--accent-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  margin: 0 auto 24px;
}

.process-step h3 {
  margin-bottom: 14px;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========== FAQ Section ========= */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 60px;
  position: relative;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 56px;
  margin-top: 0;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
  transition: all var(--transition-base);
  position: relative;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--card-border);
}

.faq-item.active {
  border-bottom-color: rgba(232, 168, 56, 0.2);
}

.faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  color: var(--accent-warm);
}

.faq-icon {
  font-size: 20px;
  color: var(--text-tertiary);
  transition: transform var(--transition-base), color var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-warm);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-content {
  padding: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px 0;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 0 20px;
  }
}
