/* GrandWinToday.com - Aurora Pick Educational Platform */
/* Dark Purple & Teal Design System with Sidebar Layout */

:root {
  --gwt-primary: #7C3AED;
  --gwt-primary-light: #A78BFA;
  --gwt-primary-dark: #5B21B6;
  --gwt-accent: #14B8A6;
  --gwt-accent-light: #5EEAD4;
  --gwt-accent-dark: #0D9488;
  --gwt-dark: #0F172A;
  --gwt-darker: #020617;
  --gwt-charcoal: #1E293B;
  --gwt-slate: #64748B;
  --gwt-light: #F1F5F9;
  --gwt-lighter: #F8FAFC;
  --gwt-border: #CBD5E1;
  --gwt-white: #FFFFFF;
  --gwt-success: #10B981;
  --gwt-warning: #F59E0B;
  --gwt-error: #EF4444;
  --gwt-orange: #F97316;
  --gwt-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --gwt-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --gwt-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --gwt-gradient-primary: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
  --gwt-gradient-accent: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  --gwt-gradient-dark: linear-gradient(135deg, #0F172A 0%, #020617 100%);
  --gwt-radius-sm: 6px;
  --gwt-radius-md: 12px;
  --gwt-radius-lg: 18px;
  --gwt-radius-xl: 24px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gwt-lighter);
  color: var(--gwt-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gwt-dark);
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--gwt-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Compliance Notice */
.gwt-compliance-notice {
  background: var(--gwt-gradient-primary);
  color: var(--gwt-white);
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

/* Sidebar Navigation */
.gwt-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 260px;
  background: var(--gwt-gradient-dark);
  padding: 2rem 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  box-shadow: var(--gwt-shadow-lg);
}

.gwt-sidebar-header {
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gwt-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.gwt-logo-img {
  width: 42px;
  height: 42px;
  border-radius: var(--gwt-radius-sm);
}

.gwt-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gwt-white);
  letter-spacing: -0.01em;
}

.gwt-nav {
  flex: 1;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gwt-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.gwt-nav-item:hover {
  color: var(--gwt-white);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--gwt-accent);
}

.gwt-nav-item.active {
  color: var(--gwt-white);
  background: rgba(124, 58, 237, 0.15);
  border-left-color: var(--gwt-primary-light);
}

.gwt-nav-icon {
  font-size: 1rem;
  color: var(--gwt-accent-light);
}

.gwt-sidebar-footer {
  padding: 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.gwt-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gwt-btn-auth {
  padding: 0.7rem 1rem;
  border-radius: var(--gwt-radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

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

.gwt-btn-signin:hover {
  background: var(--gwt-primary-light);
  color: var(--gwt-dark);
}

.gwt-btn-join {
  background: var(--gwt-gradient-accent);
  color: var(--gwt-white);
  border: 2px solid transparent;
}

.gwt-btn-join:hover {
  transform: translateY(-2px);
  box-shadow: var(--gwt-shadow-md);
}

/* Mobile Toggle */
.gwt-mobile-toggle {
  display: none;
  position: fixed;
  top: 3.5rem;
  left: 1rem;
  z-index: 1002;
  background: var(--gwt-primary);
  border: none;
  padding: 10px;
  border-radius: var(--gwt-radius-sm);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--gwt-shadow-md);
}

.gwt-toggle-line {
  width: 20px;
  height: 2.5px;
  background: var(--gwt-white);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Main Content */
.gwt-main-content {
  margin-left: 260px;
  margin-top: 42px;
  min-height: 100vh;
}

/* Hero Section - Full Width Visual */
.gwt-hero-visual {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.gwt-hero-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.gwt-hero-visual::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.gwt-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gwt-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.gwt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.2);
  color: var(--gwt-accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--gwt-radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.gwt-hero-title {
  font-size: 3.5rem;
  color: var(--gwt-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.gwt-hero-highlight {
  background: linear-gradient(135deg, var(--gwt-primary-light) 0%, var(--gwt-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.gwt-hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.gwt-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gwt-btn-primary,
.gwt-btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: var(--gwt-radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.gwt-btn-primary {
  background: var(--gwt-gradient-accent);
  color: var(--gwt-white);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.gwt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
  color: var(--gwt-white);
}

.gwt-btn-secondary {
  background: transparent;
  color: var(--gwt-white);
  border: 2px solid var(--gwt-accent-light);
}

.gwt-btn-secondary:hover {
  background: var(--gwt-accent-light);
  color: var(--gwt-dark);
}

/* Section Styles */
.gwt-section {
  padding: 5rem 2rem;
}

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

.gwt-section-gradient {
  background: var(--gwt-gradient-dark);
  color: var(--gwt-white);
}

.gwt-section-gradient h2,
.gwt-section-gradient h3 {
  color: var(--gwt-white);
}

.gwt-section-gradient p {
  color: rgba(255, 255, 255, 0.85);
}

.gwt-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gwt-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.gwt-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.gwt-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--gwt-gradient-accent);
  border-radius: 2px;
}

.gwt-section-subtitle {
  font-size: 1.05rem;
  color: var(--gwt-slate);
  margin-top: 1.5rem;
  line-height: 1.7;
}

.gwt-section-gradient .gwt-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Visual Mode Cards */
.gwt-mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gwt-mode-card {
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--gwt-border);
  transition: all 0.3s ease;
  position: relative;
}

.gwt-mode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gwt-shadow-lg);
  border-color: var(--gwt-accent);
}

.gwt-mode-card.popular {
  border-color: var(--gwt-orange);
  border-width: 3px;
}

.gwt-mode-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gwt-orange);
  color: var(--gwt-white);
  padding: 0.35rem 1rem;
  border-radius: var(--gwt-radius-lg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gwt-mode-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gwt-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.gwt-mode-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gwt-charcoal);
  margin-bottom: 0.75rem;
}

.gwt-mode-features {
  font-size: 0.9rem;
  color: var(--gwt-slate);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.gwt-mode-link {
  color: var(--gwt-accent);
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.95rem;
}

.gwt-mode-link:hover {
  color: var(--gwt-accent-dark);
}

/* How It Works Cards */
.gwt-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.gwt-work-card {
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: var(--gwt-shadow-sm);
}

.gwt-work-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gwt-gradient-primary);
  color: var(--gwt-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.gwt-work-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--gwt-charcoal);
}

.gwt-work-desc {
  font-size: 0.95rem;
  color: var(--gwt-slate);
  line-height: 1.7;
  margin: 0;
}

/* Override white text for work cards inside gradient sections */
.gwt-section-gradient .gwt-work-card .gwt-work-title {
  color: var(--gwt-charcoal);
}

.gwt-section-gradient .gwt-work-card .gwt-work-desc {
  color: var(--gwt-slate);
}

/* Game Logic Box */
.gwt-logic-box {
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-xl);
  padding: 3rem;
  max-width: 900px;
  margin: 2rem auto 0;
  box-shadow: var(--gwt-shadow-md);
}

.gwt-logic-text {
  font-size: 1.05rem;
  color: var(--gwt-charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gwt-logic-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gwt-logic-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gwt-lighter);
  border-radius: var(--gwt-radius-md);
  font-weight: 600;
  color: var(--gwt-charcoal);
}

.gwt-logic-item::before {
  content: '✓';
  color: var(--gwt-success);
  font-weight: 800;
  font-size: 1.25rem;
}

/* Footer */
.gwt-footer {
  background: var(--gwt-darker);
  color: var(--gwt-white);
  padding: 4rem 2rem 2rem;
  margin-left: 260px;
}

.gwt-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gwt-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gwt-footer-brand h4 {
  color: var(--gwt-accent-light);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.gwt-footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.gwt-footer-logo {
  width: 70px;
  height: 70px;
  border-radius: var(--gwt-radius-md);
  margin-bottom: 1rem;
  background: var(--gwt-white);
  padding: 8px;
}

.gwt-footer-col h5 {
  color: var(--gwt-accent-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.gwt-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gwt-contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin: 0;
}

.gwt-contact-details a {
  color: var(--gwt-accent-light);
}

.gwt-contact-details a:hover {
  color: var(--gwt-primary-light);
}

/* Responsible Block */
.gwt-responsible-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--gwt-radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--gwt-accent);
}

.gwt-responsible-block h5 {
  margin-bottom: 1rem;
}

.gwt-responsible-block p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.gwt-rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-md);
}

.gwt-rg-badges a {
  display: block;
  transition: transform 0.25s ease;
}

.gwt-rg-badges a:hover {
  transform: scale(1.08);
}

.gwt-rg-badges img {
  height: 46px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* Footer Navigation */
.gwt-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gwt-footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.gwt-footer-nav a:hover {
  color: var(--gwt-accent-light);
}

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

.gwt-footer-disclaimer {
  flex: 1;
}

.gwt-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.6;
}

.gwt-footer-disclaimer p + p {
  margin-top: 0.5rem;
}

.gwt-age-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gwt-primary);
  color: var(--gwt-white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  border: 3px solid var(--gwt-white);
}

/* Cookie Banner */
.gwt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  background: var(--gwt-charcoal);
  color: var(--gwt-white);
  padding: 1.25rem 2rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.gwt-cookie-banner.show {
  display: block;
}

.gwt-cookie-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gwt-cookie-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gwt-cookie-content a {
  color: var(--gwt-accent-light);
}

.gwt-btn-cookie-ok {
  background: var(--gwt-accent);
  color: var(--gwt-white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--gwt-radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.gwt-btn-cookie-ok:hover {
  background: var(--gwt-accent-light);
  transform: translateY(-2px);
}

/* Form Styles */
.gwt-form-wrapper {
  max-width: 520px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-lg);
  box-shadow: var(--gwt-shadow-md);
}

.gwt-form-heading {
  text-align: center;
  color: var(--gwt-charcoal);
  margin-bottom: 0.5rem;
}

.gwt-form-subheading {
  text-align: center;
  color: var(--gwt-slate);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.gwt-form-field {
  margin-bottom: 1.25rem;
}

.gwt-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--gwt-charcoal);
  font-size: 0.9rem;
}

.gwt-form-input,
.gwt-form-textarea,
.gwt-form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gwt-border);
  border-radius: var(--gwt-radius-md);
  font-size: 1rem;
  transition: all 0.25s ease;
  font-family: inherit;
  background: var(--gwt-white);
}

.gwt-form-input:focus,
.gwt-form-textarea:focus,
.gwt-form-select:focus {
  outline: none;
  border-color: var(--gwt-primary);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.gwt-form-textarea {
  min-height: 140px;
  resize: vertical;
}

.gwt-form-submit {
  width: 100%;
  background: var(--gwt-gradient-primary);
  color: var(--gwt-white);
  border: none;
  padding: 1rem;
  border-radius: var(--gwt-radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gwt-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--gwt-shadow-md);
}

.gwt-form-submit:disabled {
  background: var(--gwt-slate);
  cursor: not-allowed;
  transform: none;
}

.gwt-form-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.gwt-form-link a {
  color: var(--gwt-primary);
  font-weight: 700;
}

.gwt-form-alert {
  padding: 1rem;
  border-radius: var(--gwt-radius-md);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.gwt-form-alert.success {
  background: #ECFDF5;
  color: var(--gwt-success);
  border: 1px solid var(--gwt-success);
}

.gwt-form-alert.error {
  background: #FEF2F2;
  color: var(--gwt-error);
  border: 1px solid var(--gwt-error);
}

.gwt-form-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--gwt-slate);
  margin-top: 0.5rem;
}

.gwt-form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gwt-form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gwt-primary);
  flex-shrink: 0;
}

.gwt-checkbox-label {
  font-size: 0.95rem;
  color: var(--gwt-charcoal);
  cursor: pointer;
  line-height: 1.5;
  font-weight: 500;
}

/* Page Container */
.gwt-page-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.gwt-page-head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gwt-border);
}

.gwt-page-head h1 {
  margin-bottom: 0.5rem;
}

.gwt-page-meta {
  color: var(--gwt-slate);
  font-size: 0.95rem;
}

.gwt-page-body {
  background: var(--gwt-white);
  border-radius: var(--gwt-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--gwt-shadow-sm);
}

.gwt-content-block {
  margin-bottom: 2.5rem;
}

.gwt-content-block:last-child {
  margin-bottom: 0;
}

.gwt-content-block h2 {
  color: var(--gwt-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gwt-border);
}

.gwt-content-block h3 {
  color: var(--gwt-charcoal);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.gwt-content-block p {
  color: var(--gwt-slate);
  line-height: 1.8;
}

.gwt-content-block ul,
.gwt-content-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.gwt-content-block li {
  color: var(--gwt-slate);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.gwt-content-block a {
  color: var(--gwt-primary);
  font-weight: 600;
}

.gwt-info-box {
  background: var(--gwt-lighter);
  padding: 1.5rem;
  border-radius: var(--gwt-radius-md);
  border-left: 4px solid var(--gwt-accent);
  margin: 1rem 0;
}

.gwt-info-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Grid */
.gwt-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gwt-contact-tile {
  text-align: center;
  padding: 1.75rem;
  background: var(--gwt-lighter);
  border-radius: var(--gwt-radius-md);
  transition: transform 0.25s ease;
}

.gwt-contact-tile:hover {
  transform: translateY(-4px);
}

.gwt-contact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gwt-accent);
}

.gwt-contact-tile h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.gwt-contact-tile p {
  font-size: 0.95rem;
  margin: 0;
}

.gwt-contact-tile a {
  color: var(--gwt-primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .gwt-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .gwt-sidebar.active {
    transform: translateX(0);
  }
  
  .gwt-mobile-toggle {
    display: flex;
  }
  
  .gwt-main-content {
    margin-left: 0;
  }
  
  .gwt-footer {
    margin-left: 0;
  }
  
  .gwt-cookie-banner {
    left: 0;
  }
  
  .gwt-mode-grid,
  .gwt-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  
  .gwt-hero-title {
    font-size: 2.25rem;
  }
  
  .gwt-section {
    padding: 3rem 1rem;
  }
  
  .gwt-hero-visual {
    padding: 3rem 1rem;
  }
  
  .gwt-hero-actions {
    flex-direction: column;
  }
  
  .gwt-mode-grid,
  .gwt-work-grid,
  .gwt-contact-grid,
  .gwt-logic-list {
    grid-template-columns: 1fr;
  }
  
  .gwt-footer-top {
    grid-template-columns: 1fr;
  }
  
  .gwt-footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .gwt-footer-base {
    flex-direction: column;
    text-align: center;
  }
  
  .gwt-cookie-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem; }
