/* ========================================
   Romabet Güncel Giriş - Ana Stil Dosyası
   Renk Teması: Mor & Amber
   ======================================== */

:root {
  --primary: #5B21B6;
  --primary-dark: #3B0F8A;
  --primary-light: #7C3AED;
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --accent: #8B5CF6;
  --danger: #EF4444;
  --success: #10B981;
  --bg-dark: #1E0A3C;
  --bg-darker: #120524;
  --bg-light: #F5F3FF;
  --bg-white: #FFFFFF;
  --text-dark: #1E0A3C;
  --text-light: #F5F3FF;
  --text-muted: #6B7280;
  --text-body: #374151;
  --border: #DDD6FE;
  --shadow: rgba(91, 33, 182, 0.15);
  --shadow-strong: rgba(91, 33, 182, 0.35);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--primary-light);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.site-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-strong);
  border-bottom: 2px solid var(--secondary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 48px;
  width: auto;
}

.logo-text {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: #C4B5FD;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
  background: rgba(245, 158, 11, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(91, 33, 182, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 33, 182, 0.5);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--bg-darker);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: var(--bg-darker);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-light);
  color: var(--primary-light);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 5, 36, 0.95);
  z-index: 1050;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  color: #C4B5FD;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
  transition: all var(--transition);
}

.mobile-nav-overlay a:hover {
  color: var(--secondary);
  background: rgba(245, 158, 11, 0.08);
}

.mobile-nav-overlay .mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

.breadcrumb .sep {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--text-muted);
}

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

.hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #2D1465 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 18px;
}

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

.hero p {
  font-size: 1.05rem;
  color: #C4B5FD;
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.hero-stat .label {
  font-size: 0.75rem;
  color: #A78BFA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
  padding: 60px 0;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.section-dark .section-subtitle {
  color: #A78BFA;
}

.section-header {
  margin-bottom: 36px;
}

.title-accent {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow-strong);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-strong);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   INFO / CONTENT SECTIONS
   ======================================== */

.content-section {
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}

.content-section p {
  margin-bottom: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin: 12px 0 18px 20px;
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Steps */
.steps-list {
  counter-reset: steps;
  list-style: none;
  margin: 0 0 20px 0;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--shadow);
  align-items: flex-start;
}

.steps-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

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

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.05) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(91, 33, 182, 0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box.warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: var(--secondary);
  border-left-color: var(--secondary-dark);
}

.info-box.success {
  background: rgba(16, 185, 129, 0.05);
  border-color: var(--success);
  border-left-color: var(--success);
}

.info-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-box.warning h4 { color: var(--secondary-dark); }
.info-box.success h4 { color: var(--success); }

.info-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
}

/* ========================================
   BONUS TABLE / COMPARISON
   ======================================== */

.bonus-card {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-label {
  font-size: 0.85rem;
  color: #A78BFA;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.bonus-details {
  list-style: none;
  margin: 0;
}

.bonus-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #C4B5FD;
  padding: 6px 0;
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.bonus-details li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  gap: 12px;
  transition: background var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: rgba(91, 33, 182, 0.04);
}

.faq-question.active {
  background: rgba(91, 33, 182, 0.06);
  color: var(--primary);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-answer.open {
  display: block;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 24px var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition);
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ========================================
   TABLE
   ======================================== */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.875rem;
}

th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 13px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background: rgba(91, 33, 182, 0.025);
}

tr:hover td {
  background: rgba(91, 33, 182, 0.05);
}

/* ========================================
   BLOG
   ======================================== */

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow-strong);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(91, 33, 182, 0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}

.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-read-more:hover {
  color: var(--primary-dark);
}

/* Blog Article */
.article-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  padding: 48px 0 40px;
  color: var(--text-light);
}

.article-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #A78BFA;
  margin-bottom: 20px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 16px;
}

.article-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}

.article-body p {
  margin-bottom: 16px;
  color: var(--text-body);
  line-height: 1.85;
  font-size: 0.95rem;
}

.article-body ul, .article-body ol {
  margin: 12px 0 20px 22px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
}

.article-body img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* ========================================
   RATING / STARS
   ======================================== */

.stars {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
}

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

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

.site-footer {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  color: #C4B5FD;
  padding: 56px 0 0;
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-col p {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.75;
  margin-bottom: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #9CA3AF;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(196, 181, 253, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.6;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #4B5563;
  margin-top: 8px;
}

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

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 44px 0;
  }
  .hero {
    padding: 44px 0 40px;
  }
  .hero-stats {
    gap: 20px;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 14px;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-cta .btn:first-child {
    display: none;
  }
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-full { width: 100%; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: 0 4px 20px var(--shadow); }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
