/* FakeCloud AWS-style Theme */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --aws-orange: #FF9900;
  --aws-orange-dark: #E88B00;
  --aws-dark: #232F3E;
  --aws-darker: #1A2533;
  --aws-bg: #F2F2F2;
  --aws-white: #FFFFFF;
  --aws-text: #16191F;
  --aws-text-secondary: #545B64;
  --aws-border: #D5D9E2;
  --aws-blue: #0073BB;
  --aws-blue-hover: #0066A5;
  --aws-red: #D13212;
  --aws-green: #1D8102;
  --aws-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Amazon Ember', Roboto, sans-serif;
}

body {
  font-family: var(--aws-font);
  background: var(--aws-bg);
  color: var(--aws-text);
  font-size: 14px;
  line-height: 1.5;
}

a { color: var(--aws-blue); text-decoration: none; }
a:hover { color: var(--aws-blue-hover); text-decoration: underline; }

/* Navbar */
.aws-navbar {
  background: var(--aws-dark);
  color: white;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  gap: 12px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.sidebar-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.sidebar-toggle:hover { background: rgba(255,255,255,0.1); }

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
}

.brand-text { letter-spacing: -0.5px; }
.console-label { color: #AAB7B8; font-size: 13px; }

.navbar-center { flex: 1; display: flex; justify-content: center; }

.search-box {
  position: relative;
  width: 400px;
}
.search-box input {
  width: 100%;
  padding: 6px 32px 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 13px;
  outline: none;
}
.search-box input::placeholder { color: #AAB7B8; }
.search-box input:focus { background: rgba(255,255,255,0.15); border-color: var(--aws-orange); }
.search-shortcut {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #AAB7B8;
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 3px;
}

.navbar-right { display: flex; align-items: center; gap: 8px; }

.nav-region-picker select {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23AAB7B8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
}
.nav-region-picker select option {
  background: var(--aws-dark);
  color: white;
}

.nav-item { position: relative; padding: 4px 8px; cursor: pointer; border-radius: 4px; }
.nav-item:hover { background: rgba(255,255,255,0.1); }
.nav-icon { font-size: 18px; }
.nav-username { margin-left: 6px; font-size: 13px; }
.dropdown-arrow { margin-left: 4px; font-size: 10px; }

.user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1001;
}
.nav-user:hover .user-dropdown { display: block; }
.dropdown-header { padding: 12px 16px; }
.dropdown-header strong { display: block; color: var(--aws-text); }
.dropdown-divider { height: 1px; background: var(--aws-border); }
.dropdown-item {
  display: block;
  padding: 8px 16px;
  color: var(--aws-text) !important;
  font-size: 13px;
}
.dropdown-item:hover { background: #F5F5F5; text-decoration: none !important; }

/* Main layout */
.aws-main {
  display: flex;
  margin-top: 48px;
  min-height: calc(100vh - 48px);
}

/* Sidebar */
.aws-sidebar {
  width: 260px;
  background: var(--aws-darker);
  color: white;
  flex-shrink: 0;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  transition: width 0.2s;
  overflow-y: auto;
}

.aws-sidebar.collapsed { width: 48px; }

.sidebar-section { margin-bottom: 8px; }
.sidebar-section-title {
  padding: 4px 16px;
  font-size: 11px;
  text-transform: uppercase;
  color: #AAB7B8;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: #D5D9E2 !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: background 0.1s;
}
.sidebar-item:hover { background: rgba(255,255,255,0.08); }
.sidebar-item.active {
  background: rgba(255,255,255,0.12);
  color: white !important;
  border-left: 3px solid var(--aws-orange);
}

.sidebar-icon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-label { white-space: nowrap; }

.sidebar-footer {
  margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: #AAB7B8;
}
.sidebar-footer-item { padding: 2px 0; }

/* Content */
.aws-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
}

.content-header { margin-bottom: 20px; }

.breadcrumbs {
  font-size: 12px;
  color: var(--aws-text-secondary);
}
.breadcrumbs a { color: var(--aws-blue); }
.breadcrumb-sep { margin: 0 6px; color: #AAB7B8; }
.breadcrumb-current { color: var(--aws-text); }

/* Page header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.page-header h2 { font-size: 24px; font-weight: 400; color: var(--aws-text); }

.page-actions { display: flex; gap: 8px; }

/* Panels/Cards */
.panel {
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  margin-bottom: 16px;
}
.panel-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--aws-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel-header h3 { font-size: 16px; font-weight: 600; }
.panel-body { padding: 16px; }

/* Sub-panel */
.sub-panel {
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 12px;
}
.sub-panel h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  text-align: left;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--aws-text-secondary);
  text-transform: uppercase;
  border-bottom: 2px solid var(--aws-border);
}
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--aws-border);
  font-size: 13px;
}
.table tr:hover td { background: #F8F9FA; }

.arn-cell {
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 12px;
  color: var(--aws-text-secondary);
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-link { font-weight: 600; }
.object-key { font-family: 'Consolas', monospace; font-size: 12px; }

.action-cell { white-space: nowrap; }

/* Forms */
.form { max-width: 600px; }
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 13px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--aws-font);
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aws-orange);
  box-shadow: 0 0 0 2px rgba(255,153,0,0.2);
}
.form-hint { display: block; font-size: 12px; color: var(--aws-text-secondary); margin-top: 4px; }
.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.inline-form select { padding: 4px 8px; border: 1px solid var(--aws-border); border-radius: 4px; }

.code-input {
  font-family: 'Consolas', 'Monaco', monospace !important;
  font-size: 13px !important;
  tab-size: 2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  gap: 6px;
  transition: background 0.1s;
  font-family: var(--aws-font);
  text-decoration: none !important;
}
.btn-primary {
  background: var(--aws-orange);
  border-color: var(--aws-orange);
  color: white;
}
.btn-primary:hover { background: var(--aws-orange-dark); }
.btn-secondary {
  background: white;
  color: var(--aws-text);
}
.btn-secondary:hover { background: #F5F5F5; }
.btn-danger {
  background: white;
  border-color: var(--aws-red);
  color: var(--aws-red);
}
.btn-danger:hover { background: #FFF5F5; }
.btn-sm { padding: 4px 8px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.status-active, .status-completed { background: #E8F5E9; color: var(--aws-green); }
.status-inactive { background: #F5F5F5; color: var(--aws-text-secondary); }
.status-running { background: #FFF8E1; color: #B8860B; }
.status-failed { background: #FFEBEE; color: var(--aws-red); }
.status-pending { background: #F5F5F5; color: var(--aws-text-secondary); }

/* Tags */
.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: #E3F2FD;
  color: var(--aws-blue);
  font-size: 11px;
  margin: 2px;
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 13px;
}
.alert-error { background: #FFEBEE; border: 1px solid #FFCDD2; color: #B71C1C; }
.alert-success { background: #E8F5E9; border: 1px solid #C8E6C9; color: #1B5E20; }
.alert-icon { font-size: 18px; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--aws-text-secondary);
}
.empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--aws-text); }
.empty-state p { margin-bottom: 16px; }

/* Dashboard */
.dashboard-header { margin-bottom: 24px; }
.dashboard-header h2 { font-size: 24px; font-weight: 400; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  transition: box-shadow 0.2s;
  text-decoration: none !important;
  color: var(--aws-text) !important;
}
.service-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.service-icon { font-size: 32px; }
.service-info { flex: 1; }
.service-info h3 { font-size: 16px; margin-bottom: 4px; }
.service-count { font-size: 12px; color: var(--aws-text-secondary); }
.service-arrow { font-size: 24px; color: var(--aws-text-secondary); }

.dashboard-panels {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .dashboard-panels { grid-template-columns: 1fr; }
  .aws-sidebar { width: 48px; }
  .aws-sidebar .sidebar-label,
  .aws-sidebar .sidebar-section-title,
  .aws-sidebar .sidebar-footer { display: none; }
  .nav-username { display: none; }
  .search-box { width: 200px; }
}

/* Auth pages */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.auth-card {
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 8px;
  padding: 40px;
  width: 480px;
  max-width: 100%;
}
.auth-header {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo { margin-bottom: 16px; }
.auth-header h1 { font-size: 24px; font-weight: 400; }
.auth-form { margin-bottom: 24px; }
.auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--aws-text-secondary);
  display: flex;
  gap: 8px;
  justify-content: center;
}
.auth-footer a { color: var(--aws-blue); }

.payment-section {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
}
.payment-section h3 { font-size: 14px; margin-bottom: 8px; }
.payment-section code { background: #FFFDE7; padding: 2px 6px; border-radius: 3px; font-size: 12px; }

.test-card-info { margin-top: 12px; }
.card-row { display: flex; gap: 12px; }
.card-row .card-field { flex: 1; }
.test-value {
  background: #F5F5F5 !important;
  color: var(--aws-text-secondary);
  cursor: not-allowed;
  padding: 8px 12px;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
}

/* MFA */
.mfa-prompt { text-align: center; margin-bottom: 24px; }
.mfa-icon { font-size: 48px; margin-bottom: 12px; }
.hint { font-size: 12px; color: var(--aws-text-secondary); margin-top: 4px; }

.mfa-setup .mfa-steps { max-width: 500px; }
.mfa-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.step-number {
  width: 32px;
  height: 32px;
  background: var(--aws-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 { font-size: 15px; margin-bottom: 4px; }
.step-content p { font-size: 13px; color: var(--aws-text-secondary); }

.qr-container {
  background: white;
  border: 2px dashed var(--aws-border);
  border-radius: 8px;
  padding: 16px;
  display: inline-block;
  margin: 12px 0;
}
.qr-code { width: 180px; height: 180px; }

.secret-key {
  margin: 12px 0;
  padding: 8px 12px;
  background: #F5F5F5;
  border-radius: 4px;
}
.secret-key label { font-size: 12px; color: var(--aws-text-secondary); display: block; margin-bottom: 4px; }
.secret-key code { font-size: 13px; word-break: break-all; }

.mfa-verify-form { max-width: 300px; }

/* Detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.detail-list dt {
  font-weight: 600;
  font-size: 12px;
  color: var(--aws-text-secondary);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.detail-list dd {
  margin-bottom: 12px;
  font-size: 14px;
}

/* Resource list */
.resource-list {
  list-style: none;
  margin-bottom: 8px;
}
.resource-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--aws-border);
}

/* Bucket info bar */
.bucket-info-bar {
  display: flex;
  gap: 24px;
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.info-item { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.info-label { font-weight: 600; color: var(--aws-text-secondary); }

/* EC2 */
.instance-summary {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.summary-card {
  background: white;
  border: 1px solid var(--aws-border);
  border-radius: 4px;
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
}
.summary-value { font-size: 28px; font-weight: 700; color: var(--aws-text); }
.summary-label { font-size: 12px; color: var(--aws-text-secondary); text-transform: uppercase; margin-top: 4px; }
.action-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-warning {
  background: white;
  border-color: #B8860B;
  color: #B8860B;
}
.btn-warning:hover { background: #FFF8E1; }

/* Progress bar */
.progress-bar-container {
  width: 80px;
  height: 8px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.progress-bar {
  height: 100%;
  background: var(--aws-orange);
  border-radius: 4px;
  transition: width 0.3s;
}
.progress-text {
  font-size: 11px;
  color: var(--aws-text-secondary);
  vertical-align: middle;
  margin-left: 4px;
}

/* Job type */
.job-type {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.job-type-backup { background: #E3F2FD; color: var(--aws-blue); }
.job-type-restore { background: #E8F5E9; color: var(--aws-green); }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: 8px;
  width: 520px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--aws-border);
}
.modal-header h3 { font-size: 18px; }
.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--aws-text-secondary);
}
.modal-body { padding: 20px; }
.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--aws-border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* Checkbox label */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 0;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Section tabs */
.section-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--aws-border);
}
.section-tabs .tab {
  padding: 8px 20px;
  font-size: 14px;
  color: var(--aws-text-secondary);
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  transition: all 0.1s;
}
.section-tabs .tab:hover {
  color: var(--aws-text);
  border-bottom-color: var(--aws-text-secondary);
}
.section-tabs .tab.active {
  color: var(--aws-text);
  font-weight: 600;
  border-bottom-color: var(--aws-orange);
}

/* MFA method cards */
.mfa-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.mfa-method-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--aws-border);
  border-radius: 8px;
  text-decoration: none !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mfa-method-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.mfa-method-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.mfa-method-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--aws-text);
  margin-bottom: 8px;
}
.mfa-method-card p {
  font-size: 13px;
  color: var(--aws-text-secondary);
  line-height: 1.5;
}
.mfa-qr-section {
  text-align: center;
  padding: 16px 0;
}
.mfa-qr-placeholder {
  display: inline-block;
  padding: 12px;
  background: white;
  border-radius: 8px;
}
.mfa-verify-form {
  max-width: 320px;
  margin: 20px auto 0;
}
.mfa-email-setup {
  text-align: center;
  padding: 24px;
}

/* Section tabs */
.section-tabs {
}

.lesson-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lesson-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--aws-border);
}
.lesson-item:last-child { border-bottom: none; }
.lesson-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-decoration: none !important;
  color: var(--aws-text) !important;
  padding: 4px 0;
}
.lesson-link:hover { color: var(--aws-blue) !important; }
.lesson-number {
  font-weight: 600;
  color: var(--aws-orange);
  min-width: 24px;
}
.lesson-title {
  text-transform: capitalize;
}
.lesson-content {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--aws-text);
}

/* Misc */
.text-muted { color: var(--aws-text-secondary); }
.restore-info { margin-bottom: 24px; }
.quick-actions { list-style: none; }
.quick-actions li { padding: 8px 0; border-bottom: 1px solid var(--aws-border); }
.quick-actions li:last-child { border-bottom: none; }

/* Landing page */
.landing-page {
  background: #fff;
}

.landing-nav {
  background: var(--aws-dark);
  color: white;
  height: 56px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.landing-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 18px;
}

.landing-nav-links {
  display: flex;
  gap: 12px;
}

.landing-hero {
  background: linear-gradient(135deg, var(--aws-dark) 0%, #1a2533 50%, #0d1b2a 100%);
  color: white;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-highlight {
  color: var(--aws-orange);
  font-weight: 600;
}

.hero-subtitle {
  font-size: 20px;
  color: #AAB7B8;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 4px;
}

.landing-services {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.landing-section-header h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--aws-text);
}

.landing-section-header p {
  font-size: 16px;
  color: var(--aws-text-secondary);
}

.landing-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.landing-service-card {
  padding: 32px 24px;
  border: 1px solid var(--aws-border);
  border-radius: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.landing-service-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.landing-service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.landing-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--aws-text);
}

.landing-service-card p {
  font-size: 14px;
  color: var(--aws-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.landing-service-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #E3F2FD;
  color: var(--aws-blue);
}

.landing-cta {
  background: var(--aws-dark);
  color: white;
  text-align: center;
  padding: 80px 24px;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 16px;
  color: #AAB7B8;
  margin-bottom: 32px;
}

.landing-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--aws-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner p {
  font-size: 13px;
  color: var(--aws-text-secondary);
  margin-bottom: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #BBB; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }
