/* =========================================
   Zusys Technology — Fresh & Dynamic
   ========================================= */

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

:root {
  --bg: #06060e;
  --bg-card: #0d0d1a;
  --bg-card-hover: #12122a;
  --surface: #111128;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #e4e4f0;
  --text-muted: #8888a8;
  --text-dim: #55556e;
  --accent-1: #6c5ce7;
  --accent-2: #00cec9;
  --accent-3: #fd79a8;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --gradient-warm: linear-gradient(135deg, var(--accent-3), var(--accent-1));
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Animated background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-1);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.bg-glow--2 {
  width: 500px;
  height: 500px;
  background: var(--accent-2);
  bottom: -100px;
  left: -200px;
  animation: float 25s ease-in-out infinite reverse;
}

.bg-glow--3 {
  width: 400px;
  height: 400px;
  background: var(--accent-3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -30px); }
  50% { transform: translate(-20px, 50px); }
  75% { transform: translate(30px, 20px); }
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--dark {
  background: rgba(0, 0, 0, 0.3);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.nav--scrolled {
  background: rgba(6, 6, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.1rem;
}

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

.nav__link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.nav__link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.nav__link--cta {
  background: var(--gradient);
  color: white !important;
}

.nav__link--cta:hover {
  opacity: 0.9;
  background: var(--gradient);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* Text */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero__inner {
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--mono);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__plus {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--mono);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.btn--primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 24px rgba(108, 92, 231, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.4);
}

.btn--outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border-hover);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Section headers */
.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-2);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(0, 206, 201, 0.1);
  border-radius: var(--radius-pill);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Service Cards Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__icon--blockchain {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-1);
}

.service-card__icon--ai {
  background: rgba(0, 206, 201, 0.15);
  color: var(--accent-2);
}

.service-card__icon--dev {
  background: rgba(253, 121, 168, 0.15);
  color: var(--accent-3);
}

.service-card__icon--cloud {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-1);
}

.service-card__icon--security {
  background: rgba(0, 206, 201, 0.15);
  color: var(--accent-2);
}

.service-card__icon--brand {
  background: rgba(253, 121, 168, 0.15);
  color: var(--accent-3);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.service-card__arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: var(--transition);
}

.service-card:hover .service-card__arrow {
  color: var(--accent-2);
  transform: translateX(4px);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
}

.about-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.about-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(0, 206, 201, 0.1);
  color: var(--accent-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card__icon svg {
  width: 26px;
  height: 26px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Detail Cards (Blockchain) */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.detail-card:hover {
  border-color: var(--border-hover);
}

.detail-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.detail-card__number {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-2);
  background: rgba(0, 206, 201, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.detail-card__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.detail-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.detail-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
}

/* AI Features */
.ai-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ai-feature {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.ai-feature:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.ai-feature__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 206, 201, 0.1);
  color: var(--accent-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature__icon svg {
  width: 22px;
  height: 22px;
}

.ai-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Dev columns */
.dev-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dev-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.dev-column:hover {
  border-color: var(--border-hover);
}

.dev-column__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-3);
  background: rgba(253, 121, 168, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.dev-column h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.pill--accent {
  background: rgba(108, 92, 231, 0.12);
  border-color: rgba(108, 92, 231, 0.3);
  color: var(--accent-1);
}

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

.dev-column__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.dev-column__list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 0.75rem;
}

/* Cloud grid */
.cloud-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.cloud-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.cloud-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.cloud-card:hover {
  border-color: var(--border-hover);
}

.cloud-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cloud-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cloud-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.cloud-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent-1);
}

.cloud-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Bare metal highlight card */
.cloud-card--highlight {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(0, 206, 201, 0.08));
  border-color: rgba(108, 92, 231, 0.25);
  position: relative;
}

.cloud-card--highlight:hover {
  border-color: rgba(108, 92, 231, 0.4);
}

.cloud-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--gradient);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* Split layout (Security) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-layout__text .section__tag,
.split-layout__text .section__title,
.split-layout__text .section__desc {
  text-align: left;
}

.split-layout__text .section__desc {
  margin: 0 0 24px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

/* Shield visual */
.split-layout__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-visual {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.shield-ring--1 {
  width: 100%;
  height: 100%;
  border-color: rgba(108, 92, 231, 0.15);
  animation: ringPulse 3s ease-in-out infinite;
}

.shield-ring--2 {
  width: 75%;
  height: 75%;
  border-color: rgba(0, 206, 201, 0.15);
  animation: ringPulse 3s ease-in-out 1s infinite;
}

.shield-ring--3 {
  width: 50%;
  height: 50%;
  border-color: rgba(253, 121, 168, 0.15);
  animation: ringPulse 3s ease-in-out 2s infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}

.shield-icon {
  width: 64px;
  height: 64px;
  color: var(--accent-2);
  filter: drop-shadow(0 0 20px rgba(0, 206, 201, 0.3));
}

/* Brand grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-item {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.brand-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.brand-item__number {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.brand-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.brand-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.section--cta {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
  border: 1px solid rgba(108, 92, 231, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(108, 92, 231, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(0, 206, 201, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-box__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-box__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
}

.cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer__col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer__col a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 14, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .services__grid,
  .detail-grid,
  .ai-features,
  .dev-columns,
  .cloud-grid,
  .cloud-grid--3col,
  .brand-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout__visual {
    order: -1;
  }

  .hero__stats {
    gap: 32px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .cta-box__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }

  .stat__number, .stat__plus {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 24px;
  }
}
