/* Global Styles */
:root {
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f9f9f9;
  --gray-200: #f0f0f0;
  --gray-300: #e5e5e5;
  --gray-400: #d0d0d0;
  --gray-500: #aaaaaa;
  --gray-600: #777777;
  --gray-700: #555555;
  --gray-800: #333333;
  --gray-900: #111111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--hero {
  background-color: var(--gray-900);
  color: var(--white);
  border: 2px solid var(--gray-900);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--gray-900);
}

.btn--secondary:hover {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn--hero:hover {
  background-color: var(--gray-800);
}

.btn--primary {
  background-color: var(--gray-800);
  color: var(--white);
  border: none;
  width: 100%;
}

.btn__icon {
  margin-right: 8px;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0;
  background-color: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}

.hero__announcement {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid var(--gray-300);
  margin-bottom: 20px;
  position: relative;
}

.hero__announcement-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.hero__announcement-text {
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(to right, var(--gray-800), var(--gray-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__announcement-pulse {
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #f00;
  border-radius: 50%;
  top: -3px;
  right: -3px;
  background-color: var(--gray-800);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.hero__content {
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero__main {
  flex: 1;
}

.hero__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title-highlight {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}

.hero__title-main {
  display: block;
  font-size: 2.6rem;
}

.hero__title-sub {
  display: block;
  color: var(--gray-600);
  font-size: 1.8rem;
}

.hero__value-prop {
  margin: 30px 0;
}

.hero__value-card {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 8px 16px;
  position: relative;
}

.hero__value-strike {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}

.hero__value-original {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: line-through;
}

.hero__value-free {
  display: inline-flex;
  align-items: center;
}

.hero__value-free-text {
  font-size: 1.8rem;
  font-weight: 800;
  margin-right: 10px;
}

.hero__value-free-badge {
  margin-top: 2px;
  padding: 3px 8px;
  background-color: var(--gray-900);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
}

.hero__description {
  font-size: 1.1rem;
  margin: 40px 0;
  max-width: 600px;
  color: var(--gray-700);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero__proof-item {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.hero__proof-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.hero__proof-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.hero__stats-section {
  flex: 0 0 360px;
}

.stats-card {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats-card__header {
  text-align: center;
  margin-bottom: 20px;
}

.stats-card__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.stats-card__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.timer {
  background-color: var(--gray-100);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 24px;
}

.timer__header {
  text-align: center;
  margin-bottom: 10px;
}

.timer__label {
  font-weight: 600;
  color: var(--gray-600);
}

.timer__display {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.timer__unit {
  text-align: center;
}

.timer__date {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
  text-align: center;
}

#countdownDate {
  font-weight: 600;
  color: var(--gray-800);
}

.timer__number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  padding: 4px 0;
  min-width: 60px;
}

.timer__text {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.timer__separator {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: -7px;
  color: var(--gray-600);
}

.stats-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat-highlight {
  background-color: var(--gray-100);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* Benefits Section */
.what-you-get {
  padding: 80px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-card {
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.benefit-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card__description {
  color: var(--gray-600);
}

/* LinkedIn Embed Section */
.linkedin-embed {
  padding: 80px 0;
  background-color: var(--white);
}

.linkedin-embed__container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.linkedin-embed__container iframe {
  max-width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--gray-800);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--gray-200);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.faq-answer p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-item.active .faq-question {
  background-color: var(--gray-50);
}

.faq-item.active .faq-icon {
  background-color: var(--gray-800);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 5px 25px 20px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 30px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

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

.cta-stat__number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.cta-stat__label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Modal */
#giveawayModal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal__content {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  margin: 30px auto;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.modal__header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.modal__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.modal__title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal__subtitle {
  color: var(--gray-600);
  margin-bottom: 5px;
}

.modal__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--gray-300);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.giveaway-form .form-group {
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gray-600);
}

.modal__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
}

.modal__stat {
  text-align: center;
}

.modal__stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.modal__stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.form-security {
  text-align: center;
  margin-top: 15px;
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Form Footer */
.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-300);
}

.form-disclaimer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-disclaimer-text {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.85rem;
}

.form-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.form-link {
  color: var(--gray-800);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.form-link:hover {
  color: var(--black);
}

/* Footer */
.footer {
  padding: 30px 0;
  background-color: var(--white);
  border-top: 1px solid var(--gray-300);
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__text {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__link {
  color: var(--gray-800);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero__proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Global responsive styles */
  .container {
    padding: 0 20px;
  }
  
  .section__title {
    font-size: 1.8rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  /* Hero section responsive styles */
  .hero {
    padding: 60px 0;
  }
  
  .hero__content {
    flex-direction: column;
  }
  
  .hero__stats-section {
    width: 100%;
    margin-top: 40px;
  }
  
  .hero__title {
    font-size: 2.2rem;
  }
  
  .hero__title-main {
    font-size: 2rem;
  }
  
  .hero__title-sub {
    font-size: 1.4rem;
  }
  
  .hero__proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  
  .hero__proof-number {
    font-size: 1.5rem;
  }
  
  .hero__proof-label {
    font-size: 0.8rem;
  }
  
  .hero__description {
    font-size: 1rem;
    margin: 30px 0;
  }
  
  .hero__value-free-text {
    font-size: 1.5rem;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  /* Benefits section responsive styles */
  .what-you-get {
    padding: 60px 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .benefit-card__title {
    font-size: 1.3rem;
  }
  
  /* Testimonials section responsive styles */
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  /* CTA section responsive styles */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  /* Modal responsive styles */
  .modal__content {
    padding: 24px 20px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal__title {
    font-size: 1.6rem;
  }
  
  .modal__subtitle {
    font-size: 0.9rem;
  }
  
  .modal__stats {
    gap: 20px;
  }
  
  /* Form responsive styles */
  .form-group {
    margin-bottom: 16px;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  /* Form footer responsive styles */
  .form-footer {
    margin-top: 24px;
    padding-top: 16px;
  }
  
  .form-disclaimer {
    margin-top: 16px;
    gap: 10px;
  }
  
  .form-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-disclaimer-text {
    font-size: 0.8rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* Extra small device optimizations */
  .hero {
    padding: 40px 0;
  }
  
  .hero__title {
    font-size: 1.8rem;
  }
  
  .hero__title-main {
    font-size: 1.6rem;
  }
  
  .hero__title-sub {
    font-size: 1.2rem;
  }
  
  .hero__proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .hero__proof-item:last-child {
    grid-column: span 2;
    width: 70%;
    margin: 0 auto;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .section__title {
    font-size: 1.6rem;
  }
  
  .section__subtitle {
    font-size: 0.9rem;
  }
  
  .stats-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stat-highlight:last-child {
    grid-column: span 2;
    width: 70%;
    margin: 0 auto;
  }
  
  .timer__display {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .timer__unit {
    margin: 5px;
  }
  
  .modal__icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .modal__close {
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}

/* Thank You Page */
.thank-you-page {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.thank-you-title {
  font-size: 2.5rem;
  color: var(--gray-900);
  margin-bottom: 15px;
}

.thank-you-message {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: 40px;
}

.thank-you-details {
  text-align: left;
  margin: 40px 0;
  padding: 30px;
  background-color: var(--gray-50);
  border-radius: 8px;
}

.thank-you-details h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--gray-800);
}

.thank-you-steps {
  list-style: none;
  padding: 0;
}

.thank-you-steps li {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.thank-you-steps li:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--gray-800);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
}

.step-content p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.5;
}

.thank-you-cta {
  margin: 40px 0;
}

.thank-you-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.back-link {
  color: var(--gray-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--gray-900);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}