/* Minimal styles for Sweetly Paddle */
.sp-wrap { max-width: 1100px; margin: 0 auto; padding: 16px; }
.sp-grid { 
  display: grid; 
  grid-template-columns: repeat(4, minmax(0, 1fr)); 
  gap: 16px; 
}
.sp-card { 
  background: rgba(18, 40, 63, 0.7); 
  border: 1px solid rgba(18, 40, 63, 0.85); 
  border-radius: 10px; 
  padding: 32px; 
  min-height: 360px; 
  color: #e6e8eb; 
  display: flex;
  flex-direction: column;
}
.sp-auth-box {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(15, 20, 30, 0.75);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.sp-account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.sp-account-card {
  background: rgba(15, 20, 30, 0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
}
.sp-account-card-wide {
  grid-column: span 2;
}
.sp-account-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
  margin-bottom: 6px;
}
.sp-account-value {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.sp-account-subtext {
  font-size: 13px;
  opacity: .75;
  margin-top: 6px;
}
.sp-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sp-manage-btn {
  min-width: 200px;
}
.sp-account-help {
  margin-top: 18px;
  font-size: 13px;
}
.sp-account-help a {
  color: #6ee7ff;
}
.sp-account-help a:hover {
  color: #9ef3ff;
}
.sp-field-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .78;
  display: block;
  text-align: center;
  margin-bottom: 6px;
}
.sp-input {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(94, 123, 255, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  color: #e6e8eb;
  font-size: 15px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.sp-input-large {
  min-height: 52px;
  font-size: 16px;
}
.sp-input:focus {
  outline: none;
  border-color: #78bfff;
  box-shadow: 0 0 0 3px rgba(120,191,255,0.25);
}
.sp-auth-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.sp-divider {
  position: relative;
  margin: 28px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6;
}
.sp-divider::before,
.sp-divider::after {
  content:'';
  position:absolute;
  top:50%;
  width:30%;
  height:1px;
  background: rgba(255,255,255,0.15);
}
.sp-divider::before { left:5%; }
.sp-divider::after { right:5%; }
.sp-plan-row {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.sp-checkout-row {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
}
.sp-status-line {
  min-height:22px;
  margin-top:18px;
}
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #1d4ed8, #9333ea);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  transition: transform .15s, box-shadow .15s, opacity .2s;
  cursor: pointer;
}
.sp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0,0,0,.45);
}
.sp-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.sp-btn-primary {
  flex: 1 1 50%;
  min-width: 150px;
}
.sp-btn-google-full {
  width: 100%;
  background: #111417;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  gap: 8px;
}
.sp-btn-google-full:hover {
  background: #181c22;
}
.sp-google-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #111417;
  font-weight: 700;
  font-size: 14px;
}
.sp-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
}
.sp-link {
  background: none;
  border: none;
  color: #6ee7ff;
  text-decoration: underline;
  font-size: 13px;
  text-align: center;
  margin-top: 6px;
}
.sp-link:hover {
  color: #9ef3ff;
}
.sp-user-label {
  display: block;
  margin-top: 12px;
}
.sp-card-disabled {
  opacity: 0.55;
  pointer-events: none;
}
.sp-card-note {
  width: 100%;
  text-align: center;
  font-size: 14px;
  opacity: 0.75;
  padding: 10px 6px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 8px;
}
.sp-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-card-actions {
  margin-top: auto;
  display: flex;
}
.sp-card-actions .sp-btn {
  width: 100%;
}
.sp-tier-title { 
  font-size: 44px; 
  margin: 0; 
  line-height: 1.05;
}
.sp-tier-price {
  font-size: 30px;
  font-weight: 600;
}
.sp-tier-minutes {
  font-size: 15px;
  opacity: 0.8;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sp-disabled-banner {
  margin-top: 24px;
  padding: 18px;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.25);
  text-align: center;
  font-size: 15px;
  color: #e6e8eb;
  background: rgba(18, 40, 63, 0.35);
}
.sp-topup {
  margin-top: 32px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,16,28,0.65);
}
.sp-topup[data-visible="0"] {
  display: none;
}
.sp-topup-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-topup-title {
  font-size: 28px;
  font-weight: 600;
}
.sp-topup-subtitle {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 4px;
}
.sp-topup-meta {
  text-align: right;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-topup-user {
  opacity: 0.75;
}
.sp-topup-balance {
  font-size: 18px;
  font-weight: 600;
}
.sp-topup-grid {
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.sp-topup-card.sp-card-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.sp-topup-card-active {
  border-color: rgba(110,231,255,0.5);
  box-shadow: 0 0 0 2px rgba(110,231,255,0.2);
}
.sp-topup-note {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.85;
}
.sp-topup-note[data-variant="error"] {
  color: #f87171;
  opacity: 1;
}
.sp-topup-note[data-variant="success"] {
  color: #4ade80;
  opacity: 1;
}
.sp-topup-note[data-variant="muted"] {
  opacity: 0.65;
}
@media (max-width: 720px) {
  .sp-auth-actions-row {
    flex-direction: column;
  }
  .sp-btn-primary {
    width: 100%;
  }
  .sp-checkout-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .sp-account-card-wide {
    grid-column: span 1;
  }
}
.sp-title { font-size: 22px; margin: 0 0 10px; }
.sp-btn { background: #2a2f45; color: #e6e8eb; border: 1px solid #3a3f58; border-radius: 8px; padding: 8px 12px; cursor: pointer; }
.sp-btn:hover { background: #343a56; }
.sp-muted { opacity: .75; font-size: 12px; }
.sp-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sp-pill { background: #141824; padding: 6px 10px; border-radius: 999px; border: 1px solid #22263a; }
.sp-terms { display: inline-flex; align-items: center; gap: 8px; }
.sp-checkout { margin-top: 16px; }

/* Fix for WordPress cover blocks interfering with Paddle overlay */
/* Ensure Paddle overlay can escape parent container constraints */
.wp-block-cover,
.wp-block-cover__inner-container {
  overflow: visible !important;
  position: relative !important;
}

/* Ensure Paddle overlay appears above everything */
/* Paddle typically uses z-index 9999 or higher */
body:has(#spCheckout) {
  overflow-x: hidden;
}

/* Allow Paddle overlay to render properly */
#spCheckout {
  position: relative;
  z-index: 1;
}

/* Paddle overlay container (if Paddle adds one) */
[data-paddle-overlay],
iframe[src*="paddle"],
iframe[src*="checkout"] {
  position: fixed !important;
  z-index: 99999 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* V2 Pricing Page - Matching PayPal Checkout Design */
:root {
  --bg: #0b0b0f;
  --panel: #14141a;
  --muted: #8b8ba7;
  --text: #fff;
  --accent: #6ee7ff;
  --accent-2: #7c5cff;
  --ring: rgba(110,231,255,.35);
}

.swl-page {
  color: var(--text);
  background: var(--bg);
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  max-width: 1200px;
  margin: 0 auto;
}

.swl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.swl-title {
  font-size: 18px;
  font-weight: 600;
}

.swl-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.swl-auth button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 600;
  cursor: pointer;
}

.swl-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 18px;
}

.swl-card {
  flex: 0 1 320px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}

.swl-card:hover,
.swl-card:focus-within {
  transform: scale(1.045);
  border-color: var(--ring);
  box-shadow: 0 14px 48px rgba(0,0,0,.45), 0 0 0 4px var(--ring);
}

.swl-badge {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.swl-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.swl-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.swl-actions {
  display: flex;
  gap: 8px;
}

.swl-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.swl-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.2);
}

.swl-checkout {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
}

.swl-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.swl-label {
  font-size: 12px;
  color: var(--muted);
}

.swl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.swl-muted {
  color: var(--muted);
  font-size: 12px;
}

.swl-led {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #444;
}

.swl-led.on {
  background: #36f483;
  box-shadow: 0 0 12px rgba(54,244,131,.7);
}

.swl-foot {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* Login Panel Styles */
.swl-login {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
}

.swl-login-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.swl-input {
  width: 320px;
  max-width: 95%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: #111;
  color: #fff;
  display: block;
}

.swl-login-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.swl-login-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 700;
  cursor: pointer;
}

.swl-link {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.swl-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
  width: auto;
  min-width: 220px;
  max-width: 280px;
  margin: 0 auto;
}

.swl-google svg {
  width: 18px;
  height: 18px;
}

/* Legacy V2 Pricing Page - Dark Mode - Matching WordPress Block Design */
.sp-pricing-v2 {
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
  padding: 70px 40px 7rem;
  max-width: 1260px;
  margin: 0 auto;
}

/* Header Section */
.sp-pricing-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
}

.sp-pricing-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 3px 12px;
  margin-bottom: 20px;
  background: #0a0a0a;
}

.sp-pricing-badge h5 {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.sp-pricing-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 20px;
  text-align: center;
}

.sp-pricing-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Pricing Columns Layout */
.sp-pricing-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.sp-pricing-column {
  display: flex;
  flex-direction: column;
}

/* Pricing Cards */
.sp-pricing-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sp-pricing-card.sp-featured {
  background: #000000;
  border: 1px solid #A554FD;
  border-radius: 6px;
}

/* Price Header */
.sp-price-header {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 30px;
}

.sp-price-amount {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.sp-price-period {
  color: #ffffff;
  font-size: 16px;
  margin: 0 0 4px 0;
  padding-left: 4px;
}

/* Plan Name */
.sp-plan-name {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0;
  line-height: 1.2;
}

/* Description */
.sp-plan-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Button Wrapper */
.sp-button-wrapper {
  margin: 28px 0 20px;
}

.sp-pricing-v2 .sp-btn {
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.sp-pricing-v2 .sp-btn:hover {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.sp-pricing-v2 .sp-btn-featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: #ffffff;
}

.sp-pricing-v2 .sp-btn-featured:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: scale(1.02);
}

/* Features List */
.sp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sp-features-list li {
  color: #ffffff;
  font-size: 14px;
  padding: 12px 0;
  margin: 0;
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.sp-features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #A554FD;
  font-weight: bold;
  font-size: 16px;
}

/* Footer Message */
.sp-pricing-footer {
  max-width: 840px;
  margin: 70px auto 0;
  text-align: center;
}

.sp-pricing-footer p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.sp-pricing-v2 .sp-muted {
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .sp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .sp-pricing-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sp-pricing-v2 {
    padding: 40px 20px 4rem;
  }
  
  .sp-pricing-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .sp-pricing-title {
    font-size: 32px;
  }
  
  .sp-price-amount {
    font-size: 36px;
  }
}

/* Inline Checkout - Dark Mode */
.sp-checkout-inline {
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
  padding: 40px 20px;
}

.sp-checkout-inline .sp-title {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 30px;
}

.sp-checkout-summary {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sp-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
}

.sp-summary-row:last-child {
  border-bottom: none;
}

.sp-summary-row strong {
  color: #ffffff;
  font-size: 16px;
}

.sp-checkout-inline .sp-muted {
  color: #999;
}

.sp-checkout-inline .sp-btn {
  background: #007bff;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
}

.sp-checkout-inline .sp-btn:hover {
  background: #0056b3;
}

#paddleContainer {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .sp-pricing-v2 .sp-title {
    font-size: 24px;
  }
  
  .sp-card-price {
    font-size: 28px;
  }
}

/* ─────────────────────────────────────────────────────────────────
   Contact Form Styles
   ───────────────────────────────────────────────────────────────── */

.sp-contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.sp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sp-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sp-contact-field label {
  font-size: 14px;
  font-weight: 500;
  color: #e6e8eb;
}

.sp-required {
  color: #f87171;
}

.sp-textarea {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(94, 123, 255, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  color: #e6e8eb;
  font-size: 15px;
  width: 100%;
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.sp-textarea:focus {
  outline: none;
  border-color: #78bfff;
  box-shadow: 0 0 0 3px rgba(120,191,255,0.25);
}

/* Form status messages */
.sp-contact-status {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}

.sp-contact-success {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #4ade80;
}

.sp-contact-error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #f87171;
}

/* Input error state */
.sp-input-error,
.sp-textarea.sp-input-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2) !important;
}

/* Field-level error message */
.sp-field-error {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
}

/* Honeypot field - visually hidden but accessible to bots */
.sp-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* reCAPTCHA notice */
.sp-recaptcha-notice {
  font-size: 12px;
  color: rgba(230, 232, 235, 0.6);
  text-align: center;
  margin-top: 12px;
}

.sp-recaptcha-notice a {
  color: #6ee7ff;
}

.sp-recaptcha-notice a:hover {
  color: #9ef3ff;
}

/* Contact form row layout */
.sp-contact-row {
  display: flex;
  gap: 16px;
}

.sp-contact-half {
  flex: 1;
  min-width: 0;
}

/* Select styling */
.sp-select {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(94, 123, 255, 0.35);
  border-radius: 12px;
  padding: 12px 16px;
  color: #e6e8eb;
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e6e8eb' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  transition: border-color .2s, box-shadow .2s;
}

.sp-select:focus {
  outline: none;
  border-color: #78bfff;
  box-shadow: 0 0 0 3px rgba(120,191,255,0.25);
}

.sp-select option {
  background: #0a0e14;
  color: #e6e8eb;
}

/* Field hint text */
.sp-field-hint {
  font-size: 12px;
  color: rgba(230, 232, 235, 0.5);
  margin-top: 4px;
}

/* Form notice */
.sp-form-notice {
  font-size: 12px;
  color: rgba(230, 232, 235, 0.5);
  margin-top: 8px;
}

/* Contact form responsive */
@media (max-width: 640px) {
  .sp-contact-wrap {
    padding: 16px;
    max-width: 100%;
  }
  
  .sp-contact-form {
    gap: 14px;
  }
  
  .sp-contact-row {
    flex-direction: column;
    gap: 14px;
  }
  
  .sp-contact-half {
    width: 100%;
  }
}


