/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #070b14;
  --bg-2:      #0d1221;
  --bg-card:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --purple:    #7c3aed;
  --purple-l:  #a855f7;
  --cyan:      #06b6d4;
  --cyan-l:    #67e8f9;
  --orange:    #f97316;
  --green:     #22c55e;
  --text:      #f1f5f9;
  --text-muted:#94a3b8;
  --radius:    14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

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

.gradient-text {
  background: linear-gradient(135deg, var(--purple-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  box-shadow: 0 0 30px rgba(124,58,237,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,58,237,0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.2);
}

.btn--nav {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  padding: 9px 22px;
  font-size: 0.88rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__logo span { color: var(--purple-l); }
.logo-icon { font-size: 1.1rem; color: var(--cyan); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.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: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 60px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.orb--1 {
  width: 600px; height: 600px;
  background: var(--purple);
  top: -200px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb--2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: 200px; right: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.orb--3 {
  width: 300px; height: 300px;
  background: #7c3aed;
  bottom: 0; left: 40%;
  animation: float 7s ease-in-out infinite 2s;
}
.orb--4 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content { flex: 1; max-width: 620px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-l);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { font-size: 0.78rem; color: var(--text-muted); }
.stat__divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* Dashboard Card */
.hero__visual { flex: 0 0 auto; }

.dashboard-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 340px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: card-float 5s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.dash-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--red    { background: #ef4444; }
.dot--yellow { background: #eab308; }
.dot--green  { background: #22c55e; }
.dash-title { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

.dash-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 16px; }

.dash-metric { display: flex; align-items: center; gap: 10px; }
.metric-label { font-size: 0.75rem; color: var(--text-muted); width: 60px; flex-shrink: 0; }
.metric-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-l));
  border-radius: 3px;
  transition: width 1.5s ease;
}
.metric-fill--blue  { background: linear-gradient(90deg, var(--cyan), var(--cyan-l)); }
.metric-fill--green { background: linear-gradient(90deg, #16a34a, var(--green)); }
.metric-val { font-size: 0.75rem; color: var(--text-muted); width: 32px; text-align: right; }

.dash-boxes { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.dash-box {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-box--green { background: rgba(34,197,94,0.1); color: var(--green); }
.dash-box--blue  { background: rgba(6,182,212,0.1); color: var(--cyan); }

/* ===========================
   SECTION SHARED
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-l);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(124,58,237,0.35);
}

.service-card--featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08));
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
}

.service-card__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

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

.service-card__icon--purple { background: rgba(124,58,237,0.2); color: var(--purple-l); }
.service-card__icon--cyan   { background: rgba(6,182,212,0.2);  color: var(--cyan); }
.service-card__icon--orange { background: rgba(249,115,22,0.2); color: var(--orange); }
.service-card__icon--green  { background: rgba(34,197,94,0.2);  color: var(--green); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 7px; }
.service-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-l);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover { color: var(--cyan); }

/* ===========================
   CLOUD HERO CARD
=========================== */
.service-card--cloud-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(6,182,212,0.10) 60%, rgba(7,11,20,0) 100%);
  border-color: rgba(124,58,237,0.45);
  box-shadow: 0 0 60px rgba(124,58,237,0.18), 0 20px 60px rgba(0,0,0,0.35);
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.service-card--cloud-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.service-card__badge--main {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  font-size: 0.78rem;
  padding: 5px 16px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.cloud-hero__left {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
}
.cloud-hero__left h3 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.cloud-hero__left p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cloud-hero__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.provider-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.service-card__icon--lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.service-card__icon--lg svg { width: 32px; height: 32px; }

.cloud-hero__right { flex: 1; }

.cloud-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.cloud-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cloud-feature__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.cloud-feature strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cloud-feature span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .service-card--cloud-hero {
    flex-direction: column;
    gap: 32px;
  }
  .cloud-hero__left { flex: none; width: 100%; }
  .cloud-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cloud-features-grid { grid-template-columns: 1fr; }
  .service-card--cloud-hero { padding: 32px 22px; }
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 0;
}
.about__container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.about__visual {
  flex: 0 0 420px;
  position: relative;
  height: 380px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: absolute;
  transition: transform 0.3s;
}
.about-card:hover { transform: scale(1.03); }

.about-card--main {
  width: 260px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.08));
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.about-card--top  { width: 200px; top: 10px;  right: 10px; }
.about-card--bottom { width: 200px; bottom: 10px; left: 10px; }

.about-icon { font-size: 1.8rem; margin-bottom: 10px; }
.about-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.about-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.about__text { flex: 1; }
.about__text .section-tag { margin-bottom: 12px; display: inline-block; }
.about__text .section-title { margin-bottom: 20px; text-align: left; }
.about__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tag:hover { border-color: var(--purple-l); color: var(--text); }

/* ===========================
   PROCESS
=========================== */
.process {
  padding: 100px 0;
  background: var(--bg-2);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.3);
}

.step__num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}
.step__content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-top: 36px;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.contact__container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact__text { flex: 1; }
.contact__text .section-tag { margin-bottom: 12px; display: inline-block; }
.contact__text .section-title { text-align: left; margin-bottom: 16px; }
.contact__text > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact__info { display: flex; flex-direction: column; gap: 16px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact__icon { font-size: 1.2rem; }

.contact__form {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-l);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { height: 100px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__container {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
}

.footer__brand { flex: 1.5; }
.footer__brand .nav__logo { margin-bottom: 16px; display: inline-flex; }
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links { flex: 1; }
.footer__links h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__bottom p { font-size: 0.82rem; color: var(--text-muted); }

/* ===========================
   ANIMATIONS (entrance)
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }
  .hero__content { max-width: 100%; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { display: none; }

  .about__container { flex-direction: column; gap: 48px; }
  .about__visual { width: 100%; flex: none; }
  .about__text .section-title { text-align: center; }
  .about__text .section-tag { display: block; text-align: center; }
  .about__tags { justify-content: center; }
  .about__text { text-align: center; }
  .contact__container { flex-direction: column; gap: 48px; }
  .contact__text .section-title { text-align: center; }
  .contact__text .section-tag { display: block; text-align: center; }
  .contact__text > p { text-align: center; }
  .contact__info { align-items: center; }
  .footer__container { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(7,11,20,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
  }
  .nav__links.open li { padding: 0 24px; }
  .nav__links.open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav__toggle { display: flex; }
  .nav { position: relative; padding: 16px 0; }
  .nav.scrolled { position: fixed; }

  .process__steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); margin: 0; }
  .step { max-width: 100%; width: 100%; }
  .about__visual { height: 300px; }
  .about-card--main { width: 220px; }
  .about-card--top, .about-card--bottom { width: 170px; }
}
