/* CSS Custom Properties */
:root {
  --black: #1b1b1b;
  --white: #ffffff;
  --light-green: #a8ff36;
  --abu-bg: #f5f5f5;
  --abu-stroke: #ebebeb;
  --grey-gradient: linear-gradient(185.28deg, rgba(255, 255, 255, 1) 0%, rgba(50, 50, 50, 1) 100%);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "InterTight-Medium", sans-serif;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Add some offset for sections to account for fixed navbar */
section {
  scroll-margin-top: 100px;
}

/* Free ATS CTA Section */
.free-ats-cta {
  background: linear-gradient(135deg, #E53E3E 0%, #FF1C1C 100%);
  color: white;
  padding: 4rem 2rem;
  margin: 3rem 0;
}

.free-ats-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.free-ats-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
}

.btn-free-scan {
  background: white;
  color: #E53E3E;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-block;
  transition: all 0.18s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-free-scan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #E53E3E;
  text-decoration: none;
}

@media (max-width: 768px) {
  .free-ats-cta {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .free-ats-cta h2 {
    font-size: 1.8rem;
  }
}

/* Free ATS CTA inner card for improved contrast and readability */
.free-ats-cta .cta-card {
  background: rgba(255,255,255,0.96);
  color: var(--resume-ca-text-primary, #1A202C);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.free-ats-cta .cta-card h2 {
  color: var(--resume-ca-text-primary, #1A202C);
  font-size: 1.6rem;
  margin: 0 0 0.5rem 0;
}

.free-ats-cta .cta-card .cta-intro {
  margin: 0 0 1rem 0;
  color: var(--resume-ca-text-secondary, #4A5568);
}

.free-ats-cta .benefits-list li {
  color: var(--resume-ca-text-secondary, #4A5568);
}

.free-ats-cta .cta-action {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 0.5rem;
}

.free-ats-cta .btn-free-scan {
  width: 100%;
  max-width: 320px;
  text-align: center;
  border-radius: 14px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .free-ats-cta .cta-card {
    margin: 0.75rem auto;
  }
  .free-ats-cta .btn-free-scan {
    max-width: none;
  }
}

/* Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 255, 54, 0.1);
  padding: 16px 0;
}

.navbar-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.navbar-brand {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.sitefy-ai-resume-builder {
  color: var(--light-green, #a8ff36);
  text-align: left;
  font-family: "Helvetica-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  white-space: nowrap;
}

.navbar-links {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--white, #ffffff);
  text-align: center;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  /* Make hovered nav link use the navbar (dark) color for readability against
     any light highlight / background that may appear on hover */
  color: var(--black, #1b1b1b) !important;
}

.navbar-cta {
  background: var(--light-green, #a8ff36);
  border-radius: 60px;
  padding: 12px 24px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 255, 54, 0.3);
}

.navbar-cta .get-started {
  /* ensure the navbar CTA text is always white for contrast */
  color: var(--white, #ffffff) !important;
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

/* Ensure navbar links and CTA contrast clearly with the dark navbar background.
   Some environments may override earlier rules; these declarations use the
   .navbar scope to increase specificity and make the links visible by default. */
.navbar .nav-link,
.navbar a.nav-link {
  color: #ffffff !important; /* force white so links are visible against dark navbar */
  opacity: 1 !important;
  text-shadow: 0 0 1px rgba(0,0,0,0.4);
}

.navbar .nav-link:focus,
.navbar .nav-link:active {
  /* Use dark/nav bar color on focus/active so text remains readable when
     the link gets a light/green background */
  color: var(--black, #1b1b1b) !important;
  outline: none;
}

/* In case there are global rules that darken buttons, ensure the CTA keeps its
   bright background and legible text */
.navbar .navbar-cta {
  background: var(--light-green, #a8ff36) !important;
}
.navbar .navbar-cta .get-started {
  /* force white text inside the navbar CTA for consistent contrast */
  color: var(--white, #ffffff) !important;
}

/* VERY SPECIFIC OVERRIDES: ensure nothing loaded elsewhere (even with !important)
   causes nav link text to become light green on hover/active. These selectors
   mirror the most common patterns and use high specificity. */
body .navbar .navbar-links a:hover,
body .navbar .navbar-links a:focus,
body .navbar .navbar-links a:active,
body .navbar .navbar-links a.active,
body nav.navbar .navbar-links a:hover,
body nav.navbar .navbar-links a:focus,
body nav.navbar .navbar-links a.active,
nav.navbar .navbar-links a:hover,
nav.navbar .navbar-links a:focus,
nav.navbar .navbar-links a.active,
.navbar-links a:hover,
.navbar-links a:focus,
.navbar-links a.active,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--black, #1b1b1b) !important;
  text-shadow: none !important;
}

/* If an active/hover background is applied (green pill), ensure contrast */
nav.navbar .navbar-links a.active,
nav.navbar .navbar-links a:hover {
  /* Use a gentle light-green pill for hover/active state while keeping
     the text dark for legibility. Add slight box-shadow for separation. */
  background-color: rgba(168,255,54,0.18) !important; /* light green */
  border-radius: 8px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
  padding: 0.4rem 0.9rem !important;
}

/* Hero Section Styles */
.hero {
  background: var(--black, #1b1b1b);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  color: var(--white, #ffffff);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
  margin: 0;
}

.hero-title .highlight {
  background: var(--light-green, #a8ff36);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #a8ff36, #7cd91a);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.btn-primary {
  background: var(--light-green, #a8ff36);
  color: var(--black, #1b1b1b);
  padding: 18px 32px;
  border-radius: 64px;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(168, 255, 54, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 255, 54, 0.4);
  background: #92e622;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  color: var(--light-green, #a8ff36);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.feature-tags {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.feature-tag {
  position: absolute;
  background: rgba(27, 27, 27, 0.9);
  border: 1px solid var(--light-green, #a8ff36);
  border-radius: 24px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

.feature-tag:nth-child(1) {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.feature-tag:nth-child(2) {
  top: 25%;
  right: -15%;
  animation-delay: 0.5s;
}

.feature-tag:nth-child(3) {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.feature-tag:nth-child(4) {
  bottom: 15%;
  right: -10%;
  animation-delay: 1.5s;
}

.feature-tag span {
  color: var(--light-green, #a8ff36);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow {
  color: var(--light-green, #a8ff36);
  font-size: 16px;
  font-weight: 600;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.rectangle-39 {
  background: var(--light-green, #a8ff36);
  width: 372px;
  height: 377px;
  position: absolute;
  left: 1353px;
  top: 293px;
  filter: blur(110px);
}
.rectangle-41 {
  background: var(--light-green, #a8ff36);
  width: 271px;
  height: 271px;
  position: absolute;
  left: -125px;
  top: 775px;
  filter: blur(110px);
}
.get-started {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  position: relative;
}

/* Service Portfolio Section Styles */
.service-portfolio,
.service-portfolio * {
  box-sizing: border-box;
}
.service-portfolio {
  background: #ffffff;
  height: 683px;
  position: relative;
  overflow: hidden;
}
.frame-1321314959 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  left: 60px;
  top: 110px;
}
.frame-37598 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 1320px;
  position: relative;
}

/* Modern Pricing Section */
.modern-pricing {
  background: var(--abu-bg);
  padding: 120px 0;
  position: relative;
}

.pricing-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 16px 0;
}

.pricing-subtitle {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--abu-stroke);
  border-radius: 24px;
  /* increase top padding so badges that overlap won't cover the card header */
  padding: 56px 40px 40px;
  position: relative;
  transition: all 0.3s ease;
  /* allow badge to overlap outside the card */
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--light-green);
  box-shadow: 0 20px 60px rgba(168, 255, 54, 0.15);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  /* lift the badge a bit more and keep it centered */
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #05b36f 0%, #10b981 60%);
  color: #ffffff !important;
  padding: 8px 28px;
  border-radius: 999px;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(16,185,129,0.12);
  display: inline-block;
  pointer-events: none;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 16px 0;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-amount {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: var(--black);
}

.price-period {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #666;
}

.plan-description {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.pricing-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--black);
}

.feature-check {
  color: var(--light-green);
  flex-shrink: 0;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-cta.primary {
  background: var(--black);
  color: var(--white);
}

.pricing-cta.primary:hover {
  background: #333;
  transform: translateY(-2px);
}

.pricing-cta.featured {
  background: var(--light-green);
  /* featured CTA should have white text on the green background */
  color: var(--white) !important;
}

.pricing-cta.featured:hover {
  background: #96e832;
  transform: translateY(-2px);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--abu-stroke);
}

.guarantee-icon {
  flex-shrink: 0;
}

.guarantee-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 4px 0;
}

.guarantee-text {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

/* Mobile Pricing Styles */
@media (max-width: 768px) {
  .modern-pricing {
    padding: 80px 0;
  }
  
  .pricing-container {
    padding: 0 24px;
  }
  
  .pricing-header {
    margin-bottom: 60px;
  }
  
  .pricing-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .pricing-subtitle {
    font-size: 18px;
    line-height: 26px;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .price-amount {
    font-size: 40px;
    line-height: 48px;
  }
  
  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

.transparent-pricing-tailored-solutions-exceptional-resume-for-every-need {
  color: var(--black, #1b1b1b);
  text-align: center;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
}
.frame-1321314978 {
  display: flex;
  flex-direction: row;
  gap: 133px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 982px;
  position: relative;
}
.frame-1458 {
  background: var(--white, #ffffff);
  border-radius: 24px;
  border-style: solid;
  border-color: var(--abu-stroke, #ebebeb);
  border-width: 1px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 424px;
  height: 500px;
  position: relative;
  box-shadow: 8px 12px 20px 0px rgba(0, 0, 0, 0.08);
}
.frame-1448 {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 388px;
  position: relative;
}
.frame-1443 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.check-circle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.unlimited-resume-templates {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
}
.frame-1444 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.check-circle2,
.check-circle3,
.check-circle4,
.check-circle5,
.check-circle6,
.check-circle7,
.check-circle8,
.check-circle9,
.check-circle10,
.check-circle11,
.check-circle12 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  overflow: visible;
}
.ai-powered-content-suggestions,
.professional-pdf-export,
.ats-optimization-scanner,
.everything-in-monthly-plan,
.lifetime-access-no-recurring-fees,
.priority-customer-support,
.early-access-to-new-features,
.future-template-updates-included,
.premium-member-status {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
}
.frame-1441,
.frame-1445,
.frame-1446,
.frame-1442 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.pricing .cover-letter-generator,
._24-7-email-support {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  position: relative;
}
.frame-1452,
.frame-14522 {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 376px;
  position: relative;
}
.frame-1451 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.frame-1449 {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.monthly-plan,
.premium-plan {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
}
.frame-1450 {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
._9,
._1-200-00 {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  position: relative;
}
.month {
  color: var(--black, #1b1b1b);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
}
.frame-17,
.frame-172 {
  background: var(--black, #1b1b1b);
  border-radius: 40px;
  padding: 12px 32px 12px 32px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 376px;
  position: relative;
}
.frame-17 .get-started,
.frame-172 .get-started2 {
  color: var(--white, #ffffff);
  text-align: left;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
}
.frame-1461 {
  background: var(--white, #ffffff);
  border-radius: 24px;
  border-style: solid;
  border-color: var(--abu-stroke, #ebebeb);
  border-width: 1px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 424px;
  height: 500px;
  position: relative;
  box-shadow: 8px 12px 20px 0px rgba(0, 0, 0, 0.08);
}

/* FAQ Section Styles */
.faq {
  background: var(--white, #ffffff);
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  color: var(--black, #1b1b1b);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 500;
  margin-bottom: 16px;
}

.faq-subtitle {
  color: var(--black, #1b1b1b);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  opacity: 0.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white, #ffffff);
  border: 1px solid var(--abu-stroke, #ebebeb);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--light-green, #a8ff36);
  box-shadow: 0 4px 20px rgba(168, 255, 54, 0.1);
}

.faq-item.active {
  border-color: var(--light-green, #a8ff36);
  box-shadow: 0 4px 20px rgba(168, 255, 54, 0.15);
}

.faq-question {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(168, 255, 54, 0.05);
}

.faq-question h3 {
  color: var(--black, #1b1b1b);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0;
  flex: 1;
  padding-right: 16px;
}

.faq-toggle {
  background: var(--light-green, #a8ff36);
  /* plus icon should be white for legibility on green */
  color: var(--white, #ffffff) !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(168, 255, 54, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  color: var(--black, #1b1b1b);
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  opacity: 0.8;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
  .faq-container {
    padding: 0 20px;
  }
  
  .faq-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .faq-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
    line-height: 24px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* Footer Section Styles */
/* Modern Footer Styles */
.modern-footer {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer-blur-1 {
  background: var(--light-green);
  width: 400px;
  height: 400px;
  position: absolute;
  right: -100px;
  top: -100px;
  filter: blur(200px);
  opacity: 0.3;
}

.footer-blur-2 {
  background: var(--light-green);
  width: 300px;
  height: 300px;
  position: absolute;
  left: -50px;
  bottom: -50px;
  filter: blur(150px);
  opacity: 0.2;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 60px 40px;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}

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

.footer-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 16px 0;
}

.footer-description {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-green);
  color: var(--black);
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 255, 54, 0.3);
}

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

.footer-column-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 20px 0;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--light-green);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.footer-bottom-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-small {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--light-green);
}

.copyright {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.legal-link {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--light-green);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
  .footer-content {
    padding: 60px 24px 30px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .footer-description {
    font-size: 16px;
    line-height: 24px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-content {
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    gap: 20px;
  }
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: var(--white);
}

.features-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 16px 0;
}

.features-subtitle {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #666;
  margin: 0 0 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--abu-stroke);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--light-green);
}

/* Ensure feature section icons are white for contrast on dark backgrounds */
.features-section .feature-item .feature-icon,
.feature-card .feature-icon,
.feature-item .feature-icon {
  color: var(--white) !important;
  /* SVGs should inherit color */
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Catch icon SVG elements directly in case they don't use .feature-icon */
.features-section .feature-item svg,
.feature-card svg,
.feature-item svg {
  color: var(--white) !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.feature-card.featured {
  border-color: var(--light-green);
  background: linear-gradient(135deg, rgba(168, 255, 54, 0.05) 0%, rgba(168, 255, 54, 0.01) 100%);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--light-green);
}

.feature-card.featured .feature-icon {
  background: var(--light-green);
  color: var(--black);
}

.feature-title {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 12px 0;
}

.feature-description {
  font-family: "InterTight-Medium", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.feature-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--light-green);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "InterTight-Medium", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive Styles for Features */
@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-container {
    padding: 0 24px;
  }
  
  .features-header {
    margin-bottom: 60px;
  }
  
  .features-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .features-subtitle {
    font-size: 18px;
    line-height: 26px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    padding: 24px;
  }
}

/* Responsive Design */
@media (max-width: 1440px) {
  .hero,
  .service-portfolio,
  .pricing,
  .faq,
  .banner-footer {
    width: 100%;
    min-width: 320px;
  }
  
  .frame-10,
  .frame-37598,
  .frame-1321314979,
  .frame-37613 {
    width: calc(100% - 120px);
    max-width: 1320px;
  }
}

/* Responsive Navbar Styles */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 20px;
  }
  
  .navbar-links {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
  }
  
  .sitefy-ai-resume-builder {
    font-size: 14px;
  }
  
  .navbar-cta {
    padding: 10px 20px;
  }
  
  .navbar-cta .get-started {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 15px;
  }
  
  .navbar-links {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 13px;
  }
  
  .sitefy-ai-resume-builder {
    font-size: 13px;
    width: auto;
  }
  
  .navbar-cta {
    padding: 8px 16px;
  }
  
  .navbar-cta .get-started {
    font-size: 14px;
  }
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding: 0 40px;
  }
  
  .hero-title {
    font-size: 56px;
    line-height: 64px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .feature-tag {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }
  
  .hero-content {
    padding: 40px 20px 60px;
    gap: 50px;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .hero-text {
    order: 1;
    gap: 20px;
  }
  
  .hero-visual {
    order: 2;
    margin-top: 20px;
  }
  
  .hero-title {
    font-size: 42px;
    line-height: 50px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
  
  .btn-primary {
    padding: 16px 28px;
    font-size: 16px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 30px 16px 50px;
    gap: 40px;
  }
  
  .hero-text {
    gap: 16px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  
  .btn-primary {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
  
  .stat-divider {
    width: 80px;
    height: 1px;
  }
}

/* Button styling for all Get Started links */
a.get-started,
a.get-started2 {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a.get-started:hover,
a.get-started2:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Ensure button containers are clickable */
.frame-62 a.get-started2,
.frame-13 a.get-started,
.frame-17 a.get-started,
.frame-172 a.get-started2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
