/* ================================================
   ROUNDS.ONE — UNIFIED LIGHT THEME
   ================================================ */

:root {
  /* Brand */
  --primary:       #336699;
  --primary-dark:  #28527a;
  --primary-light: #e8f0f8;
  --accent:        #0f9e72;
  --accent-dark:   #0b8461;
  --accent-light:  #e6f7f1;
  --accent-mid:    #d0f0e4;

  /* Backgrounds */
  --bg:            #f9fafb;
  --bg-white:      #ffffff;
  --card:          #ffffff;
  --card-alt:      #f3f4f6;

  /* Text */
  --text:          #0f2137;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;

  /* Borders */
  --border:        #e5e7eb;
  --border-strong: #d1d5db;

  /* Status */
  --danger:        #dc2626;
  --danger-light:  #fef2f2;
  --warning:       #d97706;
  --warning-light: #fff8ec;
  --success:       #0f9e72;

  /* Typography */
  --serif: 'Lora', Georgia, serif;
  --sans:  'DM Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ================================================
   RESET & BASE
   ================================================ */

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

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

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw, 2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

em { font-style: italic; color: var(--accent); }

p { color: var(--text-muted); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

/* ================================================
   NAVIGATION / HEADER
   ================================================ */

header, nav {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img { height: 40px; }

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--sans);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.nav-links a:hover { color: var(--accent); }

.mobile-login { display: none; }

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary,
.btn-main,
.nav-btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn-primary,
.btn-main {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
}

.nav-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-size: 0.875rem;
}

.cta-button {
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-primary:hover,
.btn-main:hover,
.nav-btn:hover,
.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,158,114,0.25);
  color: #ffffff;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  background: var(--bg-white);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(15,158,114,0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--serif);
  margin-bottom: 1.25rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--text);
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ================================================
   HERO TAG / SECTION TAG
   ================================================ */

.hero-tag,
.sec-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ================================================
   SECURITY / TRUST BADGES
   ================================================ */
.security-badges,
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.badge,
.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

.trust-badges span i { color: var(--accent); }

/* ================================================
   PHI NOTICE BANNER
   ================================================ */

.phi-banner {
  background: var(--warning-light);
  border-bottom: 1px solid #fde68a;
  padding: 0.85rem 0;
}

.phi-banner .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}

/* ================================================
   APP MOCKUP (hero right side)
   ================================================ */

.mockup {
  background: var(--text);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(15,33,55,0.12);
}

.mockup-header {
  background: var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.task-item {
  background: rgba(255,255,255,0.07);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid;
}

.task-highlight { border-left-color: #f59e0b; }
.task-medium    { border-left-color: var(--accent); }
.task-low       { border-left-color: var(--primary); }

.task-item span { color: #e2e8f0; font-size: 0.875rem; }

.priority {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
}

.priority-high   { background: #f59e0b; color: #0f172a; }
.priority-medium { background: var(--accent); color: #ffffff; }
.priority-low    { background: var(--primary); color: #ffffff; }

/* ================================================
   VIDEO WRAPPER (landing page)
   ================================================ */

.video-wrap {
  background: var(--text);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,33,55,0.15);
}

.video-wrap video {
  display: block;
  width: 100%;
}

.video-caption {
  background: var(--text);
  color: #9ca3af;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.75rem 1rem;
}

/* ================================================
   SECTIONS
   ================================================ */

.section,
.features,
.pricing,
.cta-section {
  padding: 5rem 0;
}

.section + .section,
section + section {
  border-top: 1px solid var(--border);
}

.section-bg { background: var(--bg-white); }

.section-title,
.sec-h {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-subtitle,
.sec-sub {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.section-title,
.section-subtitle {
  text-align: center;
}

/* ================================================
   TWO COLUMN LAYOUT
   ================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ================================================
   FEATURE CARDS
   ================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(15,158,114,0.1);
}

.feature-card h3 {
  font-family: var(--sans);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.check { color: var(--accent); margin-right: 0.5rem; }

/* ================================================
   PHONE MOCKUP
   ================================================ */

.phone-wrap { display: flex; justify-content: center; }

.phone {
  background: var(--bg-white);
  border-radius: 32px;
  border: 8px solid var(--text);
  overflow: hidden;
  max-width: 220px;
  box-shadow: 0 30px 80px rgba(15,33,55,0.2);
}

.phone img { display: block; width: 100%; }

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

/* ================================================
   PRICING
   ================================================ */

.pricing {
  background: var(--bg-white);
}

.pricing h2,
.pricing .section-title { text-align: center; }

.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 3rem;
}

.billing-option {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.55rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: var(--sans);
  transition: all 0.15s;
}

.billing-option.active {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.save-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: all 0.2s;
  position: relative;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(15,158,114,0.1);
  transform: translateY(-3px);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pricing-beds {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--serif);
  margin: 1rem 0 0.25rem;
}

.price-period {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-annual-note {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  min-height: 1.2em;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i { color: var(--accent); width: 18px; font-size: 0.75rem; }

.pricing-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.enterprise-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.enterprise-note a { color: var(--accent); }

/* Trust strip (landing page variant) */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
  background: var(--text);
  text-align: center;
}

.cta-section h2,
.cta-section .sec-h { color: #ffffff; }

.cta-section p { color: #9ca3af; margin-bottom: 2rem; }

/* ================================================
   STAT CARDS
   ================================================ */

.stat-card,
.statCard {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.stat-number { color: var(--text); font-size: 1.5rem; font-weight: 700; }
.stat-label  { color: var(--text-muted); font-size: 0.8rem; }

/* ================================================
   ALERTS & NOTIFICATIONS
   ================================================ */

.critical-alert {
  background: var(--danger-light);
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 1rem;
  color: var(--danger);
}

.notification-success { background: var(--accent-light); color: var(--accent); }
.notification-error   { background: var(--danger-light); color: var(--danger); }
.notification-warning { background: var(--warning-light); color: var(--warning); }

/* ================================================
   FORMS
   ================================================ */

input, textarea, select {
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.15s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,158,114,0.1);
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* ================================================
   FOOTER
   ================================================ */

footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float { animation: float 5s ease-in-out infinite; }

/* ================================================
   CONTENT PAGES (privacy, terms, contact, etc.)
   ================================================ */

.content-page .container {
  max-width: 1000px;
  padding: 2rem;
}

.content-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.content-page h2 {
  font-size: 1.3rem;
  margin: 1.75rem 0 1rem;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 600;
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.content-page ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-muted);
}

.content-page li { margin-bottom: 0.5rem; }

.last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  color: var(--accent-dark);
  gap: 0.75rem;
  text-decoration: none;
}

/* ================================================
   TRIAL PAGE
   ================================================ */

.hero-trial {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 1rem;
}

.hero-trial h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-trial h1 span { color: var(--accent); }

.hero-trial p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-badge {
  display: inline-block;
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.form-card .section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin: 1.5rem 0 1rem;
  font-family: var(--sans);
  text-align: left;
}

.form-card .section-title:first-of-type { margin-top: 0; }

.input-group { margin-bottom: 1.25rem; }

.required::after {
  content: " *";
  color: var(--danger);
}

.row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.row > * { flex: 1; }

.password-wrapper { position: relative; }

.password-wrapper input { padding-right: 4.5rem; }

.password-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.password-toggle:hover { background: var(--accent-light); }

button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1.5rem;
  font-family: var(--sans);
}

button[type="submit"]:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,158,114,0.25);
}

.alert {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.alert-error {
  background: var(--danger-light);
  border: 1px solid #fecaca;
  color: var(--danger);
}

.info-badge {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.7rem;
  margin-left: 0.5rem;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 340px;
}

.modal-content button {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
}

.success-container {
  text-align: center;
  padding: 2rem;
}

.success-icon { font-size: 4rem; margin-bottom: 1rem; }

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.success-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.login-button {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
}
/* Demo button - matches login button style */
.app-btn-demo {
    background: var(--accent);
    color: #ffffff !important;
    border-radius: 10px;
    padding: 8px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: none;
}

.app-btn-demo:hover {
    background: var(--accent);
    color: #ffffff !important;
    transform: none;
    box-shadow: none;
}


.app-btn-walkthrough {
    background: transparent !important;
    border: 2px solid #0f9e72 !important;
    color: #0f9e72 !important;
}

.app-btn-walkthrough:hover {
    background: #e6f7f1 !important;
    transform: translateY(-2px) !important;
}

.info-text {
  text-align: center;
  margin: 1rem auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 800px;
}

small {
  color: var(--text-muted);
  font-size: 0.7rem;
  display: block;
  margin-top: 0.25rem;
}

/* ================================================
   CHECKOUT PAGE
   ================================================ */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.order-summary {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.order-summary h2 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-family: var(--sans);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list { margin: 1.5rem 0; }

.feature-list h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--sans);
}

.feature-list ul { list-style: none; margin: 0; }

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li i { color: var(--accent); width: 20px; }

.plan-selector { margin: 1.5rem 0; }

.plan-selector label {
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.plan-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.plan-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.plan-card.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.plan-beds {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.plan-beds strong { color: var(--accent); font-size: 1rem; }

.plan-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
}

.plan-price small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: normal;
  display: inline;
  margin: 0;
}

.price-breakdown {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.checkout-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
}

.checkout-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-family: var(--sans);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.payment-methods { margin: 1.5rem 0; }

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 16px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-white);
}

.payment-option:hover { border-color: var(--primary); }

.payment-option.selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-icon { font-size: 2rem; width: 50px; }

.payment-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text);
}

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

.btn-pay {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  font-family: var(--sans);
}

.btn-pay:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,158,114,0.25);
}

.security-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero { padding: 3rem 0 2.5rem; }

  .nav-links { display: none; }
  .mobile-login { display: block; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .pricing-card.popular { transform: scale(1); }

  .trust-badges,
  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .billing-toggle { flex-wrap: wrap; }

  .cta-button { width: 100%; justify-content: center; }

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

  .section, .features, .pricing, .cta-section { padding: 3rem 0; }
}

  /* Trial & checkout responsive */
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .plan-cards { grid-template-columns: 1fr; }
  .row { flex-direction: column; gap: 0; }
  .row > * { margin-bottom: 1.25rem; }
  .row > *:last-child { margin-bottom: 0; }
  .form-card { padding: 1.25rem; }

/* ================================================
   CONTACT PAGE
   ================================================ */

body.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .container {
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.contact-page .logo {
  text-align: left;
  margin-bottom: 2rem;
}

.support-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.support-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: var(--sans);
}

.support-card p { color: var(--text-muted); margin: 0; }

.contact-page .form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
}

.contact-page .form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--text);
  font-family: var(--sans);
}

.contact-page .form-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.success-message {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent-dark);
}

.error-message {
  background: var(--danger-light);
  border: 1px solid #fca5a5;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--danger);
}

.contact-page footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border: none;
  background: none;
  padding: 0;
}

/* ================================================
   CONTENT PAGE CONTAINER OVERRIDE
   (privacy, terms, contact — max 1000px with inner padding)
   ================================================ */

.content-page .container,
.content-page header .container {
  max-width: 1000px;
  padding: 2rem;
}

/* ================================================
   TRIAL PAGE HERO OVERRIDE
   (small centered heading block, not the full hero)
   ================================================ */

.trial-page .hero,
.hero-trial {
  background: none;
  border: none;
  padding: 2rem 0 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trial-page .hero h1,
.hero-trial h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.trial-page .hero h1 span,
.hero-trial h1 span {
  color: var(--accent);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.trial-page .hero::before { display: none; }


/* ================================================
   DOWNLOAD PAGE (Android APK)
   ================================================ */

.hero-download {
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-light);
}

.hero-download h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text);
}

.hero-download h1 span {
    color: var(--accent);
}

.hero-download p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.download-card,
.signup-card {
    background: var(--card);
    border-radius: 32px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.android-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.version-info {
    background: var(--accent-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--accent);
}

.download-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.2rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.warning-box {
    background: var(--danger-light);
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--danger);
}

.instructions {
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.instructions h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.instructions ol {
    padding-left: 1.25rem;
    color: var(--text-muted);
}

.instructions li {
    margin-bottom: 0.75rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* ================================================
   CHECKOUT PAGE (already mostly there, just fixes)
   ================================================ */

/* Note: Your checkout styles are already good.
   Just add these missing overrides: */

.plan-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.plan-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.plan-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.popular-badge {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.billing-toggle {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0.5rem;
    background: var(--bg);
    border-radius: 40px;
}

.billing-option {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.billing-option.active {
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 158, 114, 0.1);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 16px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-white);
}

.payment-option:hover {
    border-color: var(--primary);
}

.payment-option.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent);
}

.payment-icon {
    font-size: 2rem;
    width: 50px;
}

.payment-info {
    flex: 1;
}

.payment-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text);
}

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

/* ================================================
   RESPONSIVE ADDITIONS
   ================================================ */

@media (max-width: 768px) {
    .hero-download h1 {
        font-size: 2rem;
    }

    .hero-download p {
        font-size: 1rem;
    }

    .download-card,
    .signup-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .download-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .billing-toggle {
        flex-wrap: wrap;
    }

    .payment-option {
        flex-wrap: wrap;
    }

    .payment-icon {
        width: 40px;
        font-size: 1.5rem;
    }
}
//===========app=============//

   .app-btn-web {
    background: #0f9e72;
    color: #fff;
}

.app-btn-web:hover {
    background: #0b8461;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,158,114,0.25);
    color: white;
}

.app-btn-ios {
    background: #0f2137;
    color: #fff;
}

.app-btn-ios:hover {
    background: #09152a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,33,55,0.25);
    color: white;
}

.app-btn-android {
    background: #3ddc84;
    color: #0f2137;
}

.app-btn-android:hover {
    background: #2bbc6e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,220,132,0.25);
    color: #0f2137;
}

.app-btn-apk {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.app-btn-apk:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: #0f2137;
}

/* ================================================
   EMAIL VERIFICATION PAGE
   ================================================ */

.verify-container {
    max-width: 900px;
    margin: 2rem auto;
    background: var(--card);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 40px 32px;
}

.verify-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.verify-header .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.verify-header .tagline {
    font-size: 14px;
    color: var(--text-muted);
    border-left: 1px solid var(--border);
    padding-left: 12px;
}

.verify-emoji {
    font-size: 56px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 20px;
}

.verify-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text);
    text-align: center;
}

.verify-subtitle {
    font-size: 18px;
    color: var(--text);
    text-align: center;
    margin: 0 0 30px 0;
}

.verify-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 24px;
    margin: 30px 0;
    border: 1px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.verify-card-title {
    color: var(--accent);
    margin: 0 0 20px 0;
    font-size: 20px;
    text-align: center;
}

.verify-info-box {
    background: var(--bg);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid var(--border);
}

.verify-info-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verify-info-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent);
    font-family: monospace;
    margin-top: 8px;
}

.verify-info-value-sm {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    margin-top: 8px;
}

.verify-detail-row {
    background: var(--accent-light);
    border-radius: 12px;
    padding: 16px;
    margin-top: 15px;
}

.verify-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
    color: var(--text);
}

.verify-detail-item:first-child {
    margin-top: 0;
}

.verify-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.verify-footer-text {
    color: var(--text-muted);
    font-size: 12px;
}

.verify-footer-text a {
    color: var(--accent);
}

.manual-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.manual-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.small-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}


        /* Page-specific styles */
        .trial-wrap {
            min-height: calc(100vh - 80px);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 3rem 1rem 4rem;
        }

        .trial-inner {
            width: 100%;
            max-width: 480px;
        }

        .trial-heading {
            text-align: center;
            margin-bottom: 2rem;
        }

        .trial-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e6f7f1;
            color: #0f9e72;
            border: 1px solid #d0f0e4;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-family: 'DM Sans', sans-serif;
        }

        .trial-heading h1 {
            font-family: 'Lora', Georgia, serif;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 700;
            color: #0f2137;
            margin-bottom: 0.5rem;
        }

        .trial-heading h1 em {
            font-style: italic;
            color: #0f9e72;
        }

        .trial-heading p {
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* Form card */
        .trial-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(15,33,55,0.07);
        }

        .field-group {
            margin-bottom: 1.25rem;
        }

        .field-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.4rem;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .field-group input {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            color: #0f2137;
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: border-color 0.15s, box-shadow 0.15s;
        }

        .field-group input:focus {
            outline: none;
            border-color: #0f9e72;
            box-shadow: 0 0 0 3px rgba(15,158,114,0.1);
            background: #ffffff;
        }

        .field-group input::placeholder { color: #9ca3af; }

        .field-hint {
            font-size: 0.75rem;
            color: #9ca3af;
            margin-top: 0.35rem;
            font-family: 'DM Sans', sans-serif;
        }

        /* Password wrapper */
        .pw-wrap { position: relative; }
        .pw-wrap input { padding-right: 4.5rem; }
        .pw-toggle {
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #0f9e72;
            font-size: 0.78rem;
            font-weight: 600;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
            padding: 0.25rem 0.5rem;
        }

        /* Floors field */
        .floors-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .floors-row input {
            width: 80px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .floors-note {
            flex: 1;
            font-size: 0.8rem;
            color: #6b7280;
            font-family: 'DM Sans', sans-serif;
            line-height: 1.4;
        }

        /* Divider */
        .field-divider {
            height: 1px;
            background: #f3f4f6;
            margin: 1.5rem 0;
        }

        /* Submit button */
        .trial-submit {
            width: 100%;
            padding: 0.95rem;
            background: #0f9e72;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            transition: background 0.15s, transform 0.1s;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .trial-submit:hover {
            background: #0b8461;
            transform: translateY(-1px);
        }

        .trial-submit:disabled {
            background: #9ca3af;
            transform: none;
            cursor: not-allowed;
        }

        /* Trust line below button */
        .trust-line {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .trust-line span {
            font-size: 0.72rem;
            color: #9ca3af;
            display: flex;
            align-items: center;
            gap: 4px;
            font-family: 'DM Sans', sans-serif;
        }

        .trust-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #0f9e72;
        }

        /* Error alert */
        .trial-error {
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 10px;
            padding: 0.875rem 1rem;
            color: #dc2626;
            font-size: 0.875rem;
            margin-bottom: 1.25rem;
            font-family: 'DM Sans', sans-serif;
        }

        /* Terms line */
        .terms-line {
            text-align: center;
            font-size: 0.72rem;
            color: #9ca3af;
            margin-top: 1.25rem;
            font-family: 'DM Sans', sans-serif;
        }

        .terms-line a { color: #6b7280; text-decoration: underline; }

        /* ── SUCCESS STATE ── */
        .success-wrap {
            text-align: center;
            padding: 1rem 0;
        }

        .success-icon-wrap {
            width: 72px;
            height: 72px;
            background: #e6f7f1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .success-wrap h2 {
            font-family: 'Lora', Georgia, serif;
            font-size: 1.6rem;
            color: #0f2137;
            margin-bottom: 0.75rem;
        }

        .success-wrap p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .success-wrap strong { color: #0f2137; }

    
        /* Floor modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 1rem;
        }

        .modal-box {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.75rem;
            max-width: 380px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(15,33,55,0.15);
        }

        .modal-box h3 {
            font-family: 'Lora', Georgia, serif;
            font-size: 1.2rem;
            color: #0f2137;
            margin-bottom: 1rem;
        }

        .modal-box p, .modal-box li {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .modal-box ul { padding-left: 1.25rem; margin-bottom: 1rem; }

        .modal-close {
            width: 100%;
            padding: 0.75rem;
            background: #0f9e72;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: pointer;
            margin-top: 0.5rem;
        }

        @media (max-width: 520px) {
            .trial-card { padding: 1.5rem; }
            .trial-wrap { padding: 2rem 1rem 3rem; }
        }

