body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

/* Hero Section - Modern Gradient with Background Image */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85) 0%,
      rgba(30, 41, 59, 0.85) 50%,
      rgba(51, 65, 85, 0.85) 100%
    ),
    url("/assets/image/arkaplan_liveorten.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  padding-top: 240px ;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Dekoratif Arka Plan Öğeleri */
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Breadcrumb - Modern */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 500;
}

.breadcrumb span {
  transition: color 0.3s;
}

.breadcrumb span:hover {
  color: #4ade80;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Hero Content Grid */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Sol Kutu - Glassmorphism Effect */
.info-box {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Badge - Animated Gradient */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 107, 0, 0.6);
  }
}

.badge::before {
  content: "🔥";
  font-size: 14px;
}

.badge-subtitle {
  color: #ffffff;
  font-style: italic;
  font-size: 18px; /* masaüstü boyutu */
  margin-top: 10px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  text-align: center; /* ortalama için */
}

/* Tablet ve mobil cihazlar için */
@media (max-width: 991px) {
  .badge-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .badge-subtitle {
    font-size: 14px;
  }
}


/* Ana Başlık - Modern Typography */
.main-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.highlight-green {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

/* Feature Box - Card Style */
.feature-box {
  background: linear-gradient(
    135deg,
    rgba(74, 222, 128, 0.1) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  border: 2px solid rgba(74, 222, 128, 0.3);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}

.feature-box:hover {
  border-color: #4ade80;
  transform: translateX(5px);
}

.star-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.6));
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.feature-box h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Description Box */
.description-box {
  background: rgba(15, 23, 42, 0.6);
  border-left: 4px solid #4ade80;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}

.check-icon {
  color: #4ade80;
  font-weight: bold;
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.description-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* Features List */
.features-list {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

.feature-item:hover {
  background: rgba(74, 222, 128, 0.1);
}

.arrow {
  color: #4ade80;
  font-weight: bold;
  font-size: 18px;
}

/* === Kunden-Test Portal – Kutulu Alan (ORTALI) === */
.portal-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  gap: 18px;
  margin-top: 28px;

  background: rgba(15, 23, 42, 0.88);
  border-radius: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.portal-label {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.portal-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
}

/* === İkon + Yazı grubu === */
.portal-btn {
  width: 70px;
  height: auto;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column; /* alt alta diz */
  align-items: center;
  justify-content: center;
  gap: 6px;

  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.portal-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Yazılar */
.portal-btn-text {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
}

/* Hover efekti */
.portal-btn:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

/* Mobil uyum */
@media (max-width: 575px) {
  .portal-access {
    max-width: 100%;
    padding: 18px 20px;
  }

  .portal-icons {
    gap: 18px;
  }
}




/* Sağ Kutu - Premium Card */
.product-box {
  background: rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.product-box:hover {
  transform: translateY(-5px);
}

/* Ürün Görseli - Modern Frame */
.product-image {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(74, 222, 128, 0.1),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.product-image img,
.product-image svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Fiyat Kutusu - Premium Red */
.price-box {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.9;
}

.price {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.price-period {
  font-size: 15px;
  opacity: 0.95;
  font-weight: 600;
}

/* Fatura Bilgisi - Elegant */
.billing-info {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 12px;
}

.billing-info p {
  margin: 6px 0;
  font-size: 14px;
}

.total-price {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 !important;
}

.vat-info {
  font-size: 12px;
  opacity: 0.7;
}

/* Hedef Grup - Badge Style */
.target-group {
  background: linear-gradient(
    135deg,
    rgba(74, 222, 128, 0.15) 0%,
    rgba(34, 197, 94, 0.1) 100%
  );
  border: 2px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.target-group p {
  margin: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .hero-section {
    padding-top: 140px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 35px;
  }

  .main-title {
    font-size: 32px;
  }

  .info-box {
    padding: 45px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-section {
    padding-top: 160px;
    background-attachment: fixed; /* Parallax effect */
    width: 100%;
    max-width: 100vw;
  }

  .info-box {
    padding: 50px;
  }

  .main-title {
    font-size: 36px;
  }

  .price {
    font-size: 56px;
  }
}

/* Geniş Ekran */
@media (min-width: 1600px) {
  .hero-section {
    padding-top: 220px ;
    width: 100%;
    max-width: 100vw;
  }

  .main-title {
    font-size: 42px;
  }
}

.services-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-top: 30px;
}

.services-img__items {
  width: 100%;
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}


/* Tablet görünümü */
@media (max-width: 991px) {
  .services-img {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services-img__items {
    max-width: 150px;
  }
}

/* Mobil görünüm */
@media (max-width: 575px) {
  .services-img {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .services-img__items {
    max-width: 120px;
  }
}

.support-box {
    text-align: left; /* default center'ı bozuyoruz */
}

.support-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.support-box-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-box-title {
    font-size: 18px;
    font-weight: 800;
}

.support-box-subtitle {
    font-size: 14px;
    font-weight: 600;
}

.support-box-subtitle a{
  color: white;
  font-size: 18px;
}

.support-box-subtitle a:hover{
  color: black;
}


/* Sağdaki resim */
.support-box-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

/* Mobilde alt alta gelsin */
@media (max-width: 480px) {
    .support-box-content {
        flex-direction: row;
        align-items: center;
    }

    /* İstersen tamamen alt alta yapabiliriz:
    .support-box-content {
        flex-direction: column;
        align-items: flex-start;
    }
    */
}

.fleet-price-box--red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    margin-bottom: 24px;
}

.fleet-price-box--grey {
    background: #40464C;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
}


/* ==========================================
   40 FUNKTIONEN SECTION - MODERN DESIGN
   ========================================== */

.features-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Container Override for Features Section */
.features-section .container {
  display: block !important;
  flex-direction: initial !important;
  align-items: initial !important;
  justify-content: initial !important;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(74, 222, 128, 0.3) 50%,
    transparent 100%
  );
}

/* Header Styles */
.features-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.features-main-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.features-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout */
.features-grid {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

/* Feature Category Card */
.feature-category {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-category:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Category Header */
.feature-category-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}

.feature-icon {
  font-size: 36px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.feature-category-info {
  flex: 1;
  min-width: 0;
}

.feature-category-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.feature-category-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Feature List - Always Visible */
.feature-list {
  padding: 0 24px 24px;
}

.feature-item-small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 10px;
  border-left: 3px solid #4ade80;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-item-small:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateX(5px);
}

.feature-item-small:last-child {
  margin-bottom: 0;
}

.feature-number {
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  min-width: 28px;
  display: inline-block;
}

/* Privacy Box */
.privacy-box {
  background: linear-gradient(135deg, rgba(51, 65, 85, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto 40px;
}

.privacy-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.privacy-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-radius: 14px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.privacy-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.privacy-content {
  display: grid;
  gap: 16px;
}

.privacy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy-item:hover {
  background: rgba(74, 222, 128, 0.1);
}

.privacy-check {
  color: #4ade80;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

/* CTA Box */
.features-cta {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
  position: relative;
  overflow: hidden;
}

.features-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.features-cta-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
}

.features-cta-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.features-cta-button {
  background: #ffffff;
  color: #16a34a;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.features-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: #f0fdf4;
}

.features-cta-button svg {
  transition: transform 0.3s ease;
}

.features-cta-button:hover svg {
  transform: translateX(5px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (min-width: 768px) {
  .features-section {
    padding: 100px 30px;
  }

  .features-main-title {
    font-size: 38px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-category-header {
    padding: 28px;
  }

  .privacy-box {
    padding: 40px;
  }

  .privacy-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-cta {
    padding: 56px 48px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .features-section {
    padding: 120px 40px;
  }

  .features-main-title {
    font-size: 42px;
  }

  .features-header {
    margin-bottom: 80px;
  }

  .features-grid {
    gap: 28px;
  }

  .feature-category-header {
    padding: 32px;
  }

  .privacy-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-cta-title {
    font-size: 32px;
  }
}

/* Wide Screen */
@media (min-width: 1600px) {
  .features-section {
    padding: 140px 60px;
  }

  .features-main-title {
    font-size: 48px;
  }
}

/* Mobile Fine-tuning */
@media (max-width: 575px) {
  .features-section {
    padding: 60px 16px;
  }

  .features-main-title {
    font-size: 26px;
  }

  .features-subtitle {
    font-size: 15px;
  }

  .feature-category-header {
    padding: 20px;
    gap: 12px;
  }

  .feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
  }

  .feature-category-title {
    font-size: 17px;
  }

  .feature-category-desc {
    font-size: 13px;
  }

  .feature-list {
    padding: 0 20px 20px;
  }

  .feature-item-small {
    font-size: 14px;
    padding: 10px 14px;
  }

  .privacy-box {
    padding: 24px;
  }

  .privacy-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .privacy-title {
    font-size: 19px;
  }

  .privacy-item {
    font-size: 14px;
  }

  .features-cta {
    padding: 32px 24px;
  }

  .features-cta-title {
    font-size: 22px;
  }

  .features-cta-text {
    font-size: 14px;
  }

  .features-cta-button {
    font-size: 15px;
    padding: 14px 28px;
  }
}

