/* ===============================================
   Terms of Service - SnTHostings (OPTIMIZED)
   Debloated - Only Active Classes
================================================ */

/* ========== Variables ========== */
:root {
  --cta: #ff6a00;
  --cta-hover: #e35a00;
  --cta-light: #ff8c3c;
  --text: #0b1b2b;
  --muted: #5b6b7a;
  --bg: #FCFEFF;
  --border: #e6edf3;
  --success: #4caf50;
  --info: #2196f3;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --background-width: 1500px;
}

/* ========== Reset ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== Background Container ========== */
.background-container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px 40px;
  z-index: 1;
}

.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--background-width);
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(to right, #FCFEFF 0%, #ffe8cc 50%, #FCFEFF 100%),
    linear-gradient(to bottom, #ffe3d3 0%, #fff 15%, #fff 100%);
  z-index: -1;
  border-radius: 0 0 60px 60px;
}

.background-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 99vw;
  height: 120px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent 0%, #FDEFDC 100%);
  z-index: -1;
  pointer-events: none;
}

.background-container > * {
  position: relative;
  z-index: 1;
}

/* ========== Container ========== */
.tos-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Hero Section ========== */
.tos-hero {
  position: relative;
  background: transparent;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: visible;
  margin-bottom: 40px;
}

.tos-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: #fff;
  border: 2px solid var(--cta);
  border-radius: 50px;
  color: var(--cta);
  font-size: 0.85em;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.tos-hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.25);
}

.badge-icon {
  font-size: 1.3em;
}

.tos-hero-title {
  font-size: 3.8em;
  margin: 0 0 25px 0;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.tos-hero-title .highlight {
  color: var(--cta);
  position: relative;
  display: inline-block;
}

.tos-hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -2%;
  width: 104%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 8'%3E%3Cpath d='M2,4 Q125,2 250,4 T498,4' stroke='%23ff8c3c' stroke-width='4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

.tos-hero-subtitle {
  font-size: 1.3em;
  color: #4a4a4a;
  margin: 0 auto 40px;
  font-weight: 400;
  max-width: 700px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.tos-hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tos-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95em;
  font-weight: 600;
  padding: 14px 26px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.tos-meta-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.meta-icon {
  font-size: 1.4em;
}

/* ========== Quick Navigation ========== */
.tos-nav-section {
  background: transparent;
  padding: 0 20px 50px;
  margin-bottom: 40px;
}

.tos-quick-nav {
  max-width: 1000px;
  margin: 0 auto;
}

.tos-quick-nav h3 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 35px;
  color: var(--text);
  font-weight: 700;
}

.tos-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: #fff;
  border: 3px solid #e5e7eb;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 106, 0, 0.25);
  border-color: var(--cta);
  color: var(--text);
}

.nav-icon {
  font-size: 2.5em;
  filter: drop-shadow(0 2px 4px rgba(255, 106, 0, 0.2));
}

.nav-text {
  font-weight: 600;
  font-size: 0.95em;
}

/* ========== Main Content ========== */
.tos-main {
  background: transparent;
  padding: 0 20px 60px;
  position: relative;
}

.tos-main > .tos-container {
  position: relative;
  z-index: 1;
}

/* ========== Contact Banner ========== */
.tos-contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #90caf9;
  border-radius: 20px;
  padding: 28px 35px;
  margin-bottom: 50px;
  box-shadow: 0 8px 24px rgba(33, 150, 243, 0.15);
  gap: 25px;
  flex-wrap: wrap;
}

.contact-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 250px;
}

.tos-contact-icon {
  font-size: 3em;
  flex-shrink: 0;
}

.tos-contact-text strong {
  font-size: 1.2em;
  color: #0d47a1;
  display: block;
  margin-bottom: 5px;
}

.tos-contact-text p {
  margin: 0;
  color: #1565c0;
  font-size: 0.95em;
}

.btn-contact {
  padding: 14px 32px;
  background: #fff;
  color: #0d47a1;
  border: 2px solid #0d47a1;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  font-size: 1em;
  white-space: nowrap;
}

.btn-contact:hover {
  background: #0d47a1;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

/* ========== Sections ========== */
.tos-section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #f5f0e8;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--cta), #ff8b1f);
  border-radius: 2px;
}

.section-icon {
  font-size: 2.5em;
  filter: drop-shadow(0 2px 6px rgba(255, 106, 0, 0.3));
}

.section-header h2 {
  font-size: 2.2em;
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

/* ========== Content Cards ========== */
.tos-content-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 3px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tos-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 106, 0, 0.15);
  border-color: rgba(255, 106, 0, 0.3);
}

.tos-content-card h3 {
  font-size: 1.6em;
  color: var(--text);
  margin: 35px 0 20px 0;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

.tos-content-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, var(--cta), var(--cta-light));
  border-radius: 3px;
}

.tos-content-card h3:first-child {
  margin-top: 0;
}

.tos-content-card h4 {
  font-size: 1.2em;
  color: var(--text);
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.tos-content-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.tos-content-card ul {
  margin: 15px 0 20px 0;
  padding-left: 25px;
}

.tos-content-card li {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 10px;
  font-size: 1.02em;
}

.tos-content-card li strong {
  color: var(--text);
  font-weight: 600;
}

.tos-content-card a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.tos-content-card a:hover {
  color: var(--cta-hover);
  border-bottom-color: var(--cta-hover);
}

/* ========== Info Boxes ========== */
.tos-highlight-box {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe0b2 100%);
  border: 2px solid #ffb74d;
  border-radius: 16px;
  padding: 22px 28px;
  margin: 25px 0;
  color: #e65100;
  font-size: 1.02em;
  line-height: 1.7;
}

.tos-highlight-box strong {
  color: #bf360c;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
}

.tos-info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #90caf9;
  border-radius: 16px;
  padding: 22px 28px;
  margin: 25px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  font-size: 2.2em;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(33, 150, 243, 0.3));
}

.info-content {
  flex: 1;
}

.info-content strong {
  color: #0d47a1;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.info-content p {
  color: #1565c0;
  margin-bottom: 12px;
  line-height: 1.7;
}

.info-content ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.info-content li {
  color: #1976d2;
  line-height: 1.8;
  margin-bottom: 8px;
}

.tos-warning-box {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #ef9a9a;
  border-radius: 16px;
  padding: 22px 28px;
  margin: 25px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.warning-icon {
  font-size: 2.2em;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(244, 67, 54, 0.3));
}

.warning-content {
  flex: 1;
}

.warning-content strong {
  color: #c62828;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.warning-content p {
  color: #d32f2f;
  margin-bottom: 12px;
  line-height: 1.7;
}

.warning-content ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}

.warning-content li {
  color: #e53935;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ========== Prohibited Grid ========== */
.tos-prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.prohibited-category {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 16px;
  padding: 25px;
  transition: var(--transition);
}

.prohibited-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.15);
  border-color: var(--cta);
}

.prohibited-category h4 {
  font-size: 1.15em;
  margin: 0 0 18px 0;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prohibited-category ul {
  margin: 0;
  padding-left: 20px;
}

.prohibited-category li {
  font-size: 0.95em;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ========== Chargeback Box ========== */
.tos-chargeback-box {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  border: 2px solid #f48fb1;
  border-radius: 16px;
  padding: 28px;
  margin: 25px 0;
}

.tos-chargeback-box p {
  color: #c2185b;
  margin-bottom: 15px;
}

.tos-chargeback-box strong {
  color: #880e4f;
  font-size: 1.1em;
}

.tos-chargeback-box ul {
  margin: 15px 0;
  padding-left: 25px;
}

.tos-chargeback-box li {
  color: #d81b60;
  margin-bottom: 10px;
  line-height: 1.7;
}

.small-text {
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.9;
  margin-top: 12px;
}

/* ========== SLA Boxes ========== */
.sla-guarantee-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 2px solid #81c784;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 30px;
}

.sla-guarantee-box h3 {
  color: #2e7d32;
  margin-top: 0;
  padding-left: 0;
  font-size: 1.7em;
  margin-bottom: 18px;
}

.sla-guarantee-box h3::before {
  display: none;
}

.sla-guarantee-box p {
  color: #388e3c;
  margin-bottom: 15px;
}

.sla-guarantee-box ul {
  margin: 15px 0 0 0;
  padding-left: 25px;
}

.sla-guarantee-box li {
  color: #43a047;
  margin-bottom: 8px;
}

.sla-terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0 35px 0;
}

.sla-term-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.sla-term-item:hover {
  border-color: var(--cta);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.1);
  transform: translateY(-3px);
}

.term-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cta), var(--cta-light));
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.sla-term-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98em;
}

/* ========== Refund Boxes ========== */
.refund-guarantee-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 2px solid #64b5f6;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 30px;
}

.refund-guarantee-box h3 {
  color: #1565c0;
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 15px;
}

.refund-guarantee-box h3::before {
  display: none;
}

.refund-guarantee-box p {
  color: #1976d2;
  margin-bottom: 12px;
}

.refund-guarantee-box .small-text {
  font-size: 0.9em;
  font-style: italic;
  margin-top: 15px;
}

.refund-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.refund-eligible,
.refund-not-eligible {
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}

.refund-eligible {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 2px solid #81c784;
}

.refund-not-eligible {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #ef9a9a;
}

.refund-eligible:hover,
.refund-not-eligible:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.refund-eligible h4 {
  color: #2e7d32;
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 20px;
}

.refund-not-eligible h4 {
  color: #c62828;
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 20px;
}

.refund-eligible ul {
  margin: 0;
  padding-left: 20px;
}

.refund-not-eligible ul {
  margin: 0;
  padding-left: 20px;
}

.refund-eligible li {
  color: #388e3c;
  line-height: 1.8;
  margin-bottom: 10px;
}

.refund-not-eligible li {
  color: #d32f2f;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ========== Resource Restrictions ========== */
.resource-restrictions {
  background: #f9fbfc;
  border-left: 4px solid var(--cta);
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}

.resource-restrictions p strong {
  color: var(--text);
  font-size: 1.1em;
  margin-bottom: 12px;
  display: block;
}

.resource-restrictions ul {
  margin: 10px 0 0 0;
  padding-left: 25px;
}

.resource-restrictions li {
  line-height: 1.8;
  margin-bottom: 10px;
}

/* ========== Liability Grid ========== */
.liability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.liability-item {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
  border: 2px solid #ffd699;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95em;
  transition: var(--transition);
}

.liability-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.15);
  border-color: var(--cta);
}

/* ========== Company Info Box ========== */
.company-info-box {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  border: 2px solid #ce93d8;
  border-radius: 18px;
  padding: 35px;
}

.company-info-box h3 {
  color: #6a1b9a;
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 25px;
  font-size: 1.8em;
}

.company-info-box h3::before {
  display: none;
}

.company-info-box p {
  color: #7b1fa2;
  margin-bottom: 20px;
  line-height: 1.9;
}

.company-info-box strong {
  color: #4a148c;
  font-size: 1.05em;
}

.company-info-box a {
  color: #8e24aa;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.company-info-box a:hover {
  color: #6a1b9a;
  border-bottom-color: #6a1b9a;
}

/* ========== Final CTA ========== */
.tos-final-cta {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c3c 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.tos-final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.tos-final-cta h3 {
  color: #fff;
  font-size: 2.5em;
  margin: 0 0 15px 0;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tos-final-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2em;
  margin: 0 0 35px 0;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary {
  background: #fff;
  color: var(--cta);
  border: none;
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--cta-hover);
}

.btn-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-cta-secondary:hover {
  background: #fff;
  color: var(--cta);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-arrow {
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* ========== Footer Note ========== */
.tos-footer-note {
  background: linear-gradient(135deg, #263238 0%, #37474f 100%);
  padding: 35px 20px;
  text-align: center;
  color: #eceff1;
  margin-top: 0;
  position: relative;
}

.tos-footer-note p {
  color: #eceff1;
  margin-bottom: 12px;
  font-size: 1em;
  line-height: 1.7;
}

.tos-footer-note strong {
  color: #fff;
  font-weight: 700;
}

.last-updated {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 15px;
  font-style: italic;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .tos-hero-title { font-size: 3em; }
  .section-header h2 { font-size: 1.9em; }
  .tos-content-card { padding: 35px; }
}

@media (max-width: 768px) {
  .tos-hero {
    padding: 60px 20px 50px;
  }
  
  .tos-hero-title { font-size: 2.3em; }
  .tos-hero-subtitle { font-size: 1.1em; }
  
  .tos-hero-meta {
    flex-direction: column;
    gap: 12px;
  }
  
  .tos-meta-item {
    width: 100%;
    justify-content: center;
  }
  
  .tos-nav-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .nav-card {
    padding: 25px 15px;
  }
  
  .nav-icon { font-size: 2em; }
  
  .tos-contact-banner {
    flex-direction: column;
    padding: 25px;
  }
  
  .contact-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-contact { width: 100%; }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .section-header h2 { font-size: 1.6em; }
  .tos-content-card { padding: 25px 20px; }
  .tos-content-card h3 { font-size: 1.4em; }
  
  .tos-prohibited-grid,
  .sla-terms-grid,
  .refund-policy-grid,
  .liability-grid {
    grid-template-columns: 1fr;
  }
  
  .tos-final-cta {
    padding: 40px 25px;
  }
  
  .tos-final-cta h3 { font-size: 2em; }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tos-hero-title { font-size: 1.9em; }
  .tos-hero-badge {
    font-size: 0.75em;
    padding: 8px 18px;
  }
  
  .section-icon { font-size: 2em; }
  .section-header h2 { font-size: 1.4em; }
  .tos-content-card { padding: 20px 15px; }
  
  .tos-info-box,
  .tos-warning-box {
    flex-direction: column;
    padding: 20px;
  }
  
  .info-icon,
  .warning-icon { font-size: 2em; }
  
  .tos-final-cta h3 { font-size: 1.7em; }
  .tos-final-cta p { font-size: 1em; }
}

/* ========== Selection & Accessibility ========== */
::selection {
  background: var(--cta-light);
  color: #fff;
}

::-moz-selection {
  background: var(--cta-light);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}