@charset "UTF-8";

:root {
  --primary: #4a7c8c;
  --primary-dark: #3d6876;
  --primary-light: rgba(74, 124, 140, 0.1);
  --dark: #2c3e50;
  --dark-grey: #4a5568;
  --grey: #718096;
  --grey-light: #f0f2f5;
  --white: #ffffff;
  --bg-page: #f8f9fb;
  --success: #5a9a6e;
  --warning: #c97b4a;
  --danger: #b85450;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow: 0 2px 12px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.07);
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font);
  --transition: 0.22s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }
*:focus { outline: none; box-shadow: 0 0 0 2px rgba(74, 124, 140, 0.35); }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--dark-grey);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, .heading-title { font-family: var(--font-heading); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition); }
h1, h2, h3, h4 { margin: 0; line-height: 1.3; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  height: 46px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-lg { height: 52px; padding: 0 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-outline-dark {
  color: var(--dark-grey);
  border-color: var(--dark-grey);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--dark-grey); color: var(--white); }
.btn-warning {
  background: var(--warning);
  color: var(--white);
  border-color: var(--warning);
}
.btn-warning:hover { background: #b86d3f; color: var(--white); }

.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
}
.top-left, .top-right { display: flex; align-items: center; gap: 20px; }
.top-bar a { color: rgba(255,255,255,.88); }
.top-bar a:hover { color: var(--white); }
.btn-login {
  padding: 4px 12px !important;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  height: 28px !important;
}

.header {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.04); }
body.menu-open { overflow: hidden; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.logo:hover .logo-text { color: var(--primary); }
.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.logo-slogan {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.35;
}
.logo-slogan-line1,
.logo-slogan-line2 { display: block; }
.logo:hover .logo-slogan { color: var(--dark-grey); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-grey);
  border-radius: 4px;
}
.nav-menu a:hover { color: var(--primary); }
.nav-cta { position: relative; margin-left: 8px; padding-left: 16px; border-left: 1px solid #e0e4e8; }
.nav-cta .btn { height: 38px; padding: 0 16px; font-size: 14px; color: var(--white) !important; font-weight: 700; }
.nav-auth { margin-left: 8px; }
.nav-auth .btn-auth {
  height: 38px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-grey);
  background: transparent;
  border: 1px solid #e0e4e8;
  border-radius: var(--radius);
}
.nav-auth .btn-auth:hover { color: var(--primary); border-color: var(--primary); background: rgba(0,178,227,.06); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-grey);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  background: linear-gradient(165deg, #f8fafb 0%, #f0f4f8 35%, #fff 100%);
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: var(--primary);
  top: -120px;
  right: -100px;
}
.hero-blob-2 {
  width: 340px;
  height: 340px;
  background: var(--primary);
  bottom: -80px;
  left: -80px;
  opacity: 0.14;
}
.hero-blob-3 {
  width: 260px;
  height: 260px;
  background: rgba(74, 124, 140, 0.25);
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 40%, rgba(74, 124, 140, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(74, 124, 140, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 560px; }
.badge-turkey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 10px 20px 10px 18px;
  margin-bottom: 20px;
  background: var(--primary-light);
  border: none;
  border-radius: 100px;
  color: var(--dark-grey);
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #00b8b8;
  border-radius: 50%;
  animation: badge-dot-blink 1.5s ease-in-out infinite;
}
@keyframes badge-dot-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 184, 184, 0.5); }
  50% { opacity: 0.45; box-shadow: 0 0 0 4px rgba(0, 184, 184, 0); }
}
.badge-turkey strong {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.08em;
  letter-spacing: 0.01em;
}
.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.text-gradient {
  color: var(--primary-dark);
}
.hero-desc {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 26px;
  line-height: 1.65;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 32px;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.hero-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-feature-text {
  flex: 1;
  min-width: 0;
}
.hero-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-heading);
  margin: 0 0 4px;
  line-height: 1.3;
}
.hero-feature-desc {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-person-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.hero-person-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 56px rgba(0,0,0,.14);
}
.hero-mockup {
  min-height: 260px;
  width: 100%;
  min-width: 280px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: 36px 1fr;
  background: var(--grey-light);
}
.mockup-bar {
  grid-column: 1 / -1;
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.mockup-sidebar {
  background: rgba(255,255,255,.6);
}
.mockup-content {
  padding: 18px 20px;
  background: var(--white);
}
.mockup-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  min-width: 0;
}
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.mockup-dot.read {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.mockup-addr {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-grey);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.mockup-meta {
  font-size: 10px;
  color: var(--grey);
  flex-shrink: 0;
}
.mockup-row {
  height: 8px;
  background: rgba(74, 124, 140, 0.15);
  border-radius: 4px;
}
.mockup-row.w60 { width: 60%; }
.mockup-row.w80 { width: 80%; }
.mockup-row.w40 { width: 40%; }
.mockup-row.w100 { width: 100%; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,.05);
  position: relative;
  z-index: 1;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.hero-stat span { font-size: 14px; color: var(--grey); }

.section { padding: 72px 0; }
.heading { text-align: center; margin-bottom: 48px; }
.heading-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}
.heading-label.label-pill,
.steps-label.label-pill,
.contact-eyebrow.label-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.contact-eyebrow.label-pill { display: inline-block; margin-bottom: 10px; }
.heading-title { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.02em; }
.heading-desc { font-size: 17px; color: var(--grey); margin: 0; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.bg-alt { background: var(--white); }

.section-pricing { background: var(--bg-page); }
.product-type-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(0,0,0,.04);
  padding: 4px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.product-type-btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  background: transparent;
  color: var(--grey);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.product-type-btn:hover { color: var(--dark-grey); }
.product-type-btn.active {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}
.pricing-content.hidden { display: none !important; }

.esnek-desc {
  text-align: center;
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.esnek-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e6eb;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.esnek-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.esnek-table th,
.esnek-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #eef0f3;
  vertical-align: middle;
}
.esnek-table thead th {
  background: var(--dark);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  padding: 18px 24px;
  letter-spacing: 0.02em;
}
.esnek-table thead th:first-child {
  border-radius: 12px 0 0 0;
}
.esnek-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.esnek-th-paket { text-align: left; }
.esnek-th-center { text-align: center; }
.esnek-th-fiyat { text-align: right; }
.esnek-th-action {
  text-align: center;
  width: 160px;
  min-width: 160px;
}
.esnek-cell-center { text-align: center; }
.esnek-table tbody tr {
  transition: background-color var(--transition);
}
.esnek-table tbody tr:hover {
  background: #f4f6f9;
}
.esnek-table tbody tr:last-child td {
  border-bottom: none;
}
.esnek-table tbody tr.esnek-row-featured {
  background: var(--primary-light);
}
.esnek-table tbody tr.esnek-row-featured td:first-child {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}
.esnek-table tbody tr.esnek-row-featured:hover {
  background: rgba(74, 124, 140, 0.12);
}
.esnek-row-featured td {
  position: relative;
}
.esnek-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  margin-right: 10px;
  vertical-align: middle;
}
.esnek-paket-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-grey);
  vertical-align: middle;
}
.esnek-row-featured .esnek-paket-name {
  color: var(--primary-dark);
}
.esnek-price-cell {
  font-weight: 600;
  text-align: right;
}
.esnek-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-grey);
}
.esnek-price-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  margin-left: 2px;
}
.esnek-row-featured .esnek-price {
  color: var(--primary-dark);
}
.esnek-action-cell {
  text-align: center;
  width: 160px;
  min-width: 160px;
}
.esnek-btn {
  white-space: nowrap;
  min-width: 130px;
  padding: 0 20px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  gap: 8px;
  transition: box-shadow var(--transition), background-color var(--transition), transform var(--transition);
}
.esnek-btn:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.esnek-btn:active {
  transform: translateY(0);
}
.esnek-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.esnek-btn-icon svg {
  display: block;
}
.esnek-btn-text {
  letter-spacing: 0.01em;
}
.esnek-row-ozel td {
  background: rgba(74, 124, 140, 0.08);
  font-style: normal;
  font-weight: 600;
  color: var(--primary-dark);
}
.esnek-row-ozel .esnek-cell-center,
.esnek-row-ozel .esnek-price-cell {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}
.esnek-price-custom {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}
.esnek-btn-contact {
  min-width: 140px;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(74, 124, 140, 0.4);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.esnek-btn-contact:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  border-color: var(--primary-dark) !important;
  box-shadow: 0 6px 20px rgba(74, 124, 140, 0.5);
  transform: translateY(-2px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}
.modal-overlay.is-open .modal-box {
  transform: scale(1);
}
.modal-overlay:not(.is-open) .modal-box {
  transform: scale(0.96);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e8ecf0;
}
.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  font-family: var(--font-heading);
}
.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--grey);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.06);
}
.modal-body {
  padding: 24px;
}
.modal-desc {
  font-size: 15px;
  color: var(--grey);
  margin: 0 0 20px;
  line-height: 1.5;
}
.modal-form .contact-field {
  margin-bottom: 16px;
}
.modal-form .contact-submit {
  width: 100%;
  margin-top: 8px;
}
.contact-form-status {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  min-height: 20px;
}
.contact-form-status--success {
  background: rgba(90, 154, 110, 0.12);
  color: var(--success);
}
.contact-form-status--error {
  background: rgba(184, 84, 80, 0.1);
  color: var(--danger);
}

.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,.1);
}
.pricing-card-featured {
  border: 1px solid rgba(74, 124, 140, 0.35);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pricing-card-featured:hover {
  border-color: rgba(74, 124, 140, 0.5);
  box-shadow: var(--shadow-md);
}
.pricing-subtitle {
  font-size: 12px;
  color: var(--grey);
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
  margin: 0;
}
.badge-recommended {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.pricing-card-featured .badge-recommended {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}
.pricing-card-featured .badge-recommended:hover {
  transform: translate(-50%, -50%) translateY(-1px);
}
.pricing-card-featured {
  padding-top: 22px;
}
.badge-recommended:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.pricing-price {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.price-old {
  display: block;
  font-size: 13px;
  color: var(--grey);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-current { display: flex; align-items: flex-start; flex-wrap: wrap; }
.pricing-price .currency { font-size: 22px; font-weight: 600; margin-top: 2px; }
.pricing-price .amount { font-size: 36px; font-weight: 800; line-height: 1; font-family: var(--font-heading); }
.pricing-price .cents { font-size: 22px; font-weight: 600; }
.pricing-price small { display: block; font-size: 12px; color: var(--grey); margin-top: 6px; }
.pricing-features {
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--dark-grey);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: var(--grey);
  border-radius: 50%;
  opacity: 0.7;
}
.pricing-card-featured .pricing-features li::before {
  background: var(--primary);
  opacity: 1;
}

.pricing-grid-epostan {
  align-items: stretch;
}
.smail-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 34px;
  padding: 6px;
  max-width: 520px;
  border: 1px solid #dfe8eb;
  border-radius: 14px;
  background: #f5f8f9;
}
.smail-pricing-tab {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  font: 700 14px/1.25 var(--font-heading);
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.smail-pricing-tab span {
  display: block;
  margin-top: 4px;
  color: inherit;
  font: 500 11px/1.2 var(--font-body);
  opacity: .8;
}
.smail-pricing-tab:hover { color: var(--primary-dark); }
.smail-pricing-tab.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 5px 14px rgba(74, 124, 140, .22);
}
.smail-pricing-grid.is-high .smail-plan-card:nth-child(5) { grid-column: auto; }
.smail-plan-card[hidden] { display: none !important; }
.pricing-card-epostan {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.pricing-card-epostan .pricing-header {
  margin-bottom: 14px;
}
.pricing-card-epostan .pricing-icon {
  display: inline-flex;
  color: var(--grey);
  opacity: 0.85;
}
.pricing-card-epostan .pricing-icon svg {
  width: 22px;
  height: 22px;
}
.pricing-price-epostan {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.pricing-price-row-epostan {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.pricing-price-row-epostan:last-of-type {
  margin-bottom: 14px;
}
.pricing-badge-discount-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 6px;
  background: #e3f2fd;
}
.pricing-badge-percent {
  font-size: 15px;
  font-weight: 700;
  color: #1565c0;
  line-height: 1.15;
}
.pricing-badge-label {
  font-size: 9px;
  font-weight: 600;
  color: #1565c0;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}
.pricing-price-cell {
  flex: 1;
  padding: 8px 12px;
  background: #fafafa;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14px;
}
.pricing-price-cell .price-old {
  text-decoration: line-through;
  color: #9e9e9e;
  font-weight: 500;
}
.pricing-price-cell .price-current {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
  font-family: var(--font-heading);
}
.pricing-price-cell .price-period {
  font-size: 13px;
  font-weight: 500;
  color: #757575;
}
.pricing-cta-epostan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.pricing-cta-epostan .btn-arrow {
  font-size: 16px;
  opacity: 0.9;
}
.pricing-renewal {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-renewal-icon {
  font-style: normal;
  font-size: 14px;
  color: var(--primary);
}
.pricing-feature-group {
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px solid #e8e8e8;
}
.pricing-feature-group:first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}
.pricing-feature-group:last-child {
  margin-bottom: 0;
}
.pricing-feature-group-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px 0;
  padding: 8px 14px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pricing-card-epostan .pricing-features {
  margin-bottom: 0;
}
.pricing-card-epostan .pricing-features li {
  padding: 5px 0;
  padding-left: 22px;
  font-size: 14px;
  color: var(--dark-grey);
  line-height: 1.4;
}
.pricing-card-epostan .pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  opacity: 1;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.badge-populer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 10px 19px;
  border: 2px solid var(--white);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(74, 124, 140, 0.42), 0 0 0 4px var(--primary-light);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card-featured:hover .badge-populer {
  transform: translate(-50%, -55%);
  box-shadow: 0 8px 22px rgba(74, 124, 140, 0.52), 0 0 0 6px var(--primary-light);
}
.badge-populer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.badge-populer-icon svg {
  width: 14px;
  height: 14px;
}
.pricing-card-epostan.pricing-card-featured {
  padding-top: 32px;
  border-color: rgba(21, 101, 192, 0.35);
}
.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--dark-grey);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-compare { padding: 80px 0; }

.compare-heading {
  text-align: center;
  margin-bottom: 40px;
}
.compare-heading-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.compare-heading-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  line-height: 1.2;
}
.compare-heading-title-accent {
  color: var(--primary);
}
.compare-heading-desc {
  font-size: 16px;
  color: var(--dark-grey);
  margin: 0 auto 20px;
  max-width: 560px;
  line-height: 1.55;
}
.compare-heading-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
  border-radius: 2px;
}

.compare-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  background: #f0f2f5;
  padding: 5px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.compare-tab {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark-grey);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.compare-tab:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.compare-tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(74, 124, 140, 0.35);
}
.compare-tab.active:hover {
  background: var(--primary-dark);
  color: #fff;
}
.compare-panel { display: none; }
.compare-panel.active { display: block; }
.compare-diger-desc {
  text-align: center;
  color: var(--dark-grey);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 28px;
}
.compare-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaecef;
  flex-wrap: wrap;
}
.compare-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  background: #f4f5f6;
  color: var(--dark-grey);
  border: 1px solid #e5e7e9;
}
.compare-legend-item:first-child {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}
.compare-legend .compare-icon {
  width: 26px;
  height: 26px;
}
.compare-legend .compare-icon-yes {
  background: var(--primary);
  color: #fff;
}
.compare-legend .compare-icon-yes::after { font-size: 14px; }
.compare-legend .compare-icon-no {
  background: #d0d3d6;
  color: #6b7280;
}
.compare-legend .compare-icon-no::after { font-size: 14px; font-weight: 700; }
.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.compare-icon-yes {
  background: var(--primary-light);
  color: var(--primary);
}
.compare-icon-yes::after {
  content: "✓";
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.compare-icon-no {
  background: #f0f0f0;
  color: var(--grey);
}
.compare-icon-no::after {
  content: "—";
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e8ec;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  background: var(--white);
}
.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #eaecef;
}
.compare-table tbody tr:hover td {
  background: #fafbfc;
}
.compare-table tbody tr:hover .compare-feature-col {
  background: #f2f4f6;
}
.compare-table thead th {
  background: #f6f8fa;
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid #e5e8ec;
}
.compare-table thead th:not(.compare-feature-col) {
  min-width: 110px;
}
.compare-feature-col {
  text-align: left !important;
  background: #f8f9fa;
  color: var(--dark-grey);
  font-weight: 600;
  min-width: 180px;
  position: sticky;
  left: 0;
  z-index: 1;
  font-size: 14px;
}
.compare-table thead .compare-feature-col {
  background: #f0f2f5;
  color: var(--dark);
  border-radius: 12px 0 0 0;
}
.compare-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.compare-table tbody tr:nth-child(even) td {
  background: #fcfcfd;
}
.compare-table tbody tr:nth-child(even) .compare-feature-col {
  background: #f6f7f9;
}
.compare-table tbody tr:hover td,
.compare-table tbody tr:nth-child(even):hover td {
  background: #fafbfc;
}
.compare-table tbody tr:hover .compare-feature-col,
.compare-table tbody tr:nth-child(even):hover .compare-feature-col {
  background: #f0f2f5;
}
.compare-table tbody .compare-feature-col {
  border-right: 1px solid #eaecef;
}
.compare-col-highlight {
  background: var(--primary-light) !important;
  color: var(--primary-dark);
  font-weight: 600;
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
}
.compare-table tbody tr:nth-child(even) .compare-col-highlight {
  background: rgba(74, 124, 140, 0.06) !important;
}
.compare-table tbody tr:hover .compare-col-highlight {
  background: rgba(74, 124, 140, 0.1) !important;
}
.compare-table thead .compare-col-highlight {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: var(--white);
  position: relative;
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-top: 3px solid var(--primary);
}
.compare-table tbody tr:last-child .compare-col-highlight {
  border-bottom: 3px solid var(--primary);
}
.compare-plan-name {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
}
.compare-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.95);
  color: var(--primary-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  white-space: nowrap;
}
.compare-value {
  font-weight: 600;
  color: var(--dark-grey);
}
.compare-value-storage {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}
.compare-col-highlight .compare-value {
  color: var(--primary-dark);
}
.compare-col-highlight .compare-value-storage {
  color: var(--primary-dark);
  font-size: 1.2rem;
}
.compare-col-us {
  background: var(--primary-light) !important;
  font-weight: 600;
  color: var(--primary-dark);
}
.compare-table thead .compare-col-us {
  background: var(--primary) !important;
  color: var(--white);
}
.compare-table tbody tr:hover td:not(.compare-feature-col) {
  background: rgba(74, 124, 140, 0.06);
}
.compare-table tbody tr:hover .compare-col-highlight {
  background: rgba(74, 124, 140, 0.12);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.section-features {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #e8eef3 0%, #dce4ec 35%, #d0dce6 100%);
}
.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.features-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(232,238,243,0.85) 0%, rgba(220,228,236,0.9) 50%, rgba(74,124,140,0.12) 100%);
}
.features-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.85;
}
.features-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(74, 124, 140, 0.2);
  top: -120px;
  right: -100px;
}
.features-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(74, 124, 140, 0.15);
  bottom: -100px;
  left: -80px;
}
.features-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(74, 124, 140, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.section-features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: rgba(74, 124, 140, 0.2);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--dark); font-family: var(--font-heading); }
.feature-card p { font-size: 14px; color: var(--grey); margin: 0; line-height: 1.6; }

.section-why {
  position: relative;
  padding: 72px 0;
  background: var(--white);
}
.why-bg {
  display: none;
}
.why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.why-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.why-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}
.why-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.why-tab-btn {
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-grey);
  background: var(--grey-light);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.why-tab-btn:hover {
  color: var(--primary-dark);
  background: var(--primary-light);
}
.why-tab-btn.active {
  color: var(--white);
  background: var(--primary);
}
.why-content {
  position: relative;
  margin-bottom: 40px;
}
.why-panel {
  display: none;
  animation: whyPanelFade 0.3s ease;
}
.why-panel.active {
  display: block !important;
}
@keyframes whyPanelFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.why-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0,0,0,.05);
  background: var(--bg-page);
}
.why-panel-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-light);
  aspect-ratio: 14 / 9;
}
.why-panel-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.why-panel-body {
  min-width: 0;
}
.why-panel-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-heading);
  margin: 0 0 14px;
  line-height: 1.35;
}
.why-panel-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}
.why-cta-wrap {
  text-align: center;
  margin: 0;
}
.why-cta {
  min-width: 200px;
}

.section-steps {
  position: relative;
  padding: 72px 0;
  background: var(--bg-page);
  color: var(--dark-grey);
}
.steps-bg {
  display: none;
}
.steps-header {
  text-align: center;
  margin-bottom: 44px;
}
.steps-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
}
.steps-title {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.steps-desc {
  font-size: 16px;
  color: var(--grey);
  margin: 0;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}
.step-box {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step-box:hover {
  border-color: rgba(74, 124, 140, 0.25);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-heading);
  border-radius: 12px;
  margin-bottom: 18px;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-heading);
  margin: 0 0 8px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: var(--grey);
}
.step-connector {
  width: 24px;
  min-width: 24px;
  align-self: center;
  height: 2px;
  background: rgba(74, 124, 140, 0.25);
  position: relative;
  flex-shrink: 0;
}
.step-connector-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2px 0 0 -2px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.7;
}
.steps-cta {
  text-align: center;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.05);
}
.steps-cta-text {
  font-size: 16px;
  color: var(--dark-grey);
  margin: 0 0 18px;
}
.steps-cta-btn {
  min-width: 200px;
}
.steps-cta-btn:hover {
  transform: none;
}
.text-center { text-align: center; }

.section-faq { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: rgba(74,124,140,.2); }
.faq-item.open { border-color: rgba(74,124,140,.35); box-shadow: 0 0 0 1px var(--primary-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-grey);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  transition: transform 0.25s ease, color var(--transition);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease;
}
.faq-icon::before { width: 14px; height: 2px; margin: -1px 0 0 -7px; }
.faq-icon::after { width: 2px; height: 14px; margin: -7px 0 0 -1px; }
.faq-item.open .faq-icon { color: var(--primary); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a-inner p,
.faq-a-inner h3 {
  margin: 0 0 12px;
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey);
}
.faq-a-inner p:last-child,
.faq-a-inner h3:last-child { margin-bottom: 0; }
.faq-a-inner .faq-a-content { padding-bottom: 20px; }
.faq-a-inner .faq-a-content > *:first-child { margin-top: 0; padding-top: 4px; }
.faq-a-inner h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-grey);
  margin-top: 14px;
  margin-bottom: 6px;
}
.faq-a-inner h3:first-child { margin-top: 0; }
.faq-a-inner h3:not(:first-child) {
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 16px;
  margin-top: 18px;
}
.faq-a-inner strong { color: var(--dark-grey); font-weight: 600; }

.section-clients { padding: 50px 0; overflow: hidden; }
.clients-marquee { overflow: hidden; }
.clients-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
}
.clients-track span {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--grey);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-contact {
  background: var(--white);
  color: var(--dark-grey);
  padding: 72px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 0 0 10px;
}
.contact-title {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 0 14px;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.contact-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey);
  margin: 0 0 28px;
  max-width: 420px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-page);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-channel:hover {
  border-color: rgba(74, 124, 140, 0.2);
}
.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-channel-icon svg { stroke: var(--primary-dark); }
.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-channel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
}
.contact-channel-value {
  font-size: 14px;
  color: var(--dark-grey);
}
.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.contact-phone-btn:hover {
  color: var(--white);
  background: var(--primary-dark);
}
.contact-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
}
.contact-phone-icon svg { stroke: var(--white); }
.contact-phone-number { letter-spacing: 0.02em; }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--white);
  color: var(--dark-grey);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.contact-email-btn:hover {
  color: var(--primary-dark);
  border-color: rgba(74, 124, 140, 0.3);
  background: var(--primary-light);
}
.contact-email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--grey-light);
  border-radius: 10px;
}
.contact-email-icon svg { stroke: var(--primary); }
.contact-email-address { letter-spacing: 0.02em; }

.contact-form-card {
  background: var(--bg-page);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark);
  margin: 0 0 8px;
}
.contact-form-desc {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-grey);
}
.contact-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  border: 1px solid #e2e6ea;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark-grey);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-input::placeholder { color: var(--grey); }
.contact-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 140, 0.15);
}
.contact-textarea { min-height: 100px; resize: vertical; }
.contact-submit { margin-top: 8px; }

.footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 40px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 40px 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-contact-block {
  min-width: 0;
}
.footer-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 6px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-logo:hover {
  color: rgba(255,255,255,.9);
}
.footer-cta {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin: 0 0 16px;
  line-height: 1.45;
}
.footer-cta strong {
  color: var(--white);
  font-weight: 700;
}
.footer-contact-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.footer-contact-list li {
  margin-bottom: 0;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.footer-contact-item:hover {
  color: var(--white);
}
.footer-contact-item:last-of-type {
  border-bottom: none;
}
.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
}
.footer-contact-icon svg {
  stroke: rgba(255,255,255,.85);
}
.footer-contact-text {
  flex: 1;
  min-width: 0;
}
.footer-contact-arrow {
  flex-shrink: 0;
  font-size: 12px;
  opacity: 0.5;
}
.footer-address-block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
}
.footer-address-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-address-icon svg {
  stroke: rgba(255,255,255,.5);
}
.footer-address-text {
  min-width: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
  padding-top: 0;
}
.footer-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.95);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0 24px;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: rgba(255,255,255,.9);
}

.legal-page .legal-main { padding: 40px 0 64px; }
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--grey);
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 100px;
  padding: 20px 0;
  border-right: 1px solid rgba(0,0,0,.08);
}
.legal-sidebar-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark-grey);
  margin: 0 0 14px;
}
.legal-sidebar-title:first-of-type {
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 0.08em;
}
.legal-sidebar-title:nth-of-type(2) {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.12);
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 14px;
}
.legal-sidebar ul { list-style: none; margin: 0; padding: 0; }
.legal-sidebar li { margin-bottom: 6px; }
.legal-sidebar a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  color: var(--dark-grey);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.legal-sidebar a:hover { color: var(--primary); }
.legal-sidebar a.active { font-weight: 600; color: var(--primary); }
.legal-content { min-width: 0; }
.legal-content h1 {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.legal-meta {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
  font-family: var(--font-heading);
}
.legal-content h3 { font-size: 16px; font-weight: 600; margin: 20px 0 8px; color: var(--dark-grey); }
.legal-content p { margin: 0 0 14px; line-height: 1.65; color: var(--dark-grey); }
.legal-content ul { margin: 0 0 14px; padding-left: 1.4em; }
.legal-content li { margin-bottom: 6px; line-height: 1.55; }
.legal-content strong { color: var(--dark); }
@media (max-width: 993px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: 24px; margin-bottom: 8px; }
}
@media (max-width: 768px) {
  .legal-content h1 { font-size: 24px; }
}

.page-about .section { padding: 56px 0; }
.container-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

.about-hero {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--primary-light) 0%, rgba(255,255,255,0.95) 40%, var(--grey-light) 100%);
  z-index: 0;
}
.about-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.about-hero-blob-1 {
  width: 320px;
  height: 320px;
  background: var(--primary);
  top: -80px;
  right: -60px;
}
.about-hero-blob-2 {
  width: 240px;
  height: 240px;
  background: var(--primary);
  bottom: -40px;
  left: -40px;
  opacity: 0.25;
}
.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(74, 124, 140, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 124, 140, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-light);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-hero-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.about-hero-subtitle {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}
.about-hero-tagline {
  margin: 0;
  font-size: 1rem;
  color: var(--grey);
  font-weight: 500;
}

.about-values-bar {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid #e8ecf0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.about-values-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--grey-light);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-grey);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.about-value-pill:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}
.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.about-intro { padding-top: 40px; padding-bottom: 40px; }
.about-hakkimizda-box {
  max-width: 900px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8ecf0;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.about-hakkimizda-box:hover {
  border-color: #e0e4e9;
  box-shadow: var(--shadow-md);
}
.about-hakkimizda-box .about-mv-heading { margin-bottom: 12px; }
.about-hakkimizda-box .about-mv-text { margin-bottom: 0; }
.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.about-mv-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8ecf0;
  padding: 24px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.about-mv-box:hover {
  border-color: #e0e4e9;
  box-shadow: var(--shadow-md);
}
.about-mv-heading {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.about-mv-text {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-grey);
}
.about-mv-text:last-child { margin-bottom: 0; }

.about-section-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.about-stat-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.about-stat-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.about-stat-heading {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-grey);
}
.about-stat-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey);
}

.about-refs-desc {
  text-align: center;
  margin: 0 0 28px;
  color: var(--grey);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.about-refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.about-ref-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-grey);
}

.about-datacenter-intro {
  text-align: center;
  margin: 0 0 36px;
  color: var(--grey);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.6;
}
.about-datacenter-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.about-dc-card {
  position: relative;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.about-dc-card:hover {
  border-color: rgba(74, 124, 140, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-dc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 18px;
}
.about-dc-icon svg {
  display: block;
}
.about-dc-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}
.about-dc-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--grey);
}

.about-support-desc {
  text-align: center;
  margin: 0 0 32px;
  color: var(--grey);
}
.about-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.about-support-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-support-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.about-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 16px;
}
.about-support-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-grey);
}
.about-support-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey);
}
.about-support-cta { text-align: center; margin: 0; }

.bg-alt { background: var(--grey-light); }

.reseller-hero { position: relative; overflow: hidden; padding: 78px 0 82px; background: linear-gradient(160deg, #f8fafb 0%, #eef4f6 58%, #fff 100%); }
.reseller-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.reseller-hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45; }
.reseller-hero-blob-1 { width: 390px; height: 390px; top: -180px; right: 5%; background: rgba(74,124,140,.22); }
.reseller-hero-blob-2 { width: 260px; height: 260px; bottom: -140px; left: 12%; background: rgba(201,123,74,.14); }
.reseller-hero-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(74,124,140,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(74,124,140,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, black, transparent 75%); }
.reseller-hero .container, .reseller-hero-inner { position: relative; z-index: 1; }
.reseller-hero-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); align-items: center; gap: 80px; }
.reseller-hero-copy { max-width: 690px; }
.reseller-hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border: 1px solid rgba(74,124,140,.2); border-radius: 99px; color: var(--primary-dark); background: rgba(255,255,255,.62); font-size: .84rem; font-weight: 700; }
.reseller-hero-title { margin: 20px 0 18px; color: var(--dark); font-size: clamp(2.3rem, 4vw, 3.55rem); letter-spacing: -.045em; }
.reseller-hero-title span { color: var(--primary); }
.reseller-hero-desc { max-width: 620px; margin: 0; font-size: 1.1rem; color: var(--dark-grey); }
.reseller-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.reseller-hero-panel { overflow: hidden; max-width: 410px; margin-left: auto; border: 1px solid rgba(74,124,140,.16); border-radius: var(--radius-xl); background: rgba(255,255,255,.86); box-shadow: 0 22px 55px rgba(44,62,80,.12); transform: rotate(1.5deg); }
.reseller-panel-top { display: flex; align-items: center; gap: 6px; padding: 14px 18px; border-bottom: 1px solid #e7edf0; background: #f7fafb; }
.reseller-panel-dot { width: 8px; height: 8px; border-radius: 50%; background: #b9cbd0; }.reseller-panel-dot:first-child { background: var(--primary); }
.reseller-panel-label { margin-left: auto; color: var(--grey); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.reseller-panel-body { padding: 28px; }.reseller-panel-stat { display: flex; align-items: center; gap: 18px; }.reseller-panel-stat strong { color: var(--primary); font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; }.reseller-panel-stat span { color: var(--dark-grey); font-size: .9rem; line-height: 1.35; }.reseller-panel-line { width: 100%; height: 1px; margin: 24px 0; background: #e7edf0; }.reseller-panel-check { margin-top: 16px; color: var(--dark-grey); font-size: .95rem; font-weight: 600; }.reseller-panel-check span { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-weight: 800; }
.reseller-values-bar { padding: 22px 0; background: var(--white); border-bottom: 1px solid #e8ecf0; }.reseller-values-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }.reseller-value { display: flex; align-items: center; gap: 13px; min-height: 52px; padding: 0 24px; border-right: 1px solid #e8ecf0; color: var(--dark-grey); }.reseller-value:first-child { padding-left: 0; }.reseller-value:last-child { padding-right: 0; border-right: 0; }.reseller-value-icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid rgba(74,124,140,.2); border-radius: 12px; background: linear-gradient(145deg, var(--primary-light), rgba(74,124,140,.03)); color: var(--primary); font-family: var(--font-heading); font-size: .68rem; font-weight: 800; letter-spacing: .04em; }.reseller-value strong, .reseller-value small { display: block; }.reseller-value strong { margin-bottom: 2px; color: var(--dark); font-family: var(--font-heading); font-size: .88rem; line-height: 1.2; }.reseller-value small { color: var(--grey); font-size: .76rem; line-height: 1.35; }
.reseller-section-heading { max-width: 700px; margin: 0 auto 42px; text-align: center; }.reseller-section-heading .heading-desc { margin-bottom: 0; }.reseller-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }.reseller-feature-card { padding: 28px 22px; border: 1px solid #e8ecf0; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }.reseller-feature-card:hover { border-color: rgba(74,124,140,.25); box-shadow: var(--shadow-md); transform: translateY(-3px); }.reseller-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin-bottom: 20px; border-radius: 14px; background: var(--primary-light); color: var(--primary); }.reseller-feature-icon svg { width: 27px; height: 27px; }.reseller-feature-card h3 { margin-bottom: 10px; color: var(--dark); font-family: var(--font-heading); font-size: 1.05rem; }.reseller-feature-card p { margin: 0; color: var(--grey); font-size: .93rem; line-height: 1.65; }
.reseller-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }.reseller-steps li { display: flex; gap: 15px; }.reseller-step-number { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid rgba(74,124,140,.3); border-radius: 50%; background: var(--white); color: var(--primary); font-family: var(--font-heading); font-weight: 800; }.reseller-steps h3 { margin: 3px 0 8px; color: var(--dark); font-size: 1rem; }.reseller-steps p { margin: 0; color: var(--grey); font-size: .9rem; line-height: 1.6; }
.reseller-audience { padding-top: 64px; padding-bottom: 72px; }.reseller-audience-box { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 42px 48px; border-radius: var(--radius-xl); background: linear-gradient(120deg, var(--dark) 0%, #395b69 100%); box-shadow: var(--shadow-lg); }.reseller-audience-box h2 { margin: 14px 0 10px; color: var(--white); font-family: var(--font-heading); font-size: 1.75rem; }.reseller-audience-box p { max-width: 680px; margin: 0; color: rgba(255,255,255,.74); }.reseller-audience-box .label-pill { color: #d0e2e6; background: rgba(255,255,255,.12); }.reseller-audience-box .btn { flex: 0 0 auto; }
.reseller-table-wrap { overflow-x: auto; border: 1px solid #e2e8eb; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }.reseller-table { width: 100%; min-width: 680px; border-collapse: collapse; text-align: left; }.reseller-table th, .reseller-table td { padding: 17px 22px; border-bottom: 1px solid #edf0f2; color: var(--dark-grey); font-size: .94rem; }.reseller-table th { background: #f7fafb; color: var(--dark); font-family: var(--font-heading); font-size: .85rem; }.reseller-table tr:last-child td { border-bottom: 0; }.reseller-table td strong { color: var(--primary-dark); }.reseller-inline-cta { margin: 24px 0 0; text-align: center; }.reseller-faq { background: var(--white); }.reseller-faq-list { max-width: 920px; margin: 0 auto; }.reseller-application-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: 44px; margin-top: 32px; padding: 38px 42px; border: 1px solid #e5eaed; border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-lg); }.reseller-application-copy h2 { margin: 14px 0 12px; color: var(--dark); font-family: var(--font-heading); font-size: 1.7rem; }.reseller-application-copy p { margin: 0; color: var(--grey); }.reseller-application-points { display: grid; gap: 10px; margin-top: 24px; }.reseller-application-points li { color: var(--dark-grey); font-size: .92rem; font-weight: 600; }.reseller-application-points li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; margin-right: 8px; border-radius: 50%; background: var(--primary-light); color: var(--primary); font-size: .72rem; }.reseller-form-wrap { min-width: 0; }.reseller-form-wrap .contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }.reseller-form-wrap .contact-field-full, .reseller-form-wrap .contact-submit { grid-column: 1 / -1; }.reseller-form-wrap .contact-submit { width: 100%; }.reseller-form-wrap .contact-form-status { margin-bottom: 12px; }

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--primary); }

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .esnek-table th, .esnek-table td { padding: 14px 18px; font-size: 14px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-panel-inner { gap: 32px; }
  .hero-title { font-size: 36px; }
  .steps-row { gap: 16px; }
  .step-connector { width: 2px; min-width: 2px; height: 24px; background: linear-gradient(180deg, transparent, rgba(0,178,227,.5), transparent); }
}

@media (max-width: 993px) {
  .nav { display: none; }
  .nav.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px; }
  .nav.active .nav-menu { flex-direction: column; align-items: stretch; }
  .nav.active .nav-menu li { border-bottom: 1px solid #eee; }
  .nav.active .nav-menu a { padding: 12px; display: block; }
  .mobile-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: none; }
  .hero-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { gap: 32px; margin-top: 40px; padding-top: 32px; }
  .hero-stat strong { font-size: 24px; }
  .hero-visual { order: -1; }
  .hero-person-wrap { max-width: 320px; margin: 0 auto; }
  .hero-person-img { max-height: 400px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 24px; min-width: 0; background: linear-gradient(180deg, transparent, rgba(0,178,227,.5), transparent); }
  .step-connector-dot { display: none; }
  .step-box { max-width: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-datacenter-features { grid-template-columns: 1fr; }
  .about-support-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero { padding: 40px 0 56px; }
  .hero-title { font-size: 28px; }
  .hero-desc { font-size: 16px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .section { padding: 56px 0; }
  .heading-title { font-size: 28px; }
  .heading-desc { font-size: 16px; }
  .product-type-toggle { flex-direction: column; border-radius: var(--radius-lg); padding: 6px; }
  .product-type-btn { justify-content: center; width: 100%; }
  .esnek-table th, .esnek-table td { padding: 12px 16px; font-size: 14px; }
  .esnek-table thead th:last-child { width: 160px; }
.esnek-action-cell { min-width: 140px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .why-panel-inner { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .why-panel-title { font-size: 20px; }
  .why-tabs { gap: 6px; margin-bottom: 24px; }
  .why-tab-btn { padding: 10px 14px; font-size: 14px; }
  .why-title { font-size: 26px; }
  .why-lead { font-size: 15px; }
  .why-cta { width: 100%; min-width: 0; }
  .steps-title { font-size: 26px; }
  .steps-cta-btn { width: 100%; min-width: 0; }
  .compare-legend { flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; font-size: 13px; }
  .compare-wrap { margin: 0 -20px; border-radius: 0; border-left: none; border-right: none; }
  .compare-table { min-width: 520px; font-size: 14px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 14px; }
  .compare-feature-col { min-width: 140px; }
  .compare-badge { font-size: 10px; padding: 5px 10px; }
  .compare-value-storage { font-size: 1.1rem; }
  .compare-tabs { flex-wrap: wrap; justify-content: center; }
  .compare-tab { padding: 10px 20px; font-size: 14px; }
  .contact-title { font-size: 26px; }
  .contact-ctas { flex-direction: column; }
  .contact-phone-btn,
  .contact-email-btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-block { text-align: center; }
  .footer-address-block { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .about-hero { padding: 48px 0 40px; }
  .about-hero-title { font-size: 1.85rem; }
  .about-hero-subtitle { font-size: 1.1rem; }
  .about-values-inner { gap: 12px; }
  .about-value-pill { padding: 8px 16px; font-size: 0.9rem; }
  .about-hakkimizda-box { margin-bottom: 20px; padding: 22px 24px; }
  .about-mission-vision { grid-template-columns: 1fr; gap: 20px; }
  .about-mv-box { padding: 22px 24px; }
  .about-section-title { font-size: 1.5rem; }
  .about-refs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-features { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .pricing-card { padding: 24px 20px; }
  .esnek-table th, .esnek-table td { padding: 12px 14px; font-size: 13px; }
  .esnek-price { font-size: 1.1rem; }
  .btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
  .about-hero { padding: 40px 0 32px; }
  .about-hero-title { font-size: 1.6rem; }
  .about-hero-badge { font-size: 0.75rem; padding: 6px 12px; }
  .about-values-inner { flex-direction: column; }
  .about-value-pill { width: 100%; justify-content: center; }
  .about-hakkimizda-box { padding: 20px 22px; margin-bottom: 18px; }
  .about-mv-box { padding: 20px 22px; }
  .about-mv-heading { font-size: 1.1rem; }
  .about-refs-grid { grid-template-columns: 1fr; }
  .about-stat-number { font-size: 1.85rem; }
}

@media (max-width: 1200px) {
  .reseller-hero-inner { gap: 42px; }
  .reseller-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .smail-pricing-tabs { margin-bottom: 26px; }
  .smail-pricing-tab { padding: 11px 8px; font-size: 12px; }
  .smail-pricing-grid.is-high .smail-plan-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 993px) {
  .reseller-hero { padding: 60px 0 68px; }
  .reseller-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .reseller-hero-copy { max-width: none; }
  .reseller-hero-desc { margin-right: auto; margin-left: auto; }
  .reseller-hero-actions { justify-content: center; }
  .reseller-hero-panel { margin: 0 auto; }
  .reseller-values-inner { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .reseller-value:nth-child(2) { border-right: 0; }
  .reseller-value:nth-child(3), .reseller-value:nth-child(4) { padding-top: 18px; border-top: 1px solid #e8ecf0; }
  .reseller-value:nth-child(3) { padding-left: 0; }
  .reseller-steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .reseller-audience-box { align-items: flex-start; flex-direction: column; }
  .reseller-application-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .reseller-hero-title { font-size: 2.15rem; }
  .reseller-hero-desc { font-size: 1rem; }
  .reseller-hero-actions { flex-direction: column; }
  .reseller-hero-actions .btn { width: 100%; }
  .reseller-feature-grid { grid-template-columns: 1fr; }
  .reseller-steps { grid-template-columns: 1fr; }
  .reseller-values-inner { display: flex; align-items: stretch; flex-direction: column; gap: 0; }
  .reseller-value { justify-content: center; }
  .reseller-value, .reseller-value:first-child, .reseller-value:last-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid #e8ecf0; }
  .reseller-value:last-child { border-bottom: 0; }
  .reseller-audience { padding-top: 48px; padding-bottom: 56px; }
  .reseller-audience-box { padding: 30px 24px; }
  .reseller-audience-box h2 { font-size: 1.45rem; }
  .reseller-audience-box .btn { width: 100%; }
  .reseller-application-card { padding: 28px 22px; }
  .reseller-form-wrap .contact-form { grid-template-columns: 1fr; }
  .reseller-form-wrap .contact-field-full, .reseller-form-wrap .contact-submit { grid-column: auto; }
}
