:root {
  --white: #ffffff;
  --almost-white: #f5f5f5;
  --gray: #cccccc;
  --dark-gray: #1e1e1e;
  --darker-gray: #121212;
  --black: #0a0a0a;
  --accent-orange: #ff8301;
  --shadow: rgba(0, 0, 0, 0.1);
}

::selection {
  background: var(--accent-orange);
  color: var(--white);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--almost-white);
  color: #111;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.darkmode {
  background-color: var(--black);
  color: var(--almost-white);
}

/* main page */

nav.menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 220px;
  background-color: var(--white);
  padding: 20px 40px;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  overflow-y: auto;
  cursor: default;
  z-index: 20;
}

body.darkmode nav.menu {
  background-color: var(--dark-gray);
  color: var(--almost-white);
}

nav.menu button {
  position: sticky;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: unset;
  margin: -20px -40px;
  color: var(--accent-orange);
  border: none;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-40px) translateY(-20px);
  transition: 0.3s ease;
  cursor: pointer;
}

nav.menu button:hover {
  color: var(--black);
}

nav.menu p {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.75;
}

nav.menu p.developer,
nav.menu p.developer a {
  color: transparent;
  text-decoration: none;
  pointer-events: none;
}

body.darkmode nav.menu button:hover {
  color: var(--almost-white);
}

body.menu-visible nav.menu {
  transform: translateX(0);
  box-shadow: 0 2px 10px var(--almost-white);
}

body.darkmode.menu-visible nav.menu {
  transform: translateX(0);
  box-shadow: 0 2px 10px var(--dark-gray);
}

nav.menu h3 {
  margin-bottom: 30px;
}

nav.menu ul {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

nav.menu ul li {
  margin: 15px 0;
  font-weight: bold;
}

nav.menu ul li a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

nav.menu ul li a:hover {
  color: var(--accent-orange);
}

header {
  background: linear-gradient(180deg, #f15b0b, #f15b0b, var(--accent-orange));
  color: var(--almost-white);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: default;
}

body.darkmode header {
  color: var(--black);
}

header h1 {
  max-width: max-content;
  margin-inline: auto;
  padding: 12px 18px;
  line-height: 1.5;
  text-transform: uppercase;
  border-top: 6px solid var(--almost-white);
  border-bottom: 6px solid var(--almost-white);
  border-radius: 12px;
  transition: 0.3s ease;
}

body.darkmode header h1 {
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
  transition: 0.3s ease;
}

header p {
  max-width: max-content;
  margin-inline: auto;
  padding: 10px 14px;
  background: var(--almost-white);
  color: var(--darker-gray);
  border-radius: 7px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

body.darkmode header p {
  background: var(--black);
  color: var(--almost-white);
  transition: 0.3s ease;
}

.hero {
  padding-top: 72px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.cv-created-counter {
  display: block;
  margin: 20px auto;
  padding: 4px 20px;
  position: relative;
  cursor: default;
}

body.darkmode .cv-created-counter {
  color: var(--almost-white);
}

.cv-created-counter p {
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
}

.cv-created-counter .badge {
  position: absolute;
  top: 24px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  box-shadow: 0 0 0 2px white;
  animation: fade-transparent 1s ease-in-out infinite;
}

body.darkmode .cv-created-counter .badge {
  box-shadow: 0 0 0 2px var(--darker-gray);
}

@keyframes move-horizontal {
  0% {
    transform: scale(1) translateX(0);
  }

  50% {
    transform: scale(0.95) translateX(4vw);
  }

  100% {
    transform: scale(1) translateX(0);
  }
}

.cv-header-arrow {
  position: absolute;
  height: 120px;
  top: -10px;
  transform: translateX(-312px);
  filter: invert(1) contrast(0.94);
  user-select: none;
  pointer-events: none;
}

body.darkmode .cv-header-arrow {
  filter: contrast(0.94);
}

.cv-hero {
  width: 50%;
  max-width: 340px;
  transition: all 0.6s ease;
  animation: move-horizontal 6s ease-in-out infinite;
}

.cv-hero:hover {
  filter: brightness(2) contrast(2);
}

.template-list {
  max-width: 700px;
  margin: 52px auto;
  padding: 0 20px;
  transition: 0.3s ease;
  cursor: default;
}

.template-list h2 {
  width: max-content;
  margin: auto;
  padding: 8px 12px;
  text-align: center;
  font-size: 1.7rem;
  border-bottom: 3px solid transparent;
  border-radius: 10px;
  transition: 0.3s ease;
}

body.darkmode .template-list h2 {
  color: var(--almost-white);
}

.template-list .template-ats:hover h2 {
  border-bottom: 3px solid var(--black);
}

.template-list .template-creative:hover h2 {
  border-bottom: 3px solid var(--black);
}

body.darkmode .template-list .template-ats:hover h2 {
  border-bottom: 3px solid var(--almost-white);
}

body.darkmode .template-list .template-creative:hover h2 {
  border-bottom: 3px solid var(--almost-white);
}

.template-list h3 {
  padding: 10px 20px 15px 20px;
  line-height: 2;
  text-align: center;
  color: var(--accent-orange);
}

.template-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
  margin-bottom: 50px;
}

.template-list li a {
  display: block;
  padding: 15px 20px;
  background: var(--gray);
  color: #222;
  line-height: 2;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s ease;
}

body.darkmode .template-list li a {
  background: var(--dark-gray);
  color: var(--almost-white);
}

.template-list li a:hover {
  background-color: var(--accent-orange);
  color: var(--almost-white);
}

body.darkmode .template-list li a:hover {
  background-color: var(--accent-orange);
  color: #111;
}

.features {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  cursor: default;
}

.features h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--almost-white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  cursor: pointer;
}

body.darkmode .feature-card {
  background: var(--darker-gray);
  color: var(--almost-white);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--accent-orange);
}

.feature-card p {
  margin: 10px 0 0;
  line-height: 1.5;
}

.feature-card {
  position: relative;
}

@keyframes fade-transparent {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.feature-card .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 50%;
  box-shadow: 0 0 0 2px white;
  animation: fade-transparent 1s ease-in-out infinite;
}

body.darkmode .feature-card .badge {
  box-shadow: 0 0 0 2px var(--darker-gray);
}

.coming-soon {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  cursor: default;
}

.coming-soon h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 30px;
}

body.darkmode .coming-soon h2 {
  color: var(--almost-white);
}

.faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  cursor: default;
}

.faq h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 40px;
}

body.darkmode .faq h2 {
  color: var(--almost-white);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--almost-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

body.darkmode .faq-item {
  background: var(--darker-gray);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05);
}

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

body.darkmode .faq-item:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  padding: 0 20px 20px 20px;
  overflow: scroll;
  scrollbar-color: var(--white) var(--accent-orange);
}

.faq-answer p {
  margin: 0;
  min-height: max-content;
  line-height: 1.7;
  color: inherit;
}

.brand {
  padding-block: 20px;
  background-color: var(--gray);
}

body.darkmode .brand {
  padding-block: 20px;
  background-color: var(--darker-gray);
}

.brand h2 {
  max-width: max-content;
  margin-inline: auto;
  padding: 11px 13px;
  font-size: 1.6rem;
  text-align: center;
  text-transform: uppercase;
  border-top: 4px solid var(--darker-gray);
  border-bottom: 4px solid var(--darker-gray);
  border-radius: 10px;
  transition: 0.3s ease;
  cursor: default;
}

body.darkmode .brand h2 {
  border-top: 4px solid var(--almost-white);
  border-bottom: 4px solid var(--almost-white);
  transition: 0.3s ease;
}

.pre-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 10%;
  cursor: default;
}

.pf-left {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 2px solid var(--gray);
  padding-right: 40px;
}

body.darkmode .pf-left {
  border-right: 2px solid var(--dark-gray);
}

.pf-logo {
  width: 70px;
  padding: 6px;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--gray);
}

body.darkmode .pf-logo {
  border: 2px solid var(--dark-gray);
}

.pf-brand {
  font-size: 1.7rem;
  font-weight: 700;
}

.pf-follow {
  margin-top: 10px;
  font-weight: 600;
}

.pf-socials {
  display: flex;
  gap: 16px;
  margin-top: 5px;
}

.pf-socials img {
  width: 26px;
  height: 26px;
  filter: grayscale(1);
  transition: 0.3s ease;
}

body.darkmode .pf-socials img {
  filter: grayscale(1) invert(1);
}

.pf-socials img:hover {
  transform: scale(1.15);
  filter: none;
}

.pf-download img {
  margin: 16px 0;
  max-width: 220px;
}

.pf-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.pf-col h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.pf-col a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
  font-size: 0.96rem;
  transition: 0.3s ease;
}

.pf-col a:hover {
  opacity: 0.5;
}

/* other page */

.privacy-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px 60px 20px;
  line-height: 1.8;
}

.privacy-container p a {
  color: inherit;
}

.privacy-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--accent-orange);
}

body.darkmode .privacy-title {
  color: var(--accent-orange);
}

.privacy-intro {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 40px;
  padding: 20px;
  background: var(--almost-white);
  border-radius: 10px;
  font-weight: 600;
}

body.darkmode .privacy-intro {
  background: var(--darker-gray);
  color: var(--almost-white);
}

.privacy-section {
  margin-bottom: 35px;
}

.privacy-section h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--accent-orange);
}

body.darkmode .privacy-section h2 {
  color: var(--accent-orange);
}

.privacy-section p {
  margin: 0;
  text-align: justify;
}

.privacy-lastupdate {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--gray);
  font-size: 0.95rem;
}

body.darkmode .privacy-lastupdate {
  border-top-color: var(--dark-gray);
}

.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: var(--accent-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 5px var(--shadow);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.back-button.show {
  opacity: 1;
  visibility: visible;
}

.back-button:hover {
  background-color: #f15b0b;
  transform: translateX(-3px);
}

.back-button span:first-child {
  font-size: 20px;
}

@media (max-width: 900px) {
  .pre-footer {
    flex-direction: column;
    padding: 40px 8%;
  }

  .pf-left {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--gray);
    padding-right: 0;
    padding-bottom: 60px;
  }

  body.darkmode .pf-left {
    border-right: none;
    border-bottom: 2px solid var(--dark-gray);
  }

  .pf-right {
    flex-direction: column;
    gap: 30px;
  }
}

footer {
  background: linear-gradient(180deg, var(--accent-orange), #f15b0b, #f15b0b);
  color: var(--almost-white);
  margin-top: 30px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px var(--shadow);
  cursor: default;
}

body.darkmode footer {
  color: var(--black);
}

footer h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6rem;
}

footer p {
  max-width: max-content;
  margin: auto;
  padding: 10px 14px;
  background: var(--almost-white);
  color: var(--darker-gray);
  border-radius: 7px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s ease;
}

footer p span {
  display: inline-block;
}

body.darkmode footer p {
  background: var(--black);
  color: var(--almost-white);
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: var(--accent-orange);
}

.cv-footer-tick {
  position: absolute;
  height: 132px;
  transform: translateX(-356px) translateY(-50px);
  filter: invert(1) contrast(1.1);
  user-select: none;
  pointer-events: none;
}

body.darkmode .cv-footer-tick {
  filter: contrast(1.1);
}

.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.fab button {
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange);
  color: var(--almost-white);
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px var(--shadow);
  transition: all 0.3s ease;
}

.fab button:hover {
  background-color: #f15b0b;
}

.fab #goToTopBtn {
  opacity: 0;
  pointer-events: none;
}

.fab #playSoundBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 30;
  justify-content: center;
  align-items: center;
  cursor: default;
}

body.darkmode .popup-overlay {
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes popin {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.popup {
  background: var(--almost-white);
  color: var(--darker-gray);
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 75%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: popin 0.2s ease;
}

body.darkmode .popup {
  background: var(--darker-gray);
  color: var(--almost-white);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.popup h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.popup p {
  margin: 16px 0;
  line-height: 1.6;
}

.popup button {
  background-color: var(--accent-orange);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.popup button:hover {
  background-color: #f15b0b;
}

@media (min-width: 680px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-methods {
  margin: 40px 0;
}

.contact-methods h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--accent-orange);
}

body.darkmode .contact-methods h2 {
  color: var(--accent-orange);
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 680px) {
  .contact-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn svg {
  width: 40px;
  height: 40px;
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gmail-btn {
  background: linear-gradient(135deg, #ea4335, #d33426);
  color: white;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.messenger-btn {
  background: linear-gradient(135deg, #0084ff, #0066cc);
  color: white;
}

body.darkmode .contact-btn {
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

body.darkmode .contact-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.feedback-form-section {
  max-width: 700px;
  margin: 40px auto;
}

.feedback-help-links {
  background: var(--almost-white);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

body.darkmode .feedback-help-links {
  background: var(--darker-gray);
}

.feedback-help-links p {
  margin: 0 0 12px 0;
  font-weight: 600;
}

.feedback-help-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feedback-help-links li {
  margin: 8px 0;
}

.feedback-help-links a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.feedback-help-links a:hover {
  opacity: 0.7;
}

.feedback-form {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

body.darkmode .feedback-form {
  background: var(--darker-gray);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05);
}

.feedback-instruction {
  margin: 0 0 20px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: #111;
  transition: border-color 0.3s ease;
}

body.darkmode .form-group input,
body.darkmode .form-group select,
body.darkmode .form-group textarea {
  background: var(--black);
  color: var(--almost-white);
  border-color: var(--dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.form-group small {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.feedback-note {
  background: var(--almost-white);
  padding: 16px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

body.darkmode .feedback-note {
  background: var(--black);
}

.feedback-note p {
  margin: 0;
}

.feedback-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.feedback-submit-btn:hover {
  background: #f15b0b;
}

/* mobile first */
.main-wrapper {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  width: 100%;
}

.sidebar {
  width: 100%;
  margin-top: 40px;
}

/* desktop layout */
@media (min-width: 1024px) {
  body {
    font-size: 0.95rem;
  }

  .main-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    padding: 40px 3%;
  }

  .main-content {
    padding-right: 40px;
  }

  body.darkmode .main-content {
    border-right-color: var(--dark-gray);
  }

  .sidebar {
    margin-top: 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .template-list {
    max-width: 100%;
    margin: 40px 0;
  }

  .features {
    max-width: 100%;
    margin: 50px 0;
  }

  .coming-soon {
    max-width: 100%;
    margin: 50px 0;
  }
}

.customers {
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 40px 20px;
  text-align: center;
  cursor: default;
}

.customers h2 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--darker-gray);
}

body.darkmode .customers h2 {
  color: var(--almost-white);
}

.customers-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.customers-logos img {
  height: 30px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) contrast(0.94);
  transition: all 0.3s ease;
}

body.darkmode .customers-logos img {
  filter: grayscale(1) invert(1) contrast(0.94);
  opacity: 0.6;
}

.customers-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.2);
}

body.darkmode .customers-logos img:hover {
  filter: grayscale(0) invert(0);
}

@media (min-width: 1024px) {
  .customers {
    max-width: 100%;
    margin: 0 0 40px 0;
    padding: 30px 0;
  }

  .customers h2 {
    font-size: 1.2rem;
  }

  .customers-logos {
    gap: 35px;
  }

  .customers-logos img {
    height: 35px;
  }
}

.hero-cta {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, var(--accent-orange), #f15b0b);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: default;
}

body.darkmode .hero-cta {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

.hero-cta-badge {
  display: inline-block;
  background: var(--white);
  color: var(--accent-orange);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.darkmode .hero-cta-badge {
  background: var(--black);
  color: var(--accent-orange);
}

.hero-cta h2 {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
}

body.darkmode .hero-cta h2 {
  color: var(--black);
}

.hero-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--accent-orange);
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

body.darkmode .hero-cta-btn {
  background: var(--black);
  color: var(--accent-orange);
}

@media (min-width: 1024px) {
  .hero-cta {
    max-width: 100%;
    margin: 0 0 50px 0;
    padding: 40px 25px;
  }

  .hero-cta h2 {
    font-size: 1.4rem;
  }

  .hero-cta-btn {
    padding: 14px 35px;
    font-size: 1rem;
  }
}

.testimonials {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
  cursor: default;
}

.testimonials h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  line-height: 1.4;
}

.testimonials-highlight {
  color: var(--accent-orange);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  background: var(--almost-white);
  border-radius: 16px;
  padding: 40px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body.darkmode .testimonials-carousel {
  background: var(--darker-gray);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
}

.testimonial-item.active {
  opacity: 1;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 30px 0;
  color: var(--darker-gray);
}

body.darkmode .testimonial-quote {
  color: var(--almost-white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  border: 3px solid var(--accent-orange);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-rating {
  color: var(--accent-orange);
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  border: none;
  background: unset;
  width: 45px;
  height: 45px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

body.darkmode .carousel-btn {
  color: var(--white);
}

.carousel-btn:hover {
  background: unset;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

body.darkmode .carousel-dots .dot {
  background: var(--dark-gray);
}

.carousel-dots .dot.active {
  background: var(--accent-orange);
  transform: scale(1.3);
}

.carousel-dots .dot:hover {
  background: var(--accent-orange);
  opacity: 0.7;
}

@media (max-width: 680px) {
  .testimonials-carousel {
    padding: 30px 50px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    max-width: 100%;
    margin: 0 0 50px 0;
  }

  .testimonials h2 {
    font-size: 1.6rem;
    margin-bottom: 35px;
  }

  .testimonials-carousel {
    padding: 35px 55px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }
}

/* sidebar */

.sidebar-faq,
.sidebar-blog {
  background: var(--almost-white);
  border-radius: 12px 0 0 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.darkmode .sidebar-faq,
body.darkmode .sidebar-blog {
  background: var(--darker-gray);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.03);
}

.sidebar-faq h2,
.sidebar-blog h2 {
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  color: var(--accent-orange);
}

.sidebar-faq .faq-container {
  gap: 12px;
}

.sidebar-faq .faq-item {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

body.darkmode .sidebar-faq .faq-item {
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.03);
}

.sidebar-faq .faq-question {
  padding: 15px;
  font-size: 0.95rem;
}

.sidebar-faq .faq-icon {
  font-size: 1.3rem;
}

.sidebar-faq .faq-answer {
  font-size: 0.9rem;
}

.sidebar-faq .faq-question[aria-expanded="true"] + .faq-answer {
  padding: 0 15px 15px 15px;
}

.sidebar-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.sidebar-link:hover {
  opacity: 0.7;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray);
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body.darkmode .blog-item {
  border-bottom-color: var(--dark-gray);
}

.blog-item h3 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.blog-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-item h3 a:hover {
  color: var(--accent-orange);
}

.blog-item time {
  font-size: 0.85rem;
  color: var(--dark-gray);
  opacity: 0.7;
}

body.darkmode .blog-item time {
  color: var(--almost-white);
}

@media (min-width: 1024px) {
  .sidebar-faq,
  .sidebar-blog {
    padding: 20px;
  }

  .sidebar-faq h2,
  .sidebar-blog h2 {
    font-size: 1.2rem;
  }
}

.footer-cta {
  background: var(--dark-gray);
  padding: 60px 20px;
  margin-top: 60px;
  cursor: default;
}

body.darkmode .footer-cta {
  background: var(--darker-gray);
  border-top: 2px solid var(--dark-gray);
  border-bottom: 2px solid var(--dark-gray);
}

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

.footer-cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

body.darkmode .footer-cta h2 {
  color: var(--almost-white);
}

.footer-cta p {
  color: var(--almost-white);
  font-size: 1.1rem;
  margin: 0 0 35px 0;
  opacity: 0.9;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-btn {
  display: block;
  padding: 16px 30px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 131, 1, 0.3);
}

.cta-primary:hover {
  background: #f15b0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 131, 1, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--dark-gray);
}

body.darkmode .cta-secondary {
  border-color: var(--almost-white);
  color: var(--almost-white);
}

body.darkmode .cta-secondary:hover {
  background: var(--almost-white);
  color: var(--black);
}

@media (min-width: 680px) {
  .footer-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-btn {
    flex: 1;
    max-width: 240px;
  }
}

@media (min-width: 1024px) {
  .footer-cta {
    padding: 50px 20px;
    margin-top: 50px;
  }

  .footer-cta h2 {
    font-size: 1.8rem;
  }

  .footer-cta p {
    font-size: 1rem;
  }
}

.sidebar-auth {
  background: var(--almost-white);
  border-radius: 12px 0 0 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.darkmode .sidebar-auth {
  background: var(--darker-gray);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.03);
}

.sidebar-auth h2 {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  color: var(--accent-orange);
}

.auth-subtitle {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 20px 0;
  opacity: 0.85;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray);
}

body.darkmode .auth-tabs {
  border-bottom-color: var(--dark-gray);
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab:hover {
  color: var(--accent-orange);
}

.auth-tab.active {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-form input {
  width: 70%;
  padding: 10px 12px;
  border: 2px solid var(--gray);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--white);
  color: #111;
  transition: border-color 0.3s ease;
}

body.darkmode .auth-form input {
  background: var(--black);
  color: var(--almost-white);
  border-color: var(--dark-gray);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent-orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}

.auth-btn:hover {
  background: #f15b0b;
}

@media (min-width: 1024px) {
  .sidebar-auth {
    padding: 20px;
  }

  .sidebar-auth h2 {
    font-size: 1.2rem;
  }

  .auth-subtitle {
    font-size: 0.85rem;
  }
}
