/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI SOLUTIONS â€” SERVICE PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #02060d;
  --bg-soft: #081225;
  --bg-light: #f5f5f7;
  --text: #e5edf8;
  --text-dark: #1a1a1a;
  --muted: #8a9bb5;
  --primary: #2a7df1;
  --primary-2: #16a8ff;
  --green: #22c55e;
  --accent: #a855f7;
  --accent-2: #7c3aed;
  --pink: #ec4899;
  --card: rgba(6, 14, 30, 0.75);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1628 0%, #050c18 100%);
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 125, 241, 0.2), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #fff;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff6b35, #ff9f43);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-ai-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* â”€â”€ ABOUT US SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-about {
  background: #000;
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left h2 {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #fff;
}

.about-left > p {
  font-size: 15px;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-feature-item {
  display: flex;
  gap: 24px;
  align-items: center;
}

.feature-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.feature-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.about-btn {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: rgba(42, 125, 241, 0.1);
  border-color: var(--primary);
}

.about-mission-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #a0a0a0;
  margin-bottom: 24px;
}

.mission-list {
  list-style: none;
  margin-bottom: 32px;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #d0d0d0;
}

.mission-list i {
  color: var(--pink);
  font-size: 18px;
}

.btn-more-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff6b35, #ff9f43);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s;
}

.btn-more-about:hover {
  transform: translateY(-2px);
}

.about-right {
  position: relative;
}

.years-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
}

.years-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.years-text {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-img-1,
.about-img-2 {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

/* â”€â”€ WORK PROCESS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-process {
  background: linear-gradient(180deg, #f5f5f7 0%, #e8e8eb 100%);
  padding: 80px 0;
  color: var(--text-dark);
}

.sec-process .kicker {
  color: var(--pink);
}

.sec-process .sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.sec-process h2 {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
}

.process-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-layout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  z-index: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.process-item-right {
  direction: rtl;
}

.process-item-right > * {
  direction: ltr;
}

.process-content {
  position: relative;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #000;
  text-transform: uppercase;
}

.process-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.process-number {
  position: absolute;
  top: -60px;
  right: 32px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  font-family: "Sora", sans-serif;
  z-index: 0;
}

.process-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.process-item-left .process-dot {
  right: -68px;
}

.process-item-right .process-dot {
  left: -68px;
}

.process-shape {
  width: 300px;
  height: 300px;
  position: relative;
  margin: 0 auto;
}

.process-shape::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 0;
}

.process-shape img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  z-index: 1;
}

/* â”€â”€ WHY CHOOSE US SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-why {
  background: linear-gradient(180deg, #ffeef5 0%, #ffe0ec 100%);
  padding: 80px 0;
  color: var(--text-dark);
}

.sec-why .kicker {
  color: var(--pink);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.8fr 0.6fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.why-left {
  position: relative;
}

.why-img-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.why-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-ai-badge {
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, #fff4e6, #ffe0cc);
  border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ai-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 60% 40% 60% 40%;
}

.why-right h2 {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
}

.why-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 36px;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.why-feature h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
  text-transform: uppercase;
}

.why-feature p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
}

/* â”€â”€ COMMON SECTION STYLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec {
  padding: 80px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.sec-head h2 {
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* â”€â”€ GENERIC SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec {
  padding: 80px 0;
  position: relative;
}

.sec-dark {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(168, 85, 247, 0.04), transparent),
    var(--bg-soft);
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.sec-head.visible {
  opacity: 1;
  transform: translateY(0);
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.sec-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sec-head h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* â”€â”€ FEATURES GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.feature-icon i {
  font-size: 24px;
  color: var(--accent);
  transition: color 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(34, 197, 94, 0.12);
}

.feature-card:hover .feature-icon i {
  color: var(--green);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* â”€â”€ TECH GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tech-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.tech-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.06);
  transform: translateY(-2px);
}

.tech-item img {
  width: 26px;
  height: 26px;
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* â”€â”€ USE CASES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usecase-card {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.usecase-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.usecase-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
}

.usecase-card .uc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.usecase-card .uc-icon i {
  font-size: 22px;
  color: var(--accent);
}

.usecase-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.usecase-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* â”€â”€ PROCESS GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.step-num {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(34, 197, 94, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* â”€â”€ WHY GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-card {
  display: flex;
  gap: 16px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(16px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
}

.why-card > i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* â”€â”€ INDUSTRY TAGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.industry-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ind-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.ind-tag i {
  color: var(--accent);
  font-size: 16px;
}

.ind-tag:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.06);
  transform: translateY(-2px);
}

/* â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  padding: 80px 0;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(168, 85, 247, 0.08), transparent),
    var(--bg);
}

.cta-banner-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  padding: 64px 0 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-col a i {
  margin-right: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  margin-bottom: 0;
}

.footer-social a:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent);
  border-color: rgba(168, 85, 247, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

/* â”€â”€ SCROLL REVEAL STAGGER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.08s; }
.feature-card:nth-child(3) { transition-delay: 0.16s; }
.feature-card:nth-child(4) { transition-delay: 0.24s; }
.feature-card:nth-child(5) { transition-delay: 0.32s; }
.feature-card:nth-child(6) { transition-delay: 0.4s; }

.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.08s; }
.process-step:nth-child(3) { transition-delay: 0.16s; }
.process-step:nth-child(4) { transition-delay: 0.24s; }
.process-step:nth-child(5) { transition-delay: 0.32s; }
.process-step:nth-child(6) { transition-delay: 0.4s; }

.why-card:nth-child(1) { transition-delay: 0s; }
.why-card:nth-child(2) { transition-delay: 0.06s; }
.why-card:nth-child(3) { transition-delay: 0.12s; }
.why-card:nth-child(4) { transition-delay: 0.18s; }
.why-card:nth-child(5) { transition-delay: 0.24s; }
.why-card:nth-child(6) { transition-delay: 0.3s; }

.usecase-card:nth-child(1) { transition-delay: 0s; }
.usecase-card:nth-child(2) { transition-delay: 0.06s; }
.usecase-card:nth-child(3) { transition-delay: 0.12s; }
.usecase-card:nth-child(4) { transition-delay: 0.18s; }
.usecase-card:nth-child(5) { transition-delay: 0.24s; }
.usecase-card:nth-child(6) { transition-delay: 0.3s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .process-layout::before {
    display: none;
  }
  
  .process-item {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  
  .process-item-right {
    direction: ltr;
  }
  
  .process-dot {
    display: none;
  }
  
  .process-shape {
    order: -1;
  }
  
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-center {
    order: -1;
  }
  
  .why-img-main {
    height: 400px;
  }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  .hero-content h1 { font-size: clamp(28px, 6vw, 36px); }
  
  .about-left h2 { font-size: 22px; }
  
  .feature-circle {
    width: 140px;
    height: 140px;
  }
  
  .years-badge {
    width: 120px;
    height: 120px;
  }
  
  .years-number {
    font-size: 36px;
  }
  
  .years-text {
    font-size: 10px;
  }
  
  .sec-process h2 { font-size: 26px; }
  
  .process-shape {
    width: 240px;
    height: 240px;
  }
  
  .process-number {
    font-size: 80px;
    top: -40px;
  }
  
  .sec-why .why-right h2 { font-size: 20px; }
  
  .why-features-grid {
    grid-template-columns: 1fr;
  }
  
  .why-ai-badge {
    width: 200px;
    height: 200px;
  }

  .sec { padding: 56px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 24px; }

  .cta-banner { padding: 56px 0; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .hero { padding: 120px 0 48px; }
  
  .hero-ai-img {
    max-width: 100%;
  }
  
  .about-buttons {
    flex-direction: column;
  }
  
  .about-btn {
    width: 100%;
    text-align: center;
  }
  
  .feature-circle {
    width: 120px;
    height: 120px;
  }
  
  .years-badge {
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
  }
  
  .years-number {
    font-size: 32px;
  }
  
  .years-text {
    font-size: 9px;
  }
  
  .process-shape {
    width: 200px;
    height: 200px;
  }
  
  .process-content {
    padding: 24px;
  }
  
  .process-number {
    font-size: 60px;
    right: 16px;
  }
  
  .why-img-main {
    height: 300px;
  }
  
  .why-ai-badge {
    width: 160px;
    height: 160px;
  }
  
  .btn-primary, .btn-secondary, .btn-view-more { 
    width: 100%; 
    justify-content: center; 
  }
  
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-banner-actions { 
    flex-direction: column; 
    align-items: stretch;
  }
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-secondary { 
    width: 100%; 
    justify-content: center; 
  }
}

