/* ============================================
   PRACTICE VAULT - CORE STYLES
   ============================================ */

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

html {
  font-size: 16px;
}

/* CSS VARIABLES */
:root {
  --accent: #06b3fd;
  --accent-hover: #0599dc;
  --text-primary: #1a1a1a;
  --text-secondary: #6c757d;
  --surface: #fff;
  --surface-hover: #f8f9fa;
  --bg: #f8f9fa;
  --border: #e9ecef;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Hide body until auth checked */
html[data-protected="true"] body {
  opacity: 0;
  transition: opacity 0.2s;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: var(--text-primary);
  line-height: 1.6;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ANIMATIONS */
@keyframes gradient-shift {
  0% { background-position: 0% center }
  100% { background-position: 200% center }
}

@keyframes slideIn {
  from { transform: translateX(400px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(400px); opacity: 0; }
}

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

@keyframes rotateHint {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(-90deg); }
  100% { transform: rotate(0deg); }
}

/* ============================================
   GLOBAL PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #16213e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
   UNIFIED LOADING SPINNER
   ============================================ */
@keyframes loading-spin {
  to { transform: rotate(360deg); }
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(6, 179, 253, 0.2);
  border-top-color: #06b3fd;
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
}

/* Inline loading container */
.loading-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  gap: 16px;
}

.loading-text {
  color: var(--text-secondary);
  font-size: var(--text-body);
  font-family: 'Inter', sans-serif;
}

/* ============================================
   UNIFIED HERO SYSTEM
   ============================================ */
.hero {
  position: relative;
  background: #1a1a2e;
  padding: 100px 20px 80px;
  margin-bottom: 48px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b3fd, #38bdf8, #06b3fd);
  background-size: 200% auto;
  animation: gradient-shift 3s linear infinite;
  z-index: 3;
}

.hero-banner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(6,179,253,0.1) 0%, transparent 50%);
}

/* Background variants */
.hero-banner[data-bg="home"] { background-image: url('/assets/pv-home.webp'); }
.hero-banner[data-bg="groove"] { background-image: url('/assets/groove-studies.webp'); }
.hero-banner[data-bg="fills"] { background-image: url('/assets/fill-studies.webp'); }
.hero-banner[data-bg="sticks"] { background-image: url('/assets/stick-studies.webp'); }
.hero-banner[data-bg="kicks"] { background-image: url('/assets/kick-studies.webp'); }
.hero-banner[data-bg="reading"] { background-image: url('/assets/reading.webp'); }
.hero-banner[data-bg="members"] { background-image: url('/assets/members.webp'); }

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: var(--heading-hero-desktop);
  font-weight: 400;
  background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(6,179,253,0.1);
  border: 1px solid rgba(6,179,253,0.3);
  border-radius: 12px;
  color: #38bdf8;
  font-size: var(--heading-badge);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 40px;
  }
  
  .hero-title {
    font-size: var(--heading-hero-mobile);
  }
}

/* MAIN CONTAINERS */
.container,
.contact-container,
.create-container,
.reset-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.groove-container {
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 20px 60px;
}

.contact-container,
.create-container,
.reset-container {
  max-width: 800px;
  padding: 0 20px 80px;
}

/* CARDS */
.card,
.contact-card,
.reset-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.card {
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 0px;
}

.contact-card,
.reset-card {
  max-width: 600px;
  margin: 0 auto;
}

.reset-card {
  max-width: 480px;
}

.card-text {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* CARD HEADERS */
.contact-header,
.create-header,
.reset-header {
  text-align: center;
  margin-bottom: 32px;
}

.contact-header h2,
.create-header h2,
.reset-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: var(--heading-section);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-header p,
.create-header p,
.reset-header p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-ui);
  color: var(--text-secondary);
  margin: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-size: var(--text-ui);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #06b3fd, #38bdf8);
  color: white;
  box-shadow: 0 4px 12px rgba(6,179,253,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6,179,253,0.4);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #f8f9fa;
  border-color: var(--accent);
}

.btn-login {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: var(--text-ui);
  transition: all 0.2s;
}

.btn-login:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 179, 253, 0.3);
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FORMS */
.contact-form label,
.reset-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.contact-form input,
.contact-form textarea,
.reset-form input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: var(--text-ui);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.reset-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 179, 253, 0.1);
}

.contact-form button,
.reset-form button {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: var(--text-ui);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.contact-form button:hover,
.reset-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 179, 253, 0.3);
}

.contact-form button:disabled,
.reset-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-size: var(--text-small);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* CONTACT INFO SECTION */
.contact-info {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: var(--text-large);
  color: var(--accent);
  margin-top: 2px;
}

.info-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.info-content p {
  font-size: var(--text-ui);
  color: var(--text-secondary);
  margin: 0;
}

.info-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.info-content a:hover {
  text-decoration: underline;
}

/* SUCCESS/ERROR STATES */
.success-message {
  display: none;
  text-align: center;
}

.success-message.show {
  display: block;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.success-message h3 {
  font-family: 'Oswald', sans-serif;
  font-size: var(--heading-section);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.success-message p {
  font-size: var(--text-ui);
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.error-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 10px;
  color: #c00;
  font-size: var(--text-ui);
  margin-bottom: 20px;
}

.error-message.show {
  display: block;
}

/* LOADING STATE */
.loading {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
}

.loading.show {
  display: block;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

/* TIMELINE */
.timeline-item {
  position: relative;
  padding-left: 50px;
  padding-bottom: 40px;
  border-left: 3px solid #e0e0e0;
}

.timeline-item:last-child {
  border-left: 3px solid transparent;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #06b3fd;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #06b3fd;
}

.timeline-date {
  font-size: var(--text-tiny);
  color: #999;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-title {
  font-size: var(--text-large);
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: var(--text-small);
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #e8f9f3;
  color: #059669;
  border-radius: 14px;
  font-size: var(--text-micro);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.timeline-badge.fix {
  background: #fef3c7;
  color: #92400e;
}

.timeline-badge.improvement {
  background: #dbeafe;
  color: #1e40af;
}


/* ============================================
   TOPIC GRID STYLES
   ============================================ */


/* Pathway Card Wrapper */
.pathway {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.pathway:last-child {
  margin-bottom: 0;
}


/* Pathway Header with Image Banner */
.pathway-header {
  position: relative;
   border-radius: 15px 15px 0 0;
  height: 180px;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  overflow: hidden;
}

.pathway-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  z-index: 1;
}

/* Background image variants */
.pathway-header.groove-bg {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%), url('/assets/groove-studies.webp');
}

.pathway-header.fill-bg {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%), url('/assets/fill-studies.webp');
}

.pathway-header.stick-bg {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%), url('/assets/stick-studies.webp');
}

.pathway-header.kick-bg {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%), url('/assets/kick-studies.webp');
}

.pathway-header.reading-bg {
  background-image: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%), url('/assets/reading.webp');
}

.pathway-header-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.pathway-header .pathway-title {
  font-size: var(--heading-section);
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pathway-header .pathway-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-ui);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Topic Count Badge */
.pathway-stats {
  position: relative;
  z-index: 2;
  text-align: center;
}

.topic-count {
  display: inline-block;
  background: rgba(6,179,253,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6,179,253,0.4);
  padding: 12px 20px;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.topic-count-number {
  font-size: 28px;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  color: #38bdf8;
}

.pathway-content {
  padding: 32px;
}

/* Topic Grid */
.pathway-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  flex: 1;
}

.topic-card {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-height: 94px;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,179,253,0.05), rgba(56,189,248,0.05));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.topic-card:hover::before {
  opacity: 1;
}

.topic-card:hover {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(6,179,253,0.12);
  transform: translateY(-3px);
}

.topic-card.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.topic-card.locked:hover {
  background: var(--surface-hover);
  border-color: var(--border);
  box-shadow: none;
  transform: translateY(0);
}

.topic-card.locked::before {
  display: none;
}

.topic-card .topic-name {
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
}

.topic-card:hover .topic-name {
  color: var(--accent);
}

.topic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.topic-lessons {
  font-size: var(--text-tiny);
  color: var(--text-secondary);
  font-weight: 500;
}

.level-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.level-badge {
  font-size: 8px;
  padding: 3px 4px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  transition: all 0.2s ease;
}

.level-badge.beg {
  background: rgba(6, 179, 253, 0.1);
  color: #0891b2;
  border: 1px solid rgba(6, 179, 253, 0.25);
}

.level-badge.int {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.level-badge.adv {
  background: rgba(30, 58, 138, 0.15);
  color: #1e3a8a;
  border: 1px solid rgba(30, 58, 138, 0.3);
}

.topic-card:hover .level-badge.beg {
  background: rgba(6, 179, 253, 0.15);
  border-color: rgba(6, 179, 253, 0.4);
}

.topic-card:hover .level-badge.int {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

.topic-card:hover .level-badge.adv {
  background: rgba(30, 58, 138, 0.2);
  border-color: rgba(30, 58, 138, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .pathway-topics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pathway-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    height: auto;
    padding: 28px 32px;
  }
  
  .pathway-stats {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .pathway-header {
    padding: 24px;
  }
  
  .pathway-content {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .pathway-header {
    padding: 20px;
  }
  
  .pathway-content {
    padding: 20px;
  }
}


Replace the CSS I just gave you with THIS complete version:
css/* ============================================
   OLD PATHWAY LAYOUT (for backwards compatibility)
   ============================================ */

.pathway {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.pathway:last-child {
  margin-bottom: 0;
}

.pathway-image {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.pathway-image .pathway-title {
  font-size: var(--heading-section);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
}

.pathway-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}

.pathway-desc {
  margin: 0 0 20px 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pathway-topics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.pathway-topic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
}

.pathway-topic:last-child {
  border-bottom: none;
}

.pathway-topic:hover {
  padding-left: 8px;
  color: var(--accent);
}

.pathway-topic.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.pathway-topic.locked:hover {
  padding-left: 0;
  color: inherit;
}

.topic-left .topic-name {
  font-size: var(--text-body);
  font-weight: 600;
  margin: 0;
}

.topic-right {
  font-size: var(--text-tiny);
  color: var(--text-secondary);
}

/* Responsive for old layout */
@media (max-width: 768px) {
  .pathway {
    grid-template-columns: 1fr;
  }
  
  .pathway-image {
    min-height: 200px;
  }
}




/* GROOVESCRIBE SPECIFIC */
.groove-embed-wrap {
  background: #36363a;
  border-radius: 40px;
  border: 0px solid #fff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  padding: 20px;
}

.groove-iframe {
  width: 100%;
  height: 780px;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  display: block;
}

#gs-rotate-overlay {
  position: fixed;
  inset: 0;
  background: #151515;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999999;
  text-align: center;
  color: #fff;
  font-family: system-ui, sans-serif;
  padding: 20px;
}

.gs-rotate-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.gs-rotate-text {
  font-size: var(--text-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.gs-rotate-text span {
  display: block;
  font-size: var(--text-body);
  opacity: 0.75;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

#rotate-phone {
  animation: rotateHint 2.4s ease-in-out infinite;
  transform-origin: center center;
}

@media screen and (max-width: 900px) and (orientation: portrait) {
  #gs-rotate-overlay {
    display: flex;
  }
}

/* HIDDEN UTILITY */
.hidden {
  display: none;
}

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

@media (max-width: 768px) {
  .timeline-item {
    padding-left: 35px;
  }
  
  .timeline-dot {
    left: -9px;
    width: 16px;
    height: 16px;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #06b3fd;
  }
  
  .contact-card,
  .reset-card {
    padding: 32px;
  }
  
  .groove-iframe {
    height: 600px;
  }
}

@media (max-width: 600px) {
  .card {
    padding: 32px 24px;
    margin-top: -10px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-card,
  .reset-card {
    padding: 28px;
  }
  
  .contact-header h2,
  .reset-header h2 {
    font-size: var(--heading-card);
  }
  
  .groove-embed-wrap {
    border-radius: 20px;
    padding: 12px;
  }
  
  .groove-iframe {
    height: 500px;
    border-radius: 12px;
  }
}
