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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: #f5f5f4;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1700px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .container {
    max-width: 1300px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  max-width: 1700px;
  margin: 30px auto;
  padding: 18px 40px;
  z-index: 99;
  border-radius: 24px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (max-width: 1600px) {
  .header-container {
    max-width: 1300px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo p {
  color: #000000;
  font-weight: 400;
  font-size: 48px;
}

.header-logo img {
  height: 84px;
  border-radius: 16px;
}

@media (max-width: 1600px) {
  .header-logo {
    gap: 10px;
  }

  .header-logo p {
    font-size: 44px;
  }

  .header-logo img {
    height: 60px;
    border-radius: 8px;
  }
}

.header-menu ul {
  display: flex;
  gap: 52px;
  list-style: none;
  align-items: center;
}

.header-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
  font-size: 26px;
}
#lang-toggle {
  background: #0f6dfa;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 19px 16px 17px 16px;
  border-radius: 14px;
}

#lang-toggle-mobile {
  background: #0f6dfa;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 12px;
  padding: 10px 8px 8px 8px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  #lang-toggle-mobile {
    padding: 10px 8px 8px 8px;
    font-size: 12px;
    border-radius: 9px;
  }
  #lang-toggle {
    padding: 10px 8px 8px 8px;
    border-radius: 9px;
    font-size: 12px;
  }
}
@media (max-width: 1600px) {
  .header-menu ul {
    gap: 40px;
  }

  .header-menu a {
    font-size: 24px;
  }
}

.header-menu a:hover {
  color: #0f6dfa;
}

.header-menu-mobile {
  display: none;
}

@media (max-width: 768px) {
  .header-menu-mobile {
    display: block;
  }
  .header-menu {
    display: none;
  }
}

/* Header: mobile menu */
@media (max-width: 768px) {
  header {
    margin: 10px;
    padding: 0px 0px;
    border-radius: 14px;
  }

  .header-logo {
    gap: 10px;
  }

  .header-logo p {
    font-size: 24px;
  }
  .header-logo img {
    height: 44px;
  }

  .header-menu-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* MENÜ: header'ın içinde akışta kalsın (pencere gibi değil) */
  .header-menu-mobile-menu {
    position: static; /* absolute -> static */
    background: transparent; /* beyaz panel yerine header devamı */
    box-shadow: none; /* pencere gölgesi yok */
    width: 100%;
    padding: 8px 0 0; /* üstten biraz boşluk */
    border: 0; /* panel kenarlığı yok */
    top: auto;
    right: auto;
    left: auto; /* güvenli */
  }

  /* hidden attr kontrolü */
  .header-menu-mobile-menu[hidden] {
    display: none;
  }

  .header-menu-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 12px 8px;
  }

  .header-menu-mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
  }

  .header-menu-mobile-menu a:hover {
    color: #0f6dfa;
  }

  /* İKON TOGGLE: aria-expanded ile hamburger/close değişimi */
  .header-menu-mobile-icon .icon-close {
    display: none;
  }
  .header-menu-mobile-icon[aria-expanded="true"] .icon-open {
    display: none;
  }
  .header-menu-mobile-icon[aria-expanded="true"] .icon-close {
    display: inline;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 30px;
  margin-top: 120px;
}

@media (max-width: 1600px) {
  .hero-section {
    padding: 80px 20px;
    margin-top: 100px;
  }
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1600px) {
  .hero-container {
    gap: 80px;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #97c1ff;
  color: #0b254d;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .hero-badge {
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

@media (max-width: 1600px) {
  .hero-title {
    font-size: 56px;
    margin-bottom: 25px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #0f6dfa 0%, #2379fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 22px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 50px;
  max-width: 680px;
}

@media (max-width: 1600px) {
  .hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 540px;
  }
}

.hero-buttons {
  display: flex;
  gap: 26px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

@media (max-width: 1600px) {
  .hero-buttons {
    gap: 20px;
    margin-bottom: 50px;
  }
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 24px 32px;
  border-radius: 14px;
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

@media (max-width: 1600px) {
  .hero-btn {
    gap: 10px;
    padding: 16px 24px;
    font-size: 18px;
  }
}

.hero-btn.primary {
  background: #0f6dfa;
  color: white;
  box-shadow: 0 10px 30px #2379fa30;
}

.hero-btn.primary:hover {
  background: #2379fa;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px #2379fa30;
}
.hero-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1600px) {
  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
  }
}

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

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #0f6dfa;
  line-height: 1;
  margin-bottom: 6px;
}

@media (max-width: 1600px) {
  .stat-number {
    font-size: 32px;
    margin-bottom: 5px;
  }
}

.stat-label {
  font-size: 17px;
  color: #666;
}

@media (max-width: 1600px) {
  .stat-label {
    font-size: 14px;
  }
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: #e5e5e5;
}

@media (max-width: 1600px) {
  .stat-divider {
    height: 40px;
  }
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

/* QR Scanner Mockup */
.qr-scanner-mockup {
  background: linear-gradient(135deg, #1a1f36 0%, #0f1728 100%);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 25px 80px rgba(15, 109, 250, 0.25);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

@media (max-width: 1600px) {
  .qr-scanner-mockup {
    border-radius: 24px;
    padding: 50px;
  }
}

@media (max-width: 768px) {
  .qr-scanner-mockup {
    padding: 30px;
  }
}

.scanner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 30px;
}

@media (max-width: 1600px) {
  .scanner-frame {
    max-width: 320px;
    padding: 24px;
  }
}

/* Scanner Corners */
.scanner-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid #0f6dfa;
}

@media (max-width: 1600px) {
  .scanner-corner {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
}

.corner-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
}

.corner-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 8px;
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 8px;
}

.corner-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
}

/* Animated Scan Line */
.scan-line {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0f6dfa, transparent);
  box-shadow: 0 0 20px #0f6dfa;
  animation: scan 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes scan {
  0%,
  100% {
    top: 60px;
    opacity: 0.3;
  }
  50% {
    top: calc(100% - 60px);
    opacity: 1;
  }
}

/* Sample QR Code */
.sample-qr {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: qrPulse 2s ease-in-out infinite;
}

.sample-qr svg {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 0 20px rgba(15, 109, 250, 0.3));
}

@media (max-width: 1600px) {
  .sample-qr svg {
    width: 160px;
    height: 160px;
  }
}

@keyframes qrPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Scan Success Indicator */
.scan-success {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #10b981;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  animation: successPop 0.5s ease-out 1s both;
}

@media (max-width: 1600px) {
  .scan-success {
    padding: 10px 20px;
    font-size: 13px;
    gap: 8px;
  }
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.scan-success svg {
  animation: checkMark 0.6s ease-out 1.2s both;
}

@keyframes checkMark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  z-index: 20; /* chat-mockup(10)'un üstü, header(99)'ın altı */
}

@media (max-width: 1600px) {
  .floating-card {
    border-radius: 16px;
    padding: 15px 20px;
    gap: 15px;
  }
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 25%;
  right: -15%;
  animation-delay: 1s;
}

.card-3 {
  top: 50%;
  left: -10%;
  animation-delay: 2s;
}

.card-icon {
  margin: auto;
  width: 52px;
}

@media (max-width: 1600px) {
  .card-icon {
    width: 40px;
  }
}

.card-title {
  font-size: 22px;
  color: #666;
  margin-bottom: 5px;
}

@media (max-width: 1600px) {
  .card-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

.card-value {
  font-size: 17px;
  font-weight: 700;
  color: #0f6dfa;
}

@media (max-width: 1600px) {
  .card-value {
    font-size: 14px;
  }
}
/*
BACKGROUND
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient-1 {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(8, 150, 105, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@media (max-width: 1600px) {
  .bg-gradient-1 {
    width: 800px;
    height: 800px;
  }
}

.bg-gradient-2 {
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.08) 0%,
    transparent 70%
  );
  animation: rotate 15s linear infinite reverse;
}

@media (max-width: 1600px) {
  .bg-gradient-2 {
    width: 600px;
    height: 600px;
  }
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(8, 150, 105, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(8, 150, 105, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@media (max-width: 1600px) {
  .bg-grid {
    background-size: 50px 50px;
  }
}
*/
/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px #2379fa30;
  }
  50% {
    box-shadow: 0 15px 40px #2379fa30;
  }
}

@keyframes progressLoad {
  from {
    width: 0;
  }
  to {
    width: 89%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 10px 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .header-container {
    padding: 15px 20px;
  }

  .header-menu ul {
    gap: 20px;
  }
}

/* FEATURES SECTION */

.features-section {
  background: #fafaf9;
  padding: 80px 0;
}

.features-container {
  max-width: 1400px;
  margin: auto;
}
@media (max-width: 768px) {
  .features-container {
    margin: auto 12px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 52px;
}

@media (max-width: 1600px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}

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

.feature-icon {
  width: 130px;
  height: 130px;
  background: #0f6dfa;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 26px;
  color: white;
}

@media (max-width: 1600px) {
  .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.feature-icon svg {
  width: 70%;
  height: 70%;
}

@media (max-width: 768px) {
  .feature-item {
    text-align: center;
  }
  .feature-icon {
    margin: 18px auto;
  }
}

.feature-item h3 {
  color: #0f6dfa;
  font-size: 40px;
  margin-bottom: 15px;
}

@media (max-width: 1600px) {
  .feature-item h3 {
    font-size: 32px;
    margin-bottom: 12px;
  }
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 22px;
}

@media (max-width: 1600px) {
  .feature-item p {
    font-size: 18px;
  }
}

.features-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

@media (max-width: 1600px) {
  .features-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 10px 0;
  padding-left: 38px;
  position: relative;
  color: #555;
  font-size: 17px;
}

@media (max-width: 1600px) {
  .features-list li {
    padding: 8px 0;
    padding-left: 30px;
    font-size: 14px;
  }
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f6dfa;
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 1600px) {
  .features-list li:before {
    font-size: 18px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

@media (max-width: 1600px) {
  .section-header {
    margin-bottom: 50px;
  }
}

.section-label {
  color: #0f6dfa;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

@media (max-width: 1600px) {
  .section-label {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.section-header h1 {
  color: #0f6dfa;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 1600px) {
  .section-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .section-header {
    font-size: 28px;
  }
}

.section-header p {
  color: #666;
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto 38px;
}

@media (max-width: 1600px) {
  .section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .extra-package {
    flex-direction: column;
    text-align: center;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 76px 0;
}

@media (max-width: 1600px) {
  .testimonials-section {
    padding: 60px 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 38px;
  margin-top: 64px;
}

@media (max-width: 1600px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

@media (max-width: 1600px) {
  .testimonial-card {
    border-radius: 20px;
    padding: 30px;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

@media (max-width: 1600px) {
  .testimonial-header {
    gap: 15px;
    margin-bottom: 20px;
  }
}

.testimonial-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f6dfa 0%, #0f6dfa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 30px;
  flex-shrink: 0;
}

@media (max-width: 1600px) {
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1600px) {
  .testimonial-name {
    font-size: 18px;
    margin-bottom: 4px;
    gap: 8px;
  }
}

.verified-badge {
  width: 22px;
  height: 22px;
  background: #0f6dfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1600px) {
  .verified-badge {
    width: 18px;
    height: 18px;
  }
}

.verified-badge svg {
  width: 15px;
  height: 15px;
  stroke: white;
  stroke-width: 3;
}

@media (max-width: 1600px) {
  .verified-badge svg {
    width: 12px;
    height: 12px;
  }
}

.testimonial-role {
  font-size: 17px;
  color: #666;
}

@media (max-width: 1600px) {
  .testimonial-role {
    font-size: 14px;
  }
}

.testimonial-message {
  background: #97c1ff;
  border-radius: 15px;
  border-bottom-left-radius: 2px;
  padding: 18px 22px;
  margin-bottom: 18px;
  position: relative;
}

@media (max-width: 1600px) {
  .testimonial-message {
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 15px;
  }
}

.testimonial-message p {
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 22px;
  margin: 0;
}

@media (max-width: 1600px) {
  .testimonial-message p {
    font-size: 15px;
  }
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  align-items: center;
}

@media (max-width: 1600px) {
  .testimonial-rating {
    gap: 4px;
  }
}

.star {
  color: #e1c170;
  font-size: 22px;
}

@media (max-width: 1600px) {
  .star {
    font-size: 18px;
  }
}

.testimonial-date {
  font-size: 15px;
  color: #999;
  margin-left: 13px;
}

@media (max-width: 1600px) {
  .testimonial-date {
    font-size: 12px;
    margin-left: 10px;
  }
}

.whatsapp-quote {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.1;
  width: 50px;
  height: 50px;
}

@media (max-width: 1600px) {
  .whatsapp-quote {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }
}

/* CTA Section */

.cta-section {
  background: #0f6dfa;
  padding: 76px 52px;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 13px;
}

.cta-section p {
  color: white;
  font-size: 35px;
  margin-bottom: 38px;
}

.cta-section button {
  background: white;
  color: #0f6dfa;
  border: none;
  padding: 26px 76px;
  border-radius: 36px;
  font-weight: 400;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-section button:hover {
  transform: scale(1.05);
}

.cta-button {
  width: 100%;
  background: #0f6dfa;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 36px;
  font-weight: 600;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 32px;
}

.cta-button:hover {
  background: #2379fa;
  transform: scale(1.02);
}

@media (max-width: 1600px) {
  .cta-section {
    padding: 60px 40px;
  }
  .cta-section h2 {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .cta-section p {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .cta-section button {
    padding: 20px 60px;
    border-radius: 30px;
    font-size: 24px;
  }
  .cta-button {
    padding: 15px;
    border-radius: 30px;
    font-size: 18px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 50px 20px;
  }
  .cta-section h2 {
    font-size: 40px;
    margin-bottom: 8px;
  }
  .cta-section p {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .cta-section button {
    padding: 15px 40px;
    border-radius: 28px;
    font-size: 18px;
  }
}

/* FAQ SECTION */

.faq-section {
  background: #fff;
  padding: 100px 0;
}

@media (max-width: 1600px) {
  .faq-section {
    padding: 80px 0;
  }
}

.faq-section h2 {
  color: #0f6dfa;
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 18px;
}

@media (max-width: 1600px) {
  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
}

.faq-section-subtitle {
  color: #666;
  margin-bottom: 52px;
  font-size: 20px;
}

@media (max-width: 1600px) {
  .faq-section-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 52px;
}

@media (max-width: 1600px) {
  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
  }
}

.faq-item h3 {
  color: #333;
  font-size: 30px;
  margin-bottom: 15px;
}

@media (max-width: 1600px) {
  .faq-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  font-size: 22px;
}

@media (max-width: 1600px) {
  .faq-item p {
    font-size: 18px;
  }
}

/* FOOTER SECTION */
footer {
  background: #ffffff;
  text-align: center;
  padding-top: 34px;
}

footer img {
  height: 84px;
  border-radius: 16px;
}

@media (max-width: 1600px) {
  footer {
    padding-top: 26px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

@media (max-width: 1600px) {
  .footer-logo {
    gap: 10px;
  }
}

.footer-logo p {
  color: #000000;
  font-weight: 400;
  font-size: 40px;
}

@media (max-width: 1600px) {
  .footer-logo p {
    font-size: 32px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu ul {
  display: flex;
  gap: 26px;
  list-style: none;
}

@media (max-width: 1600px) {
  .footer-menu ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  footer {
    text-align: left;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  footer img {
    height: 58px;
    border-radius: 12px;
  }
}

.footer-menu a {
  color: #000;
  font-weight: 500;
  font-size: 22px;
  text-decoration: none;
}

@media (max-width: 1600px) {
  .footer-menu a {
    font-size: 18px;
  }
}

.footer-menu a:hover {
  color: #0f6dfa;
}

.footer-social {
  display: flex;
  gap: 26px;
}

@media (max-width: 1600px) {
  .footer-social {
    gap: 20px;
  }
}

.footer-social a {
  color: #333;
  text-decoration: none;
}

.footer-social a:hover {
  color: #0f6dfa;
}

.footer-copyright {
  color: #0f6dfa;
  font-size: 20px;
  margin-top: 26px;
  border-top: 1px solid #0f6dfa;
  padding: 38px 0;
  width: 100%;
  text-align: left;
}

@media (max-width: 1600px) {
  .footer-copyright {
    font-size: 16px;
    margin-top: 20px;
    padding: 30px 0;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .header h1 {
    font-size: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-menu a {
    font-size: 16px;
  }
}

/* ... mevcut motif CSS'in hemen altına ekle ... */
html[data-motif="qrcode"] body::before,
html[data-motif="qrcode"] body::after {
  content: none !important;
}

.hero-section,
.how-section,
.features-section,
.testimonials-section,
.faq-section,
.blog-section,
.blog-detail-section,
.cta-section,
footer {
  position: relative;
  z-index: 1;
}

/* PRIVACY SECTION */
.privacy-section {
  padding: 240px 0 80px;
  min-height: 100vh;
}

@media (max-width: 1600px) {
  .privacy-section {
    padding: 100px 0 60px;
  }
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 0 20px;
  }
}

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

@media (max-width: 1600px) {
  .privacy-header {
    margin-bottom: 50px;
  }
}

.privacy-header h1 {
  color: #0f6dfa;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .privacy-header h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .privacy-header h1 {
    font-size: 32px;
  }
}

.privacy-intro {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .privacy-intro {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .privacy-intro {
    font-size: 16px;
  }
}

.privacy-content {
  background: white;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1600px) {
  .privacy-content {
    border-radius: 20px;
    padding: 50px;
  }
}

@media (max-width: 768px) {
  .privacy-content {
    border-radius: 16px;
    padding: 30px;
  }
}

.privacy-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

@media (max-width: 1600px) {
  .privacy-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
  }
}

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

.privacy-item h2 {
  color: #0f6dfa;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (max-width: 1600px) {
  .privacy-item h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .privacy-item h2 {
    font-size: 20px;
  }
}

.privacy-item p {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 1600px) {
  .privacy-item p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .privacy-item p {
    font-size: 15px;
  }
}

.privacy-item p:last-child {
  margin-bottom: 0;
}

/* Privacy sayfası için özel düzenlemeler */
.privacy-section .header-radius {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .privacy-section .header-radius {
    margin-top: 10px;
  }
}
