/* ==========================================================================
   PORTFOLIO HOLDING DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Sober Corporate Color Palette */
  --bg-dark: #0a0b0d; /* obsidian black */
  --bg-card: #121418; /* dark grey-slate */
  --bg-card-alt: #171a20;
  
  --border-light: rgba(255, 255, 255, 0.05);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-gold: #c5a880; /* luxury bronze/gold */
  --border-gold-trans: rgba(197, 168, 128, 0.2);
  
  --color-gold: #c5a880;
  --color-gold-hover: #d5b890;
  
  --text-primary: #f4f5f6; /* ivory white */
  --text-secondary: #9ea4b0; /* charcoal grey */
  --text-muted: #5e6470;
  
  /* Status Colors */
  --status-available: #10b981;
  --status-pending: #f59e0b;
  --status-sold: #ef4444;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  line-height: 1.6;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Structural Separation */
section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-light);
}

/* Dynamic grid overlay (subtle corporate structure) */
.bg-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 80px 80px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.logo-icon {
  color: var(--color-gold);
  font-size: 1.15rem;
  border: 1px solid var(--border-gold-trans);
  padding: 8px;
  border-radius: var(--border-radius-sm);
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--color-gold);
}

.lang-switch-container {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--border-gold-trans);
  color: var(--color-gold);
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.lang-btn:hover:not(.active) {
  color: var(--text-secondary);
}

/* ==========================================================================
   TYPOGRAPHY & HERO
   ========================================================================== */
.hero-section {
  text-align: center;
  padding: 100px 0 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.text-gradient {
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 50px;
  font-weight: 300;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}

.text-center {
  text-align: center !important;
}

/* ==========================================================================
   DOMAINS PRESENTATION GRID
   ========================================================================== */
.domains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1000px;
}

.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.domain-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.domain-name {
  font-family: var(--font-sans);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.domain-ext {
  font-weight: 300;
  color: var(--text-muted);
}

.domain-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.domain-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hover States */
.domain-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.domain-card:hover::before {
  transform: scaleX(1);
}

/* ==========================================================================
   INDICATORS OF VALUE / WHY SECTION
   ========================================================================== */
.why-section {
  background: rgba(18, 20, 24, 0.1);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--border-radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--border-gold-trans);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PORTFOLIO CATALOG SECTION
   ========================================================================== */
.catalog-section {
  background: rgba(18, 20, 24, 0.2);
}

.section-intro {
  max-width: 600px;
  margin: 0 auto 50px;
}

.catalog-search-wrapper {
  max-width: 480px;
  margin: 0 auto 40px;
}

.catalog-table-container {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.catalog-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.catalog-table th, 
.catalog-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
}

.catalog-table th {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.01);
}

.catalog-table tbody tr {
  transition: background 0.2s ease;
}

.catalog-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.015);
}

.td-domain {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.td-ext {
  color: var(--text-muted);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-indicator::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-indicator.available {
  color: var(--status-available);
}
.status-indicator.available::before {
  background: var(--status-available);
}

.status-indicator.pending {
  color: var(--status-pending);
}
.status-indicator.pending::before {
  background: var(--status-pending);
}

.status-indicator.sold {
  color: var(--status-sold);
}
.status-indicator.sold::before {
  background: var(--status-sold);
}

.btn-catalog-offer {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--border-gold-trans);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-catalog-offer:hover {
  background: var(--color-gold);
  color: var(--bg-dark);
  border-color: var(--color-gold);
}

.catalog-no-results {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   SECURE TRANSFER PROCESS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 32px;
  border-radius: var(--border-radius-md);
  position: relative;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Trust partners logos */
.trust-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  opacity: 0.35;
  filter: grayscale(1);
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   FORM SECTION & INPUT CONTROLS
   ========================================================================== */
.contact-section {
  max-width: 800px;
  margin: 90px auto;
  padding: 60px;
  border-radius: var(--border-radius-md);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header .section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* SOBER FORM CONTROLS */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.25s ease;
}

.input-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 14px 16px 14px 44px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  min-height: 48px;
}

.input-wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 14px 40px 14px 44px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  min-height: 48px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.input-wrapper select option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.textarea-wrapper textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  resize: vertical;
}

.input-wrapper:focus-within {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.02);
}

.invalid-border {
  border-color: #ef4444 !important;
}

/* Domain checkboxes */
.checkbox-group {
  display: flex;
  gap: 24px;
  margin-top: 4px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 10px;
}

.custom-checkbox input {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.checkbox-box {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkbox-box {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--bg-dark);
}

.custom-checkbox:hover .checkbox-box {
  border-color: var(--border-gold);
}

.checkbox-label-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Slider Controls */
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-badge-wrapper {
  background: var(--border-gold-trans);
  border: 1px solid rgba(197, 168, 128, 0.25);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.offer-input-field {
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  width: 60px;
  text-align: right;
  padding: 0;
  margin-right: 2px;
}

.offer-input-field::-webkit-outer-spin-button,
.offer-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.offer-input-field[type=number] {
  -moz-appearance: textfield;
}

.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--bg-dark);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.custom-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--bg-dark);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.submit-btn {
  position: relative;
  background: var(--color-gold);
  color: var(--bg-dark);
  border: none;
  outline: none;
  border-radius: var(--border-radius-sm);
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Spinner & Loading State for Submit Button */
.btn-spinner {
  display: none;
}

.submit-btn.loading .btn-text {
  visibility: hidden;
}

.submit-btn.loading .btn-spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.2);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form Submission Feedback & Animations */
.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.form-status.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  animation: successReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  animation: errorShake 0.5s ease-in-out;
}

.form-status i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
  font-weight: 500;
  animation: errorSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animations */
@keyframes successReveal {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  background: rgba(18, 20, 24, 0.1);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  padding: 24px 28px;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--color-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: var(--border-gold-trans);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  background: #060709;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   HERO BUTTON & ACTIONS
   ========================================================================== */
.hero-actions {
  margin-top: 20px;
  margin-bottom: 50px;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--bg-dark);
  border: 1px solid var(--color-gold);
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.1);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.25);
  color: var(--bg-dark);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ==========================================================================
   TESTIMONIALS & TRUST SECTION
   ========================================================================== */
.testimonials-section {
  background: rgba(18, 20, 24, 0.15);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto 50px auto;
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: var(--border-gold-trans);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-verified {
  font-size: 0.75rem;
  color: var(--status-available);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Trust Badge Banner */
.trust-badge-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.trust-score-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border-light);
}

.trust-score-item:last-child {
  border-right: none;
}

.trust-score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.trust-score-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-badge-banner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  .trust-score-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
  }
  .trust-score-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.15rem;
  }
  
  .domains-grid {
    grid-template-columns: 1fr;
  }
  
  .domain-card {
    padding: 32px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-section {
    padding: 32px 24px;
    margin: 40px auto;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
}
