:root {
  --primary: #ec3e1d;
  --secondary: #ecbc1d;
  --background: #0d0d0d;
  --background-light: white;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 16px;
  font-weight: 500;
}

.logo {
  font-weight: 900;
  font-size: 20px;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 48px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 48px;
  background-color: var(--background-light);
  border-radius: 8px;
  padding: 16px;
  z-index: 1000;
}

.mobile-menu a {
  margin: 8px 0;
  text-decoration: none;
  color: var(--primary);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease forwards;
}

.modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(-30px);
  animation: slideUp 0.4s ease forwards;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.modal-buttons {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.modal-buttons a {
  padding: 4px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.apple-btn {
  display: inline-block;
  width: 200px;
  height: 45px;
  background-image: url("../img/downloadappstore.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  text-indent: -9999px;
  /* metni gizler */
}

.google-btn {
  display: inline-block;
  width: 200px;
  height: 45px;
  background-image: url("../img/downloadplaystore.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  text-indent: -9999px;
  /* metni gizler */
}

.microsoft-btn {
  display: inline-block;
  width: 200px;
  height: 45px;
  background-image: url("../img/microsoftdownload.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  text-indent: -9999px;
  /* metni gizler */
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #0d0d0d !important;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: fadeSlide 0.3s ease;
}

.login-form h2 {
  text-align: center;
  color: #343a40;
  margin-bottom: 10px;
}

.login-form input,textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
}

.login-form input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.login-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.text-section {
  flex: 1;
  max-width: 600px;
  margin-bottom: 50px;
}

.text-section h1 {
  font-size: 80px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.outline {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

.buttons {
  margin-top: 30px;
}

.buttons button {
  font-size: 16px;
  padding: 12px 24px;
  margin-right: 12px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  cursor: pointer;
  border-radius: 8px;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.get-started {
  background-color: var(--primary);
  color: var(--background-light);
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
}

.image-section {
  flex: 1;
  max-width: 450px;
  padding: 20px;
}

.image-section img {
  border-radius: 16px;
  width: 100%;
}

p.description {
  color: #ccc;
  margin-top: 20px;
  line-height: 1.5;
}

.why-section {
  padding: 60px 48px;
  background-color: #0d0d0d;
}

.why-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 24px;
}

.why-header h2 {
  font-size: 32px;
  margin-top: 10px;
  max-width: 500px;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  color: white;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .why-header {
    flex-direction: column;
    text-align: left;
  }

  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
  }
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

.brand img {
  width: 300px;
}

footer {
  background-color: #2a2a35;
  color: #ffffff;
  padding: 40px 48px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.footer-section {
  flex: 1;
  min-width: 200px;

}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-section a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

.pricing-section {
  margin-top: 80px;
  text-align: center;
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  /* içerikleri dikey diz */
  justify-content: space-between;
  /* üst bilgi & buton arası boşluk */
  background: #f9f9f9;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  max-width: 300px;
  flex: 1 1 280px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.3s;
  min-height: 580px;
  /* sabit yükseklik isteğe bağlı */
}

.trygirl1 {
  background-image: url('https://regimendus.online/assets/img/trygirl1.png');
}

.trygirl2 {
  background-image: url('../img/trygirl2.png');
}

.trygirl3 {
  background-image: url('../img/trygirl3.png');
}

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

.pricing-card.highlighted {
  border: 2px solid var(--primary);
  background-color: var(--background);
}

.pricing-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.pricing-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 20px 0;
  color: var(--primary);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: auto;
  flex-grow: 1;
  /* kart içeriğini yukarı iter */
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 3em;
  position: relative;
}

.pricing-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.pricing-card button {
  background-color: var(--primary);
  color: var(--background-light);
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(--primary);
  border-radius: 50%;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--secondary);
}

input:checked+.slider:before {
  transform: translateX(22px);
}

.faq-section {
  max-width: 800px;
  margin: 80px auto;
  text-align: center;
  padding: 10px;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
}

.faq-toggle {
  background-color: var(--primary);
  color: var(--background-light);
  font-size: 1.2rem;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--background);
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-section {
  margin-top: 100px;
  background: #2a2a35;
  padding: 60px 20px;
  border-radius: 40px 40px 0 0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.contact-image {
  flex: 1 1 300px;
}

.contact-image img {
  max-width: 100%;
  border-radius: 30px;
}

.contact-message {
  flex: 2 1 400px;
}

.contact-message p {
  background: var(--primary);
  padding: 20px;
  border-radius: 20px 40px 40px 0;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-message button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}


@media (max-width: 1080px) {

  .text-section h1 {
    font-size: 60px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 928px) {

  .text-section h1 {
    font-size: 48px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


@media (max-width: 768px) {

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-content {
    flex-direction: column;
    padding: 30px 20px;
  }

  .text-section,
  .image-section {
    max-width: 100%;
    padding: 5%;
  }

  .text-section h1 {
    font-size: 48px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

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