@font-face {
  font-family: 'Helvetica Neue';
  src: url('./helvetica-neue/HelveticaNeue-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('./helvetica-neue/HelveticaNeue.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('./helvetica-neue/HelveticaNeueMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url('./helvetica-neue/HelveticaNeueBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
  /* --font-main: "Helvetica Neue", Helvetica, Arial, sans-serif; */
  --font-main: 'Helvetica Neue', sans-serif;
                                                
  --bg-main: #FAFAFB;
  --bg-card: #FFFFFF;
  --bg-dark: #0D0F12;
  --bg-card-dark: #161920;
  
  --text-primary: #1A1A1A;
  --text-secondary: #1A1A1A99;
  --text-muted: #94A3B8;
  --text-white: #FFFFFF;
  
  --badge-yellow-bg: #B5A3011A;;
  --badge-yellow-text: #B5A301;
  --badge-yellow-dot: #F59E0B;
  
  --green-bg: #DCFCE7;
  --green-text: #11811A;
  --orange-bg: #FFEDD5;
  --orange-text: #C2410C;
  --blue-bg: #DBEAFE;
  --blue-text: #1D4ED8;
  --purple-bg: #F3E8FF;
  --purple-text: #7E22CE;
  
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.08);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-yellow {
  background-color: var(--badge-yellow-bg);
  color: #E5AA40;
  border: 1px solid #E5AA40;
  
}

.pill-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.pill-green {
  /* background: var(--green-bg); */
  color: var(--green-text);
  border: 1px solid #11811A;
  background: #11811A1A;
}

.pill-yellow {
  background: var(--badge-yellow-bg);
  color: var(--badge-yellow-text);
  border: 1px solid #B5A301;
  background: #B5A3011A;

}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background-color: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid rgba(222, 226, 230, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 14px;
  font-weight: 500;
}

.btn-white:hover {
  background-color: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-block {
  width: 100%;
}

.btn-appstore,
.btn-playstore {
  padding: 0px 0px;
}

.btn-appstore:hover,
.btn-playstore:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background-color: #F8FAFC;
}

.navbar-wrapper {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar {
  background: radial-gradient(66.67% 103.95% at 50% -42.76%, #9F9F9F 0%, #1A1A1A 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 8px 26px 8px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 1420px;
  margin: 0  auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.desktop-hide{
  display: none;
}


.logo-img {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.logo-text-dark {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  text-decoration: underline;
  font-weight: 700;
  
}

.hamburger-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0F172A;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-right: 8px;
  flex-shrink: 0;
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 290px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar.active {
  transform: translateX(320px);
}

.sidebar-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-btn:hover {
  background: #E2E8F0;
}

.sidebar-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.2;
}

.sidebar-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.sidebar-link svg path,
.sidebar-link svg circle,
.sidebar-link svg line,
.sidebar-link svg polyline,
.sidebar-link svg rect {
  stroke: #1A1A1A;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: #FFFFFF;
  background: radial-gradient(66.67% 103.95% at 50% -42.76%, #9F9F9F 0%, #1A1A1A 100%);
}

.sidebar-link.active svg path,
.sidebar-link.active svg circle,
.sidebar-link.active svg line,
.sidebar-link.active svg polyline,
.sidebar-link.active svg rect {
  stroke: #FFFFFF;
}

.hero-section {
  padding-top: 140px;
  /* padding-bottom: 60px; */
  text-align: center;
  background: url('./images/hero-background.png') no-repeat center top;
  background-size: cover;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 960px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 0;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-top: -36px;
  /* margin-right: 68px; */
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* top:-30px; */
}


.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.overview-section {
  padding: 40px 0 40px;
  /* margin-top: -170px; */
  position: relative;
  z-index: 10;
  padding-top: 0px;
  
  background-color:#F5F5F5;
}

.section-header {
  margin-bottom: 30px;
  padding-top: 40px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 44px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-secondary);
  margin: 0 auto;
}

.overview-unified-card {
  border: 1px solid #E7E7E7;
  border-radius: 40px;
  padding: 40px;
  max-width: 1420px;;
  margin: 0 auto;
  background: #FFFFFF;
  overflow: hidden;
  
}

.overview-top-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.overview-col-left {
  padding-right: 36px;
  border-right: 1px solid #E7E7E7;
}

.overview-col-right {
  padding-left: 36px;
}

.margin-top-16 {
  margin-top: 16px;
}

.margin-top-12 {
  margin-top: 12px;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 20px;
  font-weight: 400;
}

.overview-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0px -40px -40px;
  padding: 32px 40px 40px;
  outline: 1px solid #E7E7E7;
  border-radius: 40px 40px 0 0;
}

.overview-pill-item {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.pill-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-icon-circle.green { color: var(--green-text); background: #11811A1A;}
.pill-icon-circle.orange {background: #C689102B; color: var(--orange-text); }
.pill-icon-circle.blue { background: #1170811A; color: var(--blue-text); }
.pill-icon-circle.purple { background: #AF1EAF1A; color: var(--purple-text); }

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle svg {
  width: 32px;
  height: 32px;
}
.icon-dark {
  background-color: var(--text-primary);
  color: var(--text-white);
}

.steps-section {
  /* padding: 80px 0; */
  background: #FEFEFE;
  padding-top: 0px;
  padding-bottom: 40px;
  gap: 30px;


}

.tab-switch {
  display: inline-flex;
  background: #F5F5F5;
  
  padding: 4px;
  border-radius: 40px;
  border: 1px solid #E7E7E7;
  margin-top: 12px;
}

.tab-btn {
  width: 172px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  transition: var(--transition);
}

.tab-btn.active {
 background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),radial-gradient(66.67% 103.95% at 50% -42.76%, #9F9F9F 0%, #1A1A1A 100%);
  color: var(--text-white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  padding: 20px;
  width: 457.3333435058594;
  height: 274;
  border-radius: 40px;
  border-width: 1px;
  background: #F5F5F5;
  border: 1px solid #E7E7E7
}

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

.step-number {
  color: var(--text-primary);
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 100%;
}

.step-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 26px;
}

.step-desc {
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A99;
  /* background: #1A1A1A99; */

}

.features-section {
  padding: 0 0;
  background: #F5F5F5;
  padding-bottom: 40px;

}

.features-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  /* margin-bottom: 40px; */
}

.feature-col-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  /* padding: 32px; */
  width: 100%;
}
.feature-col-card .icon-dark{
  width: 70px;
  height: 70px;
}
.feature-col-header {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 32px 32px 0;
}

.feature-col-title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 4px;
}
.feature-col-subtitle{
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

.subfeatures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px;
  border-radius: 40px;
  border-top: 1px solid #E7E7E7;
  /* outline: 1px solid #E7E7E7; */
}

.subfeature-item {
  background: #F5F5F5;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.subfeature-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
  letter-spacing: -0.05em;
}

.subfeature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.subfeature-icon.green { background: var(--green-bg); color: var(--green-text); }
.subfeature-icon.orange { background: var(--orange-bg); color: var(--orange-text); }
.subfeature-icon.blue { background: var(--blue-bg); color: var(--blue-text); }
.subfeature-icon.purple { background: var(--purple-bg); color: var(--purple-text); }

.subfeature-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.subfeature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 10px;
  font-weight: 400;
}

.talent-showcase-section {
  padding: 40px 0;
  background: #FEFEFE;

}

.talent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  /* max-width: 960px; */
  margin: 0 auto;
}

.talent-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.talent-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 30px;
  background: #F5F5F5;

}

.talent-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-icon-badge.green { background: var(--green-bg); color: var(--green-text); }
.talent-icon-badge.orange { background: var(--orange-bg); color: var(--orange-text); }
.talent-icon-badge.blue { background: var(--blue-bg); color: var(--blue-text); }
.talent-icon-badge.purple { background: var(--purple-bg); color: var(--purple-text); }

.talent-feature-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.05em;
}

.talent-feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.talent-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.talent-image-container {
  position: relative;
  /* max-width: 380px; */
  width: 100%;
}

.talent-mockup-img {
  width: 100%;
}

.talent-floating-pin {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 72px;
  height: auto;
}

.faq-section {
  padding: 0px 0;
  background-color: #F5F5F5;
  padding-bottom: 40px;
}

.faq-accordion {
  max-width: 1420px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid #E7E7E7;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-left-color: transparent;
}

.faq-item.active::before {
  content: '';
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 6px;
  border-radius: 0 4px 4px 0;
  background: radial-gradient(123.63% 192.76% at 50% -42.76%, #9F9F9F 0%, #1A1A1A 100%);
  z-index: 1;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
}

.faq-question-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.faq-number {
  color: #E5AA40;
  font-size: 18px;
  font-weight: 700;
}

.faq-question-text {
  font-size: 22px;
  font-weight: 500;
  line-height: -1.5;
  color: var(--text-primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px 0 24px;
}

.faq-answer p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 20px;
}

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

.faq-item.active .plus-line {
  display: none;
}

.faq-item.active .faq-icon {
  background: var(--text-primary);
  color: var(--text-white);
}

.testimonials-section {
  padding: 40px 0;
  background: #FEFEFE;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  /* max-width: 960px; */
  margin: 0 auto;
}

.testimonials-visual {
  display: flex;
  justify-content: end;
}

.avatar-orbit {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section {
  padding: 70px 0 40px;
  background: #F5F5F5;
  display: flex;
  justify-content: center;
}

/* .cta-section .container {
  max-width: 1600px;
} */

.cta-banner {
  position: relative;
  min-height: 474px;
  background: radial-gradient(59.57% 92.88% at 50% -42.76%, #9F9F9F 0%, #1A1A1A 100%);
  border-radius: var(--radius-xl);
  padding: 0 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  color: var(--text-white);
  overflow: visible;
  margin: 0 auto;
}
.cta-parent{
  position: relative;
}

.cta-content {
  grid-column: 2;
  padding: 56px 24px 56px 0;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
}

.cta-desc {
  font-size: 16px;
  color: #FFFFFF99;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 400;
}

.cta-visual {
  display: flex;
  justify-content: center;
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  align-items: flex-end;
  z-index: 2;
}

.cta-mockup-img {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0px 40px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-tagline {
  color: #FFFFFFCC;
  font-size: 16px;
  line-height: 28px;
  margin-top: 16px;
  font-weight: 400;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #FFFFFFCC;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid transparent;
  border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.12) 100%);
  border-image-slice: 1;
}

.copyright {
  font-size: 14px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  /* border: 1px solid rgba(255, 255, 255, 0.32); */
  border-radius: 50%;
  /* box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); */
  color: #94A3B8;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.65);
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

.desktop-only-inline {
  display: inline-block;
}

.mobile-only-inline {
  display: none;
}

@media (max-width: 1560px) {
  .container,
  .navbar,
  .cta-section .container {
    max-width: 74%;
  }
}

@media (max-width: 1400px) {
  .container,
  .navbar,
  .cta-section .container
   {
    max-width: 74%;
  }
}

@media (max-width: 1280px) {
  .container,
  .navbar,
  .cta-section .container {
    max-width: 74%;
  }

  .steps-section {
    padding-right: 40px;
    padding-left: 40px;
  }
}


@media (max-width: 1024px) {
  .desktop-only,
  .desktop-only-inline {
    display: none !important;
  }
  
  .mobile-only,
  .mobile-only-inline {
    display: flex !important;
  }

  .navbar-wrapper {
    top: 0;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
  }

  .navbar {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 16px;
    box-shadow: none;
    justify-content: flex-start;
    gap: 12px;
  }

  .hamburger-btn {
    order: 0;
  }

  

  .logo-text {
    color: var(--text-primary);
  }
  
  .hero-section {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 34px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }

  .hero-mockup-wrapper {
    margin-top: -20px;
  }

  .overview-section {
    margin-top: -50px;
    padding: 20px 0 60px;
  }

  .overview-unified-card {
    padding: 24px;
  }

  .overview-top-split {
    grid-template-columns: 1fr;
  }

  .overview-col-left {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .overview-col-right {
    padding-left: 0;
    padding-top: 28px;
  }

  .overview-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 28px -24px -24px;
    padding: 24px;
  }
  
  .features-two-col,
  .talent-grid,
  .testimonials-grid,
  .cta-banner,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .subfeatures-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-banner {
    min-height: 0;
    padding: 0 24px;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-content {
    grid-column: auto;
    order: 1;
    padding: 48px 0 40px;
  }

  .cta-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: 300px;
    align-items: flex-end;
  }

  .cta-mockup-img {
    max-width: 560px;
    margin: 0 auto -90px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .avatar-orbit {
    width: 320px;
    height: 320px;
  }
  
  .orbit-outer { width: 300px; height: 300px; }
  .orbit-inner { width: 200px; height: 200px; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }



  .cta-section {
    padding: 40px 0 64px;
  }

  .cta-banner {
    border-radius: var(--radius-lg);
    padding: 0 20px;
  }

  .cta-content {
    padding: 36px 0 28px;
    height: 600px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .cta-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-visual {
    height: 220px;
  }

  .cta-mockup-img {
    margin-bottom: 3px;
  }
}

@media (max-width: 600px) {
   .logo svg{
    align-self: center;
    justify-content: center;
  }
  .logo > svg path {
    fill: #000000;
  }
  
  .container,
  .navbar,
  .cta-section .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-wrapper {
    top: 10px;
    padding: 0 8px;
  }

  .navbar {
    padding: 8px 12px;
    justify-content: space-between;
  }
  .badge{
    gap:unset;
  }
  .hero-section {
    padding-top: 92px;
  }
  .talent-showcase-section, .testimonials-section{
    padding: 20px 0;
  }   
  .overview-section {
      margin-top: unset;
      padding: unset;
  }

  .section-header, .testimonials-info {
     text-align: center;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.12;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
  }

  .section-header {
    padding-top: 24px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .overview-unified-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .card-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .card-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .overview-bottom-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px -16px -20px;
    padding: 16px;
  }

  .overview-pill-item {
    font-size: 12px;
  }
  .tab-btn {
    width: 100%;
   
  }
  .btn-appstore, .btn-playstore{
    width: 47%;
    /* justify-content: center; */
  }


  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  .step-card {
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .step-number {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .step-title {
    font-size: 22px;
  }

  .step-desc {
    font-size: 13px;
  }

  .features-two-col,
  .talent-grid,
  .testimonials-grid,
  .subfeatures-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials-visual {
    justify-content: center !important;
  }

  .feature-col-header {
    padding: 24px 20px 0;
  }

  .feature-col-title {
    font-size: 24px;
  }

  .feature-col-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .subfeatures-grid {
    padding: 20px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cta-section {
    padding: 40px 0 64px;
  }

  .cta-banner {
    border-radius: var(--radius-lg);
    padding: 0 20px;
  }

  .cta-content {
    padding: 36px 0 28px;
    height: 400px;
  }

  .cta-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .cta-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-visual {
    height: 220px;
  }

  .cta-mockup-img {
    margin-bottom: 3px;
  }

  .footer {
    padding: 24px 0 24px;
  }

  .footer-top {
    display: block;
    margin-bottom: 24px;
  }

  .footer-brand {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .footer-tagline {
    margin-top: 10px;
  }

  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 20px;
    align-items: start;
  }

  .footer-col:last-child {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .footer-col-title {
    margin-bottom: 8px;
  }

  .footer-col ul {
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
  }

  .copyright {
    font-size: 14px;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }
  .steps-section{
    padding-left: 0 ;
    padding-right: 0;
  }
}
