/* ═══════════════════════════════════════
   LANDING.CSS — Hero + Landing Sections
   ═══════════════════════════════════════ */

/* ── Hero ── */
.hero {
position: relative;
padding: 64px 0 80px;
min-height: 80vh;
display: flex;
align-items: center;
background: var(--bg);
overflow: visible;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(212, 162, 127, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(212, 162, 127, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(212, 162, 127, 0.15) 0%, transparent 70%);
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, rgba(201, 137, 125, 0.12) 0%, transparent 70%);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Hero Text ── */
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(139, 191, 122, 0.2);
  background: var(--accent-green-bg);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  width: fit-content;
  margin-bottom: 20px;
}
.hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 6px var(--accent-green-glow);
  animation: pill-pulse 2s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--text);
  margin-bottom: 16px;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--primary);
  position: relative;
}
.hero__title-line--accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-warm));
  opacity: 0.5;
}

.hero__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── Hero Buttons ── */
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none !important;
  transition: var(--transition);
}
.hero__btn--fill {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.hero__btn--fill:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--primary-glow);
  text-decoration: none !important;
}
.hero__btn--outline {
  background: var(--bg-surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.hero__btn--outline:hover {
  border-color: var(--border-glow);
  color: var(--primary);
  background: var(--primary-container);
  text-decoration: none !important;
}

/* ── Hero Badges ── */
.hero__badges {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  width: fit-content;
}
.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0 12px;
  white-space: nowrap;
}
.hero__badge-item i { color: var(--accent-green); font-size: 12px; }
.hero__badge-divider {
  width: 1px;
  height: 14px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ── Hero Visual (terminal + floating cards) ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__terminal {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  position: relative;
}

.hero__terminal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border);
}
.hero__terminal-dots {
  display: flex;
  gap: 6px;
}
.hero__terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero__terminal-dots span:nth-child(1) { background: var(--error); }
.hero__terminal-dots span:nth-child(2) { background: var(--warning); }
.hero__terminal-dots span:nth-child(3) { background: var(--success); }
.hero__terminal-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  flex: 1;
  text-align: center;
}

.hero__terminal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__terminal-status {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__terminal-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--accent-green-glow);
  animation: pill-pulse 2s ease-in-out infinite;
}
.hero__terminal-status-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero__terminal-uptime {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__terminal-uptime-track {
  height: 4px;
  background: var(--bg-surface-3);
  border-radius: 2px;
  overflow: hidden;
}
.hero__terminal-uptime-fill {
  height: 100%;
  width: 0;
  background: var(--success);
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__terminal-uptime-fill.animate {
  width: 99.9%;
}
.hero__terminal-uptime-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__terminal-uptime-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
  font-family: var(--font-mono);
}
.hero__terminal-uptime-label {
  font-size: 11px;
  color: var(--text-muted);
}

.hero__terminal-sep {
  height: 1px;
  background: var(--border);
}

.hero__terminal-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__terminal-spec {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__terminal-spec-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  flex-shrink: 0;
}
.hero__terminal-spec-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero__terminal-spec-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.hero__terminal-spec-info span {
  font-size: 11px;
  color: var(--text-muted);
}
.hero__terminal-spec-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.hero__terminal-spec-tag--ok {
  background: var(--accent-green-bg);
  color: var(--accent-green);
  border-color: rgba(139, 191, 122, 0.2);
}

.hero__terminal-log {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash__log-line {
  display: flex;
  align-items: center;
  gap: 6px;
  animation: log-fade-in 0.3s ease-out;
}
.dash__log-ts {
  color: var(--text-muted);
  opacity: 0.6;
}
.dash__log-ok {
  color: var(--accent-green);
  font-weight: 700;
}
@keyframes log-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Floating Indicators ── */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-2);
  font-size: 12px;
  z-index: 2;
  backdrop-filter: blur(12px);
}
.hero__float i {
  font-size: 16px;
  color: var(--primary);
}
.hero__float strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hero__float span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}
.hero__float--1 {
top: -24px;
right: -40px;
animation: float-1 6s ease-in-out infinite;
}
.hero__float--2 {
top: -12px;
left: -44px;
animation: float-2 5s ease-in-out infinite;
}
.hero__float--3 {
top: 30%;
right: -52px;
animation: float-3 7s ease-in-out infinite;
}
.hero__float--4 {
top: 55%;
left: -56px;
animation: float-4 6.5s ease-in-out infinite;
}
.hero__float--5 {
bottom: 20px;
right: -48px;
animation: float-5 5.5s ease-in-out infinite;
}
.hero__float--6 {
bottom: -16px;
left: -36px;
animation: float-6 6s ease-in-out infinite;
}
@keyframes float-1 {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
@keyframes float-2 {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(8px); }
}
@keyframes float-3 {
0%, 100% { transform: translateY(-50%); }
50% { transform: translateY(calc(-50% - 8px)); }
}
@keyframes float-4 {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@keyframes float-5 {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(10px); }
}
@keyframes float-6 {
0%, 100% { transform: translateX(-50%); }
50% { transform: translateX(calc(-50%)) translateY(-8px); }
}

/* ═══════════════════════════════════════
   AWS-Services Section
   ═══════════════════════════════════════ */
.aws-services-section {
  padding: 64px 0;
  background: transparent;
}

.aws-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.aws-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.aws-text-underline {
  position: relative;
  color: var(--primary);
  font-weight: 800;
}
.aws-text-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 1px;
  background: var(--primary);
}
.aws-section-lead {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 700px;
}

.aws-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  align-items: stretch;
}
.aws-service-box {
  grid-column: span 4;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.aws-service-box--wide { grid-column: span 8; }
.aws-service-box--tall { grid-row: span 2; }
.aws-service-box--large { grid-column: span 8; grid-row: span 2; }
.aws-service-box:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.aws-service-box__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.aws-service-box__title { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; letter-spacing: -0.2px; }
.aws-service-box__desc { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin: 0; }
.aws-service-box__tag {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.aws-service-box__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

/* ═══════════════════════════════════════
   Plans Showcase (Cloud Hosting)
   ═══════════════════════════════════════ */
.plans-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  margin-top: 32px;
}

.plans-showcase__sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  align-self: start;
}
.plans-showcase__sidebar-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.plans-showcase__sidebar-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border);
}
.plans-showcase__sidebar-dots { display: flex; gap: 6px; }
.plans-showcase__sidebar-dot { width: 10px; height: 10px; border-radius: 50%; }
.plans-showcase__sidebar-dot--red { background: var(--error); }
.plans-showcase__sidebar-dot--yellow { background: var(--warning); }
.plans-showcase__sidebar-dot--green { background: var(--success); }
.plans-showcase__sidebar-bar-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.plans-showcase__sidebar-content { padding: 16px; }
.plans-showcase__sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.plans-showcase__sidebar-header i { font-size: 20px; color: var(--primary); }
.plans-showcase__sidebar-header strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.plans-showcase__sidebar-header span { font-size: 11px; color: var(--text-muted); }

.plans-showcase__sidebar-specs { display: flex; flex-direction: column; gap: 6px; }
.plans-showcase__sidebar-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.plans-showcase__sidebar-spec:hover { background: var(--bg-hover); }
.plans-showcase__sidebar-spec-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary);
  flex-shrink: 0;
}
.plans-showcase__sidebar-spec-info { flex: 1; }
.plans-showcase__sidebar-spec-label { display: block; font-size: 11px; color: var(--text-muted); }
.plans-showcase__sidebar-spec-value { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.plans-showcase__sidebar-spec-status { color: var(--success); font-size: 13px; }

.plans-showcase__sidebar-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.plans-showcase__sidebar-uptime { display: flex; flex-direction: column; gap: 6px; }
.plans-showcase__sidebar-uptime-track {
  height: 4px;
  background: var(--bg-surface-3);
  border-radius: 2px;
  overflow: hidden;
}
.plans-showcase__sidebar-uptime-fill {
  height: 100%;
  width: 99.9%;
  background: var(--success);
  border-radius: 2px;
}
.plans-showcase__sidebar-uptime-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  font-family: var(--font-mono);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ── Plans Showcase Main ── */
.plans-showcase__main { display: flex; flex-direction: column; gap: 16px; }

.plans-showcase__hero-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  background: var(--bg-surface);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.plans-showcase__hero-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border);
}
.plans-showcase__hero-titlebar-dots { display: flex; gap: 6px; }
.plans-showcase__hero-titlebar-dots span { width: 10px; height: 10px; border-radius: 50%; }
.plans-showcase__hero-titlebar-dots span:nth-child(1) { background: var(--error); }
.plans-showcase__hero-titlebar-dots span:nth-child(2) { background: var(--warning); }
.plans-showcase__hero-titlebar-dots span:nth-child(3) { background: var(--success); }
.plans-showcase__hero-titlebar-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  flex: 1;
}
.plans-showcase__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.plans-showcase__hero-body { padding: 24px; }
.plans-showcase__hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.plans-showcase__hero-identity { display: flex; align-items: center; gap: 14px; }
.plans-showcase__hero-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.plans-showcase__hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.plans-showcase__hero-name { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }

.plans-showcase__hero-price { display: flex; align-items: baseline; gap: 2px; }
.plans-showcase__hero-currency { font-size: 14px; font-weight: 700; color: var(--primary); }
.plans-showcase__hero-amount { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.plans-showcase__hero-period { font-size: 13px; color: var(--text-muted); }

.plans-showcase__hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.plans-showcase__hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.plans-showcase__hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
}
.plans-showcase__hero-feature i { color: var(--accent-green); font-size: 10px; }
.plans-showcase__hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.plans-showcase__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--transition);
}
.plans-showcase__btn--primary:hover {
  background: #C08E6A;
  transform: translateY(-1px);
  text-decoration: none !important;
}
.plans-showcase__hero-cta-note { font-size: 11px; color: var(--text-muted); }

/* ── Plans Showcase Alt Cards ── */
.plans-showcase__alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.plans-showcase__alt-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  transition: var(--transition);
}
.plans-showcase__alt-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-1);
}
.plans-showcase__alt-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border);
}
.plans-showcase__alt-titlebar-dots { display: flex; gap: 4px; }
.plans-showcase__alt-titlebar-dots span { width: 8px; height: 8px; border-radius: 50%; }
.plans-showcase__alt-titlebar-dots span:nth-child(1) { background: var(--error); }
.plans-showcase__alt-titlebar-dots span:nth-child(2) { background: var(--warning); }
.plans-showcase__alt-titlebar-dots span:nth-child(3) { background: var(--success); }
.plans-showcase__alt-titlebar-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plans-showcase__alt-body { padding: 16px; }
.plans-showcase__alt-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.plans-showcase__alt-info { display: flex; align-items: center; gap: 10px; }
.plans-showcase__alt-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
}
.plans-showcase__alt-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.plans-showcase__alt-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plans-showcase__alt-price { display: flex; align-items: baseline; gap: 2px; }
.plans-showcase__alt-currency { font-size: 11px; font-weight: 700; color: var(--primary); }
.plans-showcase__alt-amount { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.plans-showcase__alt-period { font-size: 11px; color: var(--text-muted); }

.plans-showcase__alt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.plans-showcase__alt-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}
.plans-showcase__alt-chip i { color: var(--accent-green); font-size: 8px; }
.plans-showcase__alt-chip--more {
  background: var(--primary-container);
  color: var(--primary);
  border-color: rgba(212, 162, 127, 0.15);
}

.plans-showcase__alt-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--transition);
}
.plans-showcase__alt-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-container);
  text-decoration: none !important;
}

/* ═══════════════════════════════════════
   Dev Stack (Dev Hosting)
   ═══════════════════════════════════════ */
.dev-stack {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  margin-top: 32px;
}

.dev-stack__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.dev-stack__rail-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--bg-surface-3);
  border-radius: 1px;
}
.dev-stack__rail-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  z-index: 1;
  margin-bottom: 36px;
  transition: var(--transition);
}
.dev-stack__rail-dot--active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-container);
}
.dev-stack__rail-dot:last-child { margin-bottom: 0; }

.dev-stack__content { display: flex; flex-direction: column; gap: 14px; }

.dev-stack__hero {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  background: var(--bg-surface);
  box-shadow: var(--shadow-2);
}
.dev-stack__hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.dev-stack__hero-identity { display: flex; align-items: center; gap: 14px; }
.dev-stack__hero-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.dev-stack__hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dev-stack__hero-name { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }

.dev-stack__hero-price { display: flex; align-items: baseline; gap: 2px; }
.dev-stack__hero-currency { font-size: 14px; font-weight: 700; color: var(--primary); }
.dev-stack__hero-amount { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.dev-stack__hero-period { font-size: 13px; color: var(--text-muted); }

.dev-stack__hero-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.dev-stack__hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.dev-stack__hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.dev-stack__hero-chip i { color: var(--accent-green); font-size: 10px; }
.dev-stack__hero-chip--more {
  background: var(--primary-container);
  color: var(--primary);
  border-color: rgba(212, 162, 127, 0.15);
}
.dev-stack__hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dev-stack__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--transition);
}
.dev-stack__btn:hover {
  background: #C08E6A;
  transform: translateY(-1px);
  text-decoration: none !important;
}
.dev-stack__hero-cta-note { font-size: 11px; color: var(--text-muted); }

/* ── Dev Stack Row ── */
.dev-stack__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: var(--transition);
}
.dev-stack__row:hover { border-color: var(--border-strong); }
.dev-stack__row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.dev-stack__row-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--primary);
  flex-shrink: 0;
}
.dev-stack__row-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.dev-stack__row-features { display: flex; gap: 4px; flex-wrap: wrap; }
.dev-stack__row-chip {
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.dev-stack__row-chip--more {
  background: var(--primary-container);
  color: var(--primary);
  border-color: rgba(212, 162, 127, 0.15);
}
.dev-stack__row-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.dev-stack__row-price { display: flex; align-items: baseline; gap: 2px; }
.dev-stack__row-currency { font-size: 11px; font-weight: 700; color: var(--primary); }
.dev-stack__row-amount { font-size: 1.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.dev-stack__row-period { font-size: 11px; color: var(--text-muted); }
.dev-stack__row-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: var(--transition);
}
.dev-stack__row-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-container);
  text-decoration: none !important;
}

/* ═══════════════════════════════════════
   Catalog Stream
   ═══════════════════════════════════════ */
.catalog-stream__main-head { margin-bottom: 36px; }
.catalog-row { margin-bottom: 32px; }
.catalog-row:last-child { margin-bottom: 0; }
.catalog-row__head { margin-bottom: 20px; }
.catalog-row__heading { font-size: 18px; font-weight: 700; color: var(--text); }
.catalog-row__lead { font-size: 14px; color: var(--text-secondary); margin-top: 6px; }
.catalog-row__rail { margin-top: 12px; }
.catalog-row__hint { margin-top: 8px; }

/* ═══════════════════════════════════════
   Services Rail Section
   ═══════════════════════════════════════ */
.services-rail-section__head { margin-bottom: 28px; }
.services-rail-section__titles { text-align: center; }
.services-rail-section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.services-rail-section__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.services-rail-section__title i { color: var(--primary); margin-right: 8px; }
.services-rail-section__lead {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   Pricing Section
   ═══════════════════════════════════════ */
.pricing-section {
  padding: 80px 0;
  background: transparent;
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans-showcase { grid-template-columns: 1fr; }
  .plans-showcase__sidebar { position: static; }
  .dev-stack { grid-template-columns: 1fr; }
  .dev-stack__rail { display: none; }
  .aws-services-grid { grid-template-columns: repeat(6, 1fr); }
  .aws-service-box { grid-column: span 6; }
  .aws-service-box--wide { grid-column: span 6; }
  .aws-service-box--large { grid-column: span 6; grid-row: span 1; }
  .hero__container { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { justify-content: start; }
  .hero__terminal { max-width: 100%; }
.hero__float--1 { right: 8px; top: -8px; }
.hero__float--2 { left: 8px; top: -4px; }
.hero__float--3 { right: 0; }
.hero__float--4 { left: 0; }
.hero__float--5 { right: 0; }
.hero__float--6 { left: 8px; }
}

@media (max-width: 768px) {
.hero {
padding: 32px 0 48px;
min-height: auto;
}
.hero__container { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(1.6rem, 7vw, 2.2rem); letter-spacing: -0.8px; }
  .hero__desc { font-size: 14px; }
  .hero__btns { flex-direction: column; }
  .hero__btn { width: 100%; justify-content: center; }
  .hero__badges {
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
    border-radius: var(--radius);
    align-items: flex-start;
  }
  .hero__badge-divider { display: none; }
  .hero__badge-item { padding: 0; }
  .hero__float { display: none; }
  .aws-services-grid { grid-template-columns: 1fr; }
  .aws-service-box,
  .aws-service-box--wide,
  .aws-service-box--tall,
  .aws-service-box--large { grid-column: span 1; grid-row: span 1; }
  .plans-showcase__alt { grid-template-columns: 1fr; }
  .dev-stack__hero-top { flex-direction: column; }
  .dev-stack__row { flex-direction: column; align-items: flex-start; }
  .dev-stack__row-right { width: 100%; justify-content: space-between; }
  .pricing-section { padding: 48px 0; }
  .plans-compare__toggle { font-size: 11px; }
}
