/* =================================
   LANDING PAGE STYLES
   Public-facing landing page
   Modern SaaS design - joinup.az inspired
   ================================= */

/* Global: remove outline on buttons/links */
button, a, input, select, textarea { outline: none; }
button:focus, a:focus { outline: none; }

/* Landing-da footerdən aşağı boş ağ boşluq görünməsin —
   html/body-nin arxa fonunu footerlə eyni qaranlıq et */
html:has(body.landing-body), body.landing-body {
  background-color: #0a1628;
}
/* Fallback (köhnə brauzerlər üçün — :has() dəstəklənməsə) */
body.landing-body {
  background-color: #0a1628 !important;
}

/* --------------------------------
   1. PUBLIC NAVBAR
   -------------------------------- */
.public-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 76px;
  background: #05101f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.public-navbar.scrolled {
  background: #05101f;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4em;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.navbar-logo:hover {
  text-decoration: none;
  color: #ffffff;
}

.navbar-logo svg {
  color: #ffffff;
}

.navbar-logo img { max-height: 44px; width: auto; }

@media (max-width: 480px) {
  .navbar-logo img { max-height: 34px; }
  .navbar-logo { font-size: 1.1em; gap: 8px; }
}

@media (max-width: 360px) {
  .navbar-logo img { max-height: 28px; }
  .navbar-logo { font-size: 0.95em; }
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  font-size: 0.95em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9500, #ff3d00);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-auth .btn-login {
  padding: 6px 16px;
  font-size: 0.82em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-auth .btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  text-decoration: none;
}

.navbar-auth .btn-register {
  padding: 6px 16px;
  font-size: 0.82em;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ff9500, #ff3d00);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(255, 61, 0, 0.25);
}

.navbar-auth .btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 61, 0, 0.35);
  text-decoration: none;
  color: #ffffff;
}

/* Logged-in user chip (navbar) */
.navbar-user-chip,
.mobile-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  max-width: 180px;
}
.navbar-user-chip:hover,
.mobile-user-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
}
.navbar-user-chip-avatar,
.mobile-user-chip-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9500, #ff3d00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82em;
  color: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
}
.navbar-user-chip-name,
.mobile-user-chip-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

/* Hamburger Toggle (modern — asimmetrik, incə xətlər) */
.navbar-toggle {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.navbar-toggle:active {
  transform: scale(0.95);
}

.navbar-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.25s ease, transform 0.25s ease;
}
.navbar-toggle span:nth-child(1) { width: 20px; }
.navbar-toggle span:nth-child(2) { width: 14px; }
.navbar-toggle span:nth-child(3) { width: 20px; }
.navbar-toggle:hover span:nth-child(2) { width: 20px; }

/* Mobile Dropdown Menu */
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.navbar-mobile-menu.active {
  display: flex;
}

.navbar-mobile-menu a {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
}

.navbar-mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-mobile-actions .btn-login,
.navbar-mobile-actions .btn-register {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Mobile menu — dil seçimi (tünd fon üzərində açıq rəng) */
.navbar-mobile-menu .i18n-lang-inline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  width: 100%;
  justify-content: center;
}
.navbar-mobile-menu .i18n-lang-btn {
  color: #ffffff;
  opacity: 0.85;
  flex: 1;
}
.navbar-mobile-menu .i18n-lang-btn:hover {
  opacity: 1;
  color: #ffffff;
}
.navbar-mobile-menu .i18n-lang-btn.active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  opacity: 1;
}

/* --------------------------------
   2. HERO SECTION
   -------------------------------- */
.landing-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 60px 60px;
  background: linear-gradient(160deg, #0a1628 0%, #0d2847 30%, #1155a3 70%, #1976d2 100%);
  color: #ffffff;
  overflow: hidden;
}

.landing-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('../Assets/hero-bg.jpg') center/cover no-repeat;
  background-image: image-set(url('../Assets/hero-bg.webp') type('image/webp'), url('../Assets/hero-bg.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('../Assets/hero-bg.webp') type('image/webp'), url('../Assets/hero-bg.jpg') type('image/jpeg'));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.5) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating animated shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, #ff6b35, transparent 70%);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -10%;
  right: 5%;
  background: radial-gradient(circle, #00b4d8, transparent 70%);
  animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 30%;
  background: radial-gradient(circle, #ff3d00, transparent 70%);
  animation: heroFloat 6s ease-in-out infinite 2s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

/* Grid layout: left text, right cards */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  position: relative;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.85em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-badge svg {
  color: #ff9500;
}

.hero-title {
  font-size: 3.2em;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -1px;
  color: #ffffff;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-highlight {
  background: linear-gradient(135deg, #ff9500, #ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 0 36px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 1em;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #ff3d00);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 61, 0, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 61, 0, 0.5);
  text-decoration: none;
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 1em;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: #fff;
  transform: translateY(-3px);
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.hero-stat svg {
  color: rgba(255, 255, 255, 0.35);
}

/* Right side: service cards */
.hero-cards {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: heroCardsIn 0.8s ease 0.3s both;
}

@keyframes heroCardsIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  transition: all 0.4s ease;
  cursor: default;
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-service-card:nth-child(1) { animation-delay: 0s; }
.hero-service-card:nth-child(2) { animation-delay: 1.5s; }
.hero-service-card:nth-child(3) { animation-delay: 0.8s; }
.hero-service-card:nth-child(4) { animation-delay: 2.2s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-service-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-service-card svg {
  opacity: 0.85;
}

/* --------------------------------
   3. SHARED SECTION UTILITIES
   -------------------------------- */
.section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05em;
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --------------------------------
   4. FEATURES SECTION
   -------------------------------- */
.landing-features {
  padding: 100px 40px;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #3b82f6;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #3b82f6;
  color: #fff;
  transform: scale(1.05);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.feature-title {
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.93em;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.feature-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.92em;
  font-weight: 600;
  color: #0984e3;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.feature-card:hover .feature-link {
  color: #6c5ce7;
  transform: translateX(4px);
}

/* --------------------------------
   5. STATS SECTION
   -------------------------------- */
.landing-stats {
  padding: 80px 40px;
  background: url('../Assets/stats-parallax.jpg') center/cover no-repeat fixed;
  background-image: image-set(url('../Assets/stats-parallax.webp') type('image/webp'), url('../Assets/stats-parallax.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('../Assets/stats-parallax.webp') type('image/webp'), url('../Assets/stats-parallax.jpg') type('image/jpeg'));
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.landing-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.7);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 24px 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* --------------------------------
   6. PRICING SECTION
   -------------------------------- */
.landing-pricing {
  padding: 100px 40px;
  background: #f8fafc;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  background: #ffffff;
  border-radius: 50px;
  border: 2px solid #e9ecef;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-tab {
  flex: 1;
  padding: 14px 24px;
  font-size: 0.95em;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  border-radius: 50px;
  margin: 3px;
  white-space: nowrap; /* "Pro SMS" / "Form/Tədbir" 2 sətrə qırılmasın */
}

.pricing-tab.active {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.pricing-tab:hover:not(.active) {
  background: rgba(25, 118, 210, 0.06);
  color: #1976d2;
}

.pricing-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}

.pricing-tab-content.active {
  display: block;
  animation: tabFadeIn 0.35s ease forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form/Tedbir Calculator */
.ft-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.ft-calc-field label {
  display: block;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.ft-calc-stepper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.ft-calc-stepper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ft-calc-stepper button {
  width: 100%;
  height: 28px;
  border: none;
  background: #f8fafc;
  font-size: 1em;
  font-weight: 700;
  color: #3b82f6;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-calc-stepper button:hover {
  background: rgba(59, 130, 246, 0.1);
}

.ft-calc-stepper input {
  width: 100%;
  text-align: center;
  border: none;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  outline: none;
  font-size: 1.1em;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--font-family);
  -moz-appearance: textfield;
  padding: 6px 0;
}

.ft-calc-stepper input::-webkit-inner-spin-button,
.ft-calc-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ft-calc-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  font-size: 0.85em;
  font-family: var(--font-family);
  color: var(--text-color);
  background: #ffffff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  height: 42px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.ft-calc-field select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.ft-calc-hint {
  display: none;
  margin-top: 8px;
  font-size: 0.85em;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
}

/* SMS Calculator */
.pricing-calculator {
  max-width: 560px;
  margin: 0 auto 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #1976d2;
  box-shadow: 0 8px 40px rgba(25, 118, 210, 0.12);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-calculator::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.calc-header h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.calc-header p {
  font-size: 0.92em;
  color: var(--text-light);
  margin-bottom: 28px;
}

.calc-slider-wrap {
  margin-bottom: 28px;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #3b82f6;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #1976d2;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.4);
}

.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #1976d2;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  cursor: pointer;
}

.calc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 2px;
}

.calc-ticks span {
  font-size: 0.78em;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.calc-ticks span.active {
  color: #1976d2;
  font-weight: 700;
  background: rgba(25, 118, 210, 0.08);
}

.calc-ticks span:hover {
  color: #1976d2;
}

.calc-result {
  background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(25, 118, 210, 0.1);
}

.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.calc-sms-count {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-color);
}

.calc-sms-count span {
  font-size: 1.4em;
  font-weight: 700;
  color: #0a1628;
}

.calc-total-price {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-color);
}

.calc-total-price span {
  font-size: 1.8em;
  font-weight: 700;
  color: #0a1628;
}

.calc-per-sms {
  font-size: 0.88em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.calc-per-sms span {
  font-weight: 700;
  color: #1976d2;
}

.calc-limits {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 8px;
}

.calc-saving {
  display: none;
  font-size: 0.85em;
  font-weight: 600;
  color: #059669;
  background: #d1fae5;
  padding: 4px 12px;
  border-radius: 20px;
}

.calc-cta {
  margin-top: 4px;
  display: inline-block;
  width: 100%;
  background: #3b82f6;
  color: #ffffff;
  border-color: transparent;
  border-radius: 50px;
}

.calc-cta:hover {
  background: linear-gradient(135deg, #0d2847, #1565c0);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
}

/* Bonus bloku — təmiz, modern, neytral ton */
.pricing-gifts {
  margin: 14px 18px 18px;
  padding: 14px 16px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(99, 102, 241, 0.02));
  border: 1px solid rgba(99, 102, 241, 0.18);
  position: relative;
}
.pricing-gifts::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.pricing-gifts-title {
  font-size: 0.7em;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1;
}
.pricing-gifts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-gifts li {
  font-size: 0.88em;
  font-weight: 500;
  color: #334155;
  padding: 0 0 0 22px;
  position: relative;
  line-height: 1.45;
}
.pricing-gifts li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 10px;
  height: 2px;
  background: #6366f1;
  border-radius: 2px;
}
.pricing-gifts li::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 3px;
  width: 2px;
  height: 10px;
  background: #6366f1;
  border-radius: 2px;
}
/* Featured / premium kartda incə mavi vurğu */
.pricing-card.featured .pricing-gifts,
.pricing-card.premium .pricing-gifts {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.10), rgba(99, 102, 241, 0.03));
  border-color: rgba(99, 102, 241, 0.28);
}

/* Pricing Grid — responsive, centered, Stripe/Vercel-style */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
  align-items: stretch;
}

/* Mobile: kartları tək sütunda vertikal stack et — horizontal scroll yoxdur */
@media (max-width: 640px) {
  .pricing-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 16px;
    padding: 8px 0 16px;
    max-width: 100%;
    overflow: visible;
  }
  .pricing-grid .pricing-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }
}

/* Unlimited Plan */
.unlimited-plan {
  max-width: 800px;
  margin: 48px auto 0;
  background: #1e3a5f;
  border-radius: 20px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.3);
}

.unlimited-plan::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.2), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.unlimited-plan::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.unlimited-plan-badge {
  position: absolute;
  top: 0;
  right: 32px;
  background: linear-gradient(135deg, #ff9500, #ff3d00);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 61, 0, 0.3);
}

.unlimited-plan-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.unlimited-plan-info {
  flex: 1;
}

.unlimited-plan-info h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.unlimited-plan-info p {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}

.unlimited-plan-info .pricing-features {
  padding: 0;
  columns: 2;
  column-gap: 24px;
}

.unlimited-plan-info .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding-left: 24px;
  font-size: 0.88em;
}

.unlimited-plan-info .pricing-features li::before {
  border-color: #ff9500;
}

.unlimited-plan-price {
  text-align: center;
  flex-shrink: 0;
  min-width: 180px;
}

.unlimited-plan-price .pricing-price {
  color: #ffffff;
  font-size: 2.4em;
  margin-bottom: 16px;
}

.unlimited-plan-price .pricing-period {
  color: rgba(255, 255, 255, 0.5);
}

.unlimited-plan-btn {
  background: linear-gradient(135deg, #ff9500, #ff3d00);
  border-color: transparent;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255, 61, 0, 0.3);
}

.unlimited-plan-btn:hover {
  background: linear-gradient(135deg, #ffab33, #ff5722);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 61, 0, 0.4);
}

/* Pricing Cards */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #1976d2, #ff3d00);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 48px rgba(25, 118, 210, 0.22);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid #f0f2f5;
}

.pricing-plan-name {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-size: 2.6em;
  font-weight: 700;
  color: #0a1628;
  line-height: 1;
}

.pricing-period {
  font-size: 0.36em;
  font-weight: 400;
  color: var(--text-light);
  vertical-align: baseline;
}

.pricing-features {
  list-style: none;
  padding: 24px 28px;
  margin: 0;
  flex: 1;
}

.pricing-features li {
  padding: 8px 0 8px 28px;
  font-size: 0.93em;
  color: var(--text-color);
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid #f4f6f8;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 7px;
  border-left: 2px solid #1976d2;
  border-bottom: 2px solid #1976d2;
  transform: rotate(-45deg);
}

.pricing-footer {
  padding: 0 28px 28px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px 24px;
  font-size: 0.95em;
  font-weight: 600;
  text-align: center;
  color: #1976d2;
  background: transparent;
  border: 2px solid #1976d2;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-family);
}

.pricing-btn:hover {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.pricing-card.featured .pricing-btn {
  background: #3b82f6;
  color: #ffffff;
  border-color: transparent;
}

.pricing-card.featured .pricing-btn:hover {
  background: #2563eb;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

/* --------------------------------
   7. ABOUT SECTION
   -------------------------------- */
.landing-about {
  padding: 100px 40px;
  background: #ffffff;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.05em;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.trust-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.12);
  border-color: rgba(25, 118, 210, 0.15);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 1.2em;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
}

.trust-badge-text {
  font-size: 0.93em;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

/* --------------------------------
   8. CONTACT SECTION
   -------------------------------- */
.landing-contact {
  padding: 100px 40px;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(25, 118, 210, 0.1);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 14px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-title {
  font-size: 1em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 0.9em;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-card-value a {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-value a:hover {
  color: #0a1628;
  text-decoration: underline;
}

.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 36px;
}

.contact-form-wrap h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 24px;
}

.contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-wrap .form-group {
  margin-bottom: 20px;
}

.contact-form-wrap label {
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.93em;
  font-family: var(--font-family);
  color: var(--text-color);
  background: #f8fafc;
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
  background: #ffffff;
}

.contact-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-wrap .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  font-size: 1em;
  font-weight: 600;
  color: #ffffff;
  background: #3b82f6;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.25);
}

.contact-form-wrap .btn-submit:hover {
  background: linear-gradient(135deg, #0d2847, #1565c0);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(25, 118, 210, 0.35);
}

/* reCAPTCHA */
.recaptcha-group {
  margin-bottom: 20px;
}

.recaptcha-group .g-recaptcha {
  display: flex;
  justify-content: center;
}

.recaptcha-error {
  color: #ef4444;
  font-size: 0.82em;
  margin-top: 6px;
  text-align: center;
  min-height: 1.2em;
}

/* --------------------------------
   9. FOOTER
   -------------------------------- */
.landing-footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 40px 0;
  position: relative;
  overflow: hidden;
}

.landing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(25, 118, 210, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-size: 1.4em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.footer-logo:hover {
  text-decoration: none;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
  margin-top: 8px;
}

.footer-col-title {
  font-size: 0.95em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff9500, #ff3d00);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* --------------------------------
   10. ANIMATIONS
   -------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 {
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.fade-in-up-delay-2 {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-up-delay-3 {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

/* Scroll-triggered animation helper */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeInUp.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------
   11. RESPONSIVE - 1024px
   -------------------------------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-calculator {
    margin-left: 24px;
    margin-right: 24px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* --------------------------------
   12. RESPONSIVE - 768px
   -------------------------------- */
@media (max-width: 768px) {
  .public-navbar {
    padding: 0 20px;
    background: #05101f;
  }

  .navbar-links {
    display: none;
  }

  /* Mobil: navbar-auth-da yalnız "Giriş" görünür, hamburgerin solunda */
  .navbar-auth {
    gap: 8px;
    margin-left: auto;
    margin-right: 10px;
  }
  .navbar-auth > [data-i18n-selector],
  .navbar-auth .btn-register {
    display: none;
  }
  .navbar-auth .btn-login {
    padding: 5px 12px;
    font-size: 0.78em;
  }
  .navbar-auth .navbar-user-chip {
    font-size: 0.78em;
    max-width: 140px;
    padding: 3px 10px 3px 3px;
  }
  .navbar-auth .navbar-user-chip-avatar {
    width: 24px;
    height: 24px;
    font-size: 0.75em;
  }
  .navbar-auth .navbar-user-chip-name {
    max-width: 90px;
  }

  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 16px 20px;
    gap: 0;
  }

  .navbar-links.active li {
    width: 100%;
  }

  .navbar-links.active a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-links.active a::after {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-mobile-menu {
    top: 56px;
  }

  .landing-hero {
    padding: 80px 24px 40px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.2em;
  }

  .hero-subtitle {
    font-size: 1em;
  }

  .hero-cards {
    display: none;
  }

  /* Mobil hero fon: yandan yarımçıq şəkil əvəzinə — altda tam enli, qaranlıq overlay ilə */
  .landing-hero::after {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 45%;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat {
    font-size: 0.8em;
  }

  .section-title {
    font-size: 1.6em;
  }

  .landing-features,
  .landing-pricing,
  .landing-about,
  .landing-contact {
    padding: 60px 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .feature-card {
    padding: 22px 14px;
  }
  .feature-card h3 {
    font-size: 1em;
  }
  .feature-card p {
    font-size: 0.82em;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .pricing-calculator {
    padding: 28px 20px;
  }

  .ft-calc-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-tabs {
    max-width: 100%;
    border-radius: 12px;
  }

  .pricing-tab {
    border-radius: 10px;
    font-size: 0.88em;
    padding: 12px 16px;
  }

  .unlimited-plan {
    padding: 28px 24px;
  }

  .unlimited-plan-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .unlimited-plan-info .pricing-features {
    columns: 1;
  }

  .unlimited-plan-price {
    min-width: auto;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .contact-info-card {
    padding: 16px 8px;
  }
  .contact-card-title {
    font-size: 0.78em;
  }
  .contact-card-value,
  .contact-card-value a {
    font-size: 0.78em;
    word-break: break-word;
  }
  .contact-icon {
    width: 36px;
    height: 36px;
  }
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-badge {
    padding: 18px 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2em;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .landing-footer {
    padding: 40px 24px 0;
  }

  .footer-bottom {
    padding: 16px 0;
  }
}

/* --------------------------------
   13. RESPONSIVE - 480px
   -------------------------------- */
@media (max-width: 480px) {
  .public-navbar {
    padding: 0 16px;
    height: 56px;
  }

  .navbar-links.active {
    top: 56px;
  }

  .navbar-mobile-menu {
    top: 56px;
  }

  .landing-hero {
    min-height: auto;
    padding: 60px 16px 70px;
  }

  .hero-title {
    font-size: 1.6em;
  }

  .hero-subtitle {
    font-size: 0.93em;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
  }

  .landing-features,
  .landing-pricing,
  .landing-about,
  .landing-contact {
    padding: 48px 16px;
  }

  .section-title {
    font-size: 1.4em;
  }

  .section-subtitle {
    font-size: 0.93em;
    margin-bottom: 36px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trust-badge {
    padding: 14px 8px;
  }

  .landing-stats {
    padding: 48px 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.8em;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .landing-footer {
    padding: 32px 16px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .pricing-tabs {
    border-radius: 10px;
  }

  .pricing-tab {
    border-radius: 8px;
    font-size: 0.78em;
    padding: 10px 8px;
  }

  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    display: none;
  }

  .unlimited-plan {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .feature-card {
    padding: 20px 16px;
  }
}

/* --------------------------------
   14. RESPONSIVE - 360px (ultra-small phones)
   -------------------------------- */
@media (max-width: 360px) {
  .public-navbar { padding: 0 12px; }
  .landing-hero { padding: 56px 12px 60px; }
  .hero-title { font-size: 1.4em; }
  .hero-subtitle { font-size: 0.88em; }
  .section-title { font-size: 1.25em; }
  .section-subtitle { font-size: 0.85em; }

  .landing-features,
  .landing-pricing,
  .landing-about,
  .landing-contact,
  .landing-stats {
    padding: 40px 12px;
  }

  .feature-card { padding: 18px 14px; }
  .feature-card h3 { font-size: 1.05em; }

  .pricing-grid .pricing-card { flex: 0 0 240px; }
  .pricing-calculator { padding: 22px 14px; margin-left: 0; margin-right: 0; }

  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-number { font-size: 1.6em; }

  .contact-form-wrap { padding: 20px 14px; }
  .unlimited-plan { padding: 20px 14px; }
  .unlimited-plan-price .price-number { font-size: 1.8em; }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 11px 16px;
    font-size: 0.9em;
  }

  .navbar-brand { font-size: 1em; }
}

/* Safety: hero shapes should never cause horizontal scroll */
.landing-hero { overflow: hidden; }

