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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --accent: #3b82f6;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --text: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --radius: 12px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.has-sticky-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.wide {
  max-width: 1140px;
}

.hidden {
  display: none !important;
}

/* Top Bar */
.top-bar {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right strong {
  color: #e2e8f0;
}

/* Header */
.header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header .logo {
  text-decoration: none;
  color: inherit;
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-name .accent {
  color: var(--primary);
}

.logo-mark img {
  display: block;
  border-radius: 9px;
}

.logo-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
}

.lang-switcher {
  position: relative;
}

.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-secondary, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 6px 28px 6px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.lang-switcher select:hover,
.lang-switcher select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

body.rtl {
  direction: rtl;
}

body.rtl .header-nav,
body.rtl .top-bar .container,
body.rtl .search-form,
body.rtl .info-grid,
body.rtl .checkout-line,
body.rtl .modal-info-row,
body.rtl .sticky-cta-inner,
body.rtl .urgency-left,
body.rtl .domain-hero,
body.rtl .feature-item,
body.rtl .payment-summary-row,
body.rtl .form-row {
  flex-direction: row-reverse;
}

body.rtl .lang-switcher select {
  padding: 6px 10px 6px 28px;
  background-position: left 8px center;
}

body.rtl .search-input-wrap .input-valid {
  left: auto;
  right: 12px;
}

body.rtl .toast-container {
  left: 20px;
  right: auto;
}

.geo-toast {
  border-left: 3px solid var(--primary);
}

body.rtl .geo-toast {
  border-left: none;
  border-right: 3px solid var(--primary);
}

.nav-cta {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #dbeafe !important;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  padding: 56px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  margin-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bfdbfe;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Search Panel */
.search-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
}

.step.active .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.step.done .step-num {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step.active .step-label {
  color: var(--primary);
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 22px;
}

.search-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.input-group {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.input-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-right: 1px solid var(--border);
}

.input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  padding: 14px 16px;
  background: transparent;
  min-width: 0;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-btn:hover:not(:disabled) {
  background: var(--primary-dark);
}

.search-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.input-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.input-valid {
  display: flex;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.input-group input.valid {
  color: var(--success);
}

.input-group.shake {
  animation: shake 0.45s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.recent-domains {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.recent-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.recent-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-family: inherit;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.recent-chip:hover {
  background: var(--primary-light);
  border-color: #bfdbfe;
}

.error-msg {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--danger-bg);
  border-radius: 8px;
}

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.payment-form input.field-error {
  border-color: var(--danger);
  background: var(--danger-bg);
}

/* Main */
.main {
  flex: 1;
  margin-top: -60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* Loading */
.loading-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: 16px;
}

.skeleton-line {
  height: 14px;
  width: 100%;
  margin-bottom: 10px;
}

.skeleton-line.short {
  width: 40%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.skeleton-box {
  height: 72px;
}

.loading-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 20px;
}

/* Urgency Banner */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border: 1px solid #fecaca;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 24px;
  animation: urgency-pulse 3s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.15s;
}

.urgency-banner:hover {
  transform: translateY(-1px);
}

@keyframes urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
  50% { box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08); }
}

.urgency-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.urgency-icon {
  color: var(--danger);
  flex-shrink: 0;
}

.urgency-left strong {
  display: block;
  color: #991b1b;
  font-size: 1rem;
  margin-bottom: 4px;
}

.urgency-left p {
  color: #b45309;
  font-size: 0.875rem;
}

.urgency-banner.renewed {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-color: #bbf7d0;
  animation: none;
}

.urgency-banner.renewed .urgency-icon { color: var(--success); }
.urgency-banner.renewed strong { color: #166534; }
.urgency-banner.renewed p { color: #15803d; }

.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 58px;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--danger);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.countdown-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 14px;
}

/* Results Layout */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-top h2 {
  font-size: 1.15rem;
  font-weight: 700;
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-badge.expired-soon {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid #fecaca;
}

.status-badge.active {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #bbf7d0;
}

/* Domain Hero */
.domain-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
}

.domain-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.domain-hero-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  word-break: break-all;
}

.domain-id {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s;
}

.info-card:hover {
  border-color: #cbd5e1;
}

.info-card.highlight-card {
  background: var(--danger-bg);
  border-color: #fecaca;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon.blue { background: #dbeafe; color: #2563eb; }
.info-card-icon.green { background: #dcfce7; color: #16a34a; }
.info-card-icon.red { background: #fee2e2; color: #dc2626; }
.info-card-icon.purple { background: #ede9fe; color: #7c3aed; }

.info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.info-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.info-value.danger {
  color: var(--danger);
}

/* Risk Box */
.risk-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 18px 20px;
}

.risk-box h4 {
  font-size: 0.9rem;
  color: #9a3412;
  margin-bottom: 10px;
}

.risk-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.risk-box li {
  font-size: 0.82rem;
  color: #c2410c;
  padding-left: 18px;
  position: relative;
}

.risk-box li::before {
  content: '✕';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Features Card */
.features-card {
  margin-top: 24px;
}

.features-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Checkout Panel */
.checkout-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.checkout-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.checkout-badge {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.checkout-domain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--primary-light);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.checkout-domain strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.checkout-line.strikethrough span:last-child {
  text-decoration: line-through;
  color: var(--text-muted);
}

.free-tag {
  color: var(--success) !important;
  font-weight: 700;
  font-size: 0.78rem !important;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
}

.checkout-total > span {
  font-weight: 600;
  font-size: 0.95rem;
}

.total-price {
  display: flex;
  align-items: baseline;
}

.total-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.total-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.savings-tag {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.renew-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.renew-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.renew-btn:active:not(:disabled) {
  transform: translateY(0);
}

.renew-btn.loading,
.renew-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}

.renew-btn.renewed {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.payment-methods {
  text-align: center;
  margin-top: 16px;
}

.payment-methods > span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.payment-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.payment-icons-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 5px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 36px;
}

.pay-badge:hover {
  transform: scale(1.04);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.pay-card-icon {
  width: 100%;
  height: 28px;
  display: block;
  object-fit: contain;
  border-radius: 3px;
}

.pay-card-mini {
  width: 32px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2px 3px;
}

.payment-methods-modal {
  margin-top: 16px;
}

.payment-methods-modal > span {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

/* SEO Content */
.seo-content {
  margin-top: 56px;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}

.seo-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.seo-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.seo-grid h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.seo-grid p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 500;
}

.trust-card {
  display: flex;
  justify-content: space-around;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}

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

.trust-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.trust-stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Partners */
.partners-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}

.partners-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.partners-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.partners-header h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.partners-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 16px 14px;
  min-height: 68px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
}

.partner-logo:hover {
  background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.partner-logo img {
  width: auto;
  max-width: 100%;
  height: 32px;
  max-height: 32px;
  object-fit: contain;
  display: block;
}

.partners-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.partners-count {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.partners-countries {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Trust Band */
.trust-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 20px;
}

.trust-band-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.trust-logo-item:hover {
  background: var(--bg);
}

.trust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-wrap.blue { background: #dbeafe; color: #2563eb; }
.trust-icon-wrap.green { background: #dcfce7; color: #16a34a; }
.trust-icon-wrap.orange { background: #ffedd5; color: #ea580c; }
.trust-icon-wrap.purple { background: #ede9fe; color: #7c3aed; }

.trust-logo-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.trust-logo-item span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-name {
  color: white;
}

.footer-brand .logo-name .accent {
  color: #60a5fa;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-payments {
  margin-top: 20px;
}

.footer-payments-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-cards {
  grid-template-columns: repeat(4, 1fr);
  max-width: 300px;
  gap: 8px;
}

.footer-cards .pay-card-icon {
  height: 24px;
  width: 100%;
  border-radius: 3px;
  box-shadow: none;
  object-fit: contain;
}

.footer-cards .pay-badge {
  background: transparent;
  border: none;
  padding: 2px;
  min-height: 0;
  box-shadow: none;
  overflow: visible;
}

.footer-cards .pay-badge:hover {
  transform: scale(1.04);
  box-shadow: none;
  background: transparent;
}

.footer-cards .pay-badge:hover .pay-card-icon {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.footer-links h4 {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
}

.footer-disclaimer {
  margin-top: 6px;
  color: #64748b;
}

/* Content pages */
.page-header .logo {
  text-decoration: none;
  color: inherit;
}

.page-header .header-nav a.active {
  color: var(--primary);
  font-weight: 600;
}

.page-main {
  flex: 1;
  padding: 32px 0 64px;
}

.page-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-breadcrumb span {
  margin: 0 8px;
  color: var(--border);
}

.page-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 32px;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.page-content {
  max-width: 820px;
}

.page-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 8px;
}

.page-content p,
.page-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.page-content ul,
.page-content ol {
  margin: 12px 0 12px 20px;
}

.page-content li {
  margin-bottom: 6px;
}

.page-content a {
  color: var(--primary);
}

.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  margin-top: 0;
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.feature-card h3 {
  font-size: 0.95rem;
  margin: 0 0 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.88rem;
  margin: 0;
}

.info-box {
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.info-box strong {
  color: var(--text);
}

.page-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.page-cta:hover {
  background: var(--primary-dark);
}

.legal-doc .legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.legal-doc h2 {
  font-size: 1.05rem;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.legal-doc h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.88rem;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 24px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--primary-dark);
}

.status-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.status-item span:first-child {
  font-weight: 500;
  color: var(--text);
  font-size: 0.92rem;
}

.status-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.status-badge.ok {
  background: var(--success-bg);
  color: var(--success);
}

.status-badge.warn {
  background: var(--warning-bg);
  color: var(--warning);
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.help-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.help-category:hover {
  border-color: #93c5fd;
  box-shadow: var(--shadow);
}

.help-category h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--text);
}

.help-category p {
  margin: 0;
  font-size: 0.85rem;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.88rem;
}

.chat-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 24px;
}

.chat-panel h2 {
  margin-top: 0;
}

.chat-hours {
  display: inline-block;
  margin: 16px 0 24px;
  padding: 10px 18px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

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

  .feature-grid,
  .contact-grid,
  .help-categories {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 16px 0 8px;
}

.modal > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-info {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  margin: 20px 0 24px;
  text-align: left;
}

.modal-info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
}

.modal-info-row span {
  color: var(--text-secondary);
}

.modal-btn {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.modal-btn:hover {
  background: var(--primary-dark);
}

.spin {
  animation: spin 1s linear infinite;
}

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

/* Conversion UX */
.results {
  animation: fadeUp 0.5s ease;
}

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

.renew-btn.pulse {
  animation: cta-pulse 2.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(37, 99, 235, 0.55), 0 0 0 4px rgba(37, 99, 235, 0.1); }
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: #991b1b;
}

.offer-timer strong {
  font-variant-numeric: tabular-nums;
  color: var(--danger);
}

.viewers-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: live-blink 1.5s ease-in-out infinite;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 16px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.85rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}

.testimonial-author {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.faq-section {
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item summary:hover { background: var(--bg); }

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.loading-steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.loading-step.active { color: var(--primary); font-weight: 500; }
.loading-step.done { color: var(--success); }

.load-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  opacity: 0;
  transition: all 0.3s;
}

.loading-step.done .load-check {
  opacity: 1;
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.loading-step.active .load-check {
  opacity: 1;
  border-color: var(--primary);
  animation: load-spin 1s linear infinite;
  border-top-color: transparent;
}

@keyframes load-spin {
  to { transform: rotate(360deg); }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  z-index: 90;
  padding: 12px 20px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sticky-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-domain {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.sticky-price {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.sticky-price s {
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}

.sticky-cta-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.toast-container {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 300px;
  animation: toast-in 0.4s ease, toast-out 0.4s ease 4.6s forwards;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  width: 32px;
  height: 32px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toast strong { color: var(--text); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateX(-20px); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover { color: var(--text); }

.payment-modal {
  max-width: 460px;
  text-align: left;
  position: relative;
  padding-top: 32px;
}

.payment-modal h2 {
  font-size: 1.25rem;
  text-align: center;
}

.payment-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.payment-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.payment-step {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.payment-step.active { color: var(--primary); }

.payment-step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
}

.payment-summary {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
}

.payment-summary-row.discount {
  color: var(--success);
  font-weight: 600;
}

.payment-form .form-group {
  margin-bottom: 14px;
}

.payment-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.payment-form input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card-input-wrap {
  position: relative;
}

.card-input-wrap input {
  padding-right: 100px;
}

.card-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
}

.card-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.payment-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.payment-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--success);
}

.receipt-note {
  font-size: 0.82rem;
  color: var(--success);
  margin-bottom: 16px !important;
}

.exit-modal {
  max-width: 420px;
  position: relative;
  text-align: center;
}

.exit-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.exit-offer {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: 10px;
  padding: 16px;
  margin: 16px 0 20px;
}

.exit-price {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.exit-price strong {
  color: var(--primary);
  font-size: 1.3rem;
}

.exit-save {
  font-size: 0.82rem;
  color: var(--warning);
  font-weight: 600;
}

.exit-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: underline;
}

.exit-dismiss:hover { color: var(--text-secondary); }

/* Responsive — Tablet */
@media (max-width: 960px) {
  .results-layout {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    position: static;
  }

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

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .container.wide {
    padding: 0 20px;
  }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
  .container,
  .container.wide {
    padding: 0 16px;
  }

  .header {
    padding: 14px 0;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-tag {
    display: none;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px 16px;
    z-index: 100;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
  }

  .header-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .header-nav .mobile-lang {
    margin-top: 8px;
  }

  .header-nav .mobile-lang select {
    width: 100%;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header {
    position: relative;
  }

  .header .container {
    position: relative;
  }

  .top-bar {
    padding: 6px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .top-bar-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-bar-right {
    font-size: 0.72rem;
  }

  .hero {
    padding: 32px 0 72px;
  }

  .hero h1 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .search-panel {
    padding: 20px 16px;
    margin: 0 4px;
  }

  .steps {
    margin-bottom: 20px;
  }

  .step-line {
    width: 24px;
    margin-bottom: 18px;
  }

  .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .step-label {
    font-size: 0.58rem;
  }

  .input-group {
    flex-direction: column;
    border-radius: var(--radius);
    overflow: visible;
    gap: 0;
    border: none;
    background: transparent;
  }

  .input-group:focus-within {
    box-shadow: none;
  }

  .input-prefix {
    display: none;
  }

  .input-valid {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }

  .search-form {
    position: relative;
  }

  .search-form .input-group {
    position: relative;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    overflow: hidden;
  }

  .search-form .input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  }

  .input-group input {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-size: 16px;
    border: none;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: 0;
    padding: 16px;
    font-size: 1rem;
  }

  .main {
    margin-top: -48px;
    padding-bottom: 24px;
  }

  .loading-card,
  .card {
    padding: 20px 16px;
    border-radius: var(--radius);
  }

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

  .results-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .checkout-panel {
    order: -1;
  }

  .urgency-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 16px;
    margin-bottom: 16px;
  }

  .urgency-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .urgency-left strong {
    font-size: 0.92rem;
  }

  .urgency-left p {
    font-size: 0.82rem;
  }

  .countdown {
    width: 100%;
    justify-content: center;
    padding-top: 4px;
    border-top: 1px solid #fecaca;
  }

  .countdown-item {
    min-width: 52px;
    padding: 6px 10px;
  }

  .countdown-value {
    font-size: 1.25rem;
  }

  .domain-hero {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .domain-hero-info h3 {
    font-size: 1.25rem;
    word-break: break-all;
  }

  .card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .info-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-card {
    padding: 14px;
  }

  .feature-item {
    padding: 12px;
  }

  .risk-box {
    padding: 14px;
  }

  .risk-box h4 {
    font-size: 0.85rem;
  }

  .risk-box li {
    font-size: 0.78rem;
  }

  .checkout-card {
    padding: 20px 16px;
    border-width: 1.5px;
  }

  .checkout-header h3 {
    font-size: 1rem;
  }

  .total-price .amount {
    font-size: 1.75rem;
  }

  .renew-btn {
    min-height: 52px;
    font-size: 1rem;
    padding: 18px 20px;
  }

  .offer-timer {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .trust-card {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  .trust-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
  }

  .trust-stat strong {
    font-size: 1rem;
  }

  .trust-logos {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-logo-item {
    padding: 14px 8px;
  }

  .trust-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .trust-logo-item strong {
    font-size: 0.82rem;
  }

  .trust-logo-item span {
    font-size: 0.68rem;
  }

  .trust-band {
    padding: 24px 0;
    margin-top: 12px;
  }

  .faq-section {
    margin-top: 32px;
  }

  .faq-section h2 {
    font-size: 1.15rem;
  }

  .faq-item summary {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .faq-item p {
    padding: 0 16px 14px;
    font-size: 0.84rem;
  }

  .partners-section {
    padding: 40px 0 36px;
  }

  .partners-header h2 {
    font-size: 1.35rem;
  }

  .partners-header p {
    font-size: 0.88rem;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .partner-logo {
    padding: 12px 10px;
    min-height: 58px;
  }

  .partner-logo img {
    height: 22px;
  }

  .partners-countries {
    font-size: 0.72rem;
    line-height: 1.5;
    padding: 0 8px;
  }

  .footer {
    padding: 32px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-cards {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .sticky-cta {
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-inner {
    gap: 10px;
  }

  .sticky-cta-info {
    flex: 1;
    min-width: 0;
  }

  .sticky-domain {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
  }

  .sticky-cta-btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 0.88rem;
    flex-shrink: 0;
  }

  .toast-container {
    left: 12px;
    right: 12px;
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .toast {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal,
  .payment-modal,
  .exit-modal,
  .success-modal {
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 28px 20px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .modal h2 {
    font-size: 1.2rem;
  }

  .payment-form input {
    font-size: 16px;
    padding: 14px;
    min-height: 48px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .modal-btn,
  .payment-submit {
    min-height: 52px;
    font-size: 1rem;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recent-domains {
    justify-content: center;
  }

  .recent-chip {
    min-height: 36px;
    padding: 8px 14px;
  }

  .payment-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .pay-card-mini {
    width: 24px;
  }

  .seo-content {
    margin-top: 32px;
    padding: 28px 0 12px;
  }

  .seo-content h2 {
    font-size: 1.15rem;
  }

  .seo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .seo-grid article {
    padding: 18px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.45rem;
  }

  .trust-logos {
    grid-template-columns: 1fr;
  }

  .countdown-item {
    min-width: 46px;
    padding: 5px 8px;
  }

  .sticky-cta-inner {
    flex-wrap: nowrap;
  }

  .sticky-domain {
    max-width: 120px;
  }

  .top-bar-item:nth-child(2) {
    display: none;
  }
}

/* Floating support chat widget */
.rx-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  font-family: 'Inter', system-ui, sans-serif;
}

.rx-chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rx-chat-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.55);
}

.rx-chat-icon {
  width: 26px;
  height: 26px;
}

.rx-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: #ef4444;
  color: white;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid white;
}

.rx-chat-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: var(--card, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  animation: rx-chat-in 0.25s ease;
}

@keyframes rx-chat-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.rx-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
}

.rx-chat-header strong {
  display: block;
  font-size: 0.95rem;
}

.rx-chat-status {
  display: block;
  font-size: 0.72rem;
  opacity: 0.9;
  margin-top: 2px;
}

.rx-chat-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

.rx-chat-body {
  max-height: 420px;
  display: flex;
  flex-direction: column;
}

.rx-chat-start {
  padding: 18px;
}

.rx-chat-start p {
  font-size: 0.88rem;
  color: var(--text-secondary, #64748b);
  margin: 0 0 14px;
}

.rx-chat-start input,
.rx-chat-start textarea,
.rx-chat-compose input {
  width: 100%;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-family: inherit;
  margin-bottom: 10px;
}

.rx-chat-start textarea {
  resize: vertical;
  min-height: 72px;
}

.rx-chat-start input:focus,
.rx-chat-start textarea:focus,
.rx-chat-compose input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.rx-chat-start button[type="submit"] {
  width: 100%;
  padding: 11px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.rx-chat-thread {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.rx-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  min-height: 240px;
  background: #f8fafc;
}

.rx-chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}

.rx-chat-msg.out {
  align-self: flex-end;
  align-items: flex-end;
}

.rx-chat-msg.in {
  align-self: flex-start;
  align-items: flex-start;
}

.rx-chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  word-break: break-word;
}

.rx-chat-msg.out .rx-chat-bubble {
  background: #2563eb;
  color: white;
  border-bottom-right-radius: 4px;
}

.rx-chat-msg.in .rx-chat-bubble {
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
}

.rx-chat-time {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 3px;
  padding: 0 4px;
}

.rx-chat-compose {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border, #e2e8f0);
  background: white;
}

.rx-chat-compose input {
  flex: 1;
  margin-bottom: 0;
}

.rx-chat-compose button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rx-chat-compose button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .rx-chat-widget {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: 16px;
  }

  .rx-chat-panel {
    width: calc(100vw - 32px);
    bottom: 68px;
  }
}

/* Buy domain page */
.buy-hero {
  padding-bottom: 72px;
}

.buy-search-panel {
  margin-top: 8px;
}

.buy-main {
  margin-top: -48px;
}

.buy-avail-banner,
.buy-taken-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-top: 8px;
}

.buy-avail-banner {
  background: var(--success-bg);
  border: 1px solid #bbf7d0;
}

.buy-taken-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.buy-avail-icon,
.buy-taken-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.buy-avail-icon {
  background: #16a34a;
  color: white;
}

.buy-taken-icon {
  background: #ef4444;
  color: white;
}

.buy-avail-banner strong,
.buy-taken-banner strong {
  display: block;
  margin-bottom: 4px;
}

.buy-avail-banner p,
.buy-taken-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.buy-alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-cta.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.page-cta.secondary:hover {
  background: #eff6ff;
}

.tld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tld-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.tld-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.tld-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.checkout-domain-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.checkout-domain-row strong {
  color: var(--primary);
  word-break: break-all;
  text-align: right;
  max-width: 60%;
}

.checkout-price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  color: var(--text-secondary);
}

.checkout-price-row.discount span:last-child {
  color: var(--success);
  font-weight: 600;
}

.checkout-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* TLD extension results list */
.tld-results {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tld-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tld-results-header h2 {
  font-size: 1.25rem;
  margin: 0 0 6px;
}

.tld-results-header h2 span {
  color: var(--primary);
}

.tld-results-header p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.tld-results-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tld-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tld-row.available:hover {
  border-color: #86efac;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.1);
}

.tld-row.primary {
  border-color: #93c5fd;
  background: #f8fbff;
}

.tld-section {
  margin-bottom: 20px;
}

.tld-section:last-child {
  margin-bottom: 0;
}

.tld-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.tld-primary-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.tld-row.taken {
  grid-template-columns: 1fr auto auto;
  opacity: 0.85;
  background: #fafafa;
}

.tld-row.unknown {
  grid-template-columns: 1fr auto;
  opacity: 0.7;
}

.tld-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.tld-row-name {
  font-size: 1.05rem;
  color: var(--text);
  word-break: break-all;
}

.tld-promo-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #d9f99d;
  color: #365314;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
}

.tld-taken-badge,
.tld-unknown-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 4px;
}

.tld-row-price {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.tld-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.tld-price-was {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.tld-cart-btn {
  background: #1a5c3a;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.tld-cart-btn:hover {
  background: #134d30;
}

.tld-row-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

.tld-renew-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.tld-renew-link:hover {
  text-decoration: underline;
}

.tld-results-note {
  margin: 16px 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.tld-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 32px;
}

@media (max-width: 768px) {
  .tld-row,
  .tld-row.taken {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tld-row-price {
    justify-content: flex-start;
  }

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

  .tld-row-meta {
    text-align: left;
  }
}
