  /* HERO SECTION  */

   .ai-page * {
  box-sizing: border-box;
}

.ai-page {
  font-family: 'Inter', sans-serif;
  background: #0a0f1c;
  color: white;
}

    /* TYPEWRITiNG  */

    /* Typewriter cursor (works anywhere you add data-tw) */
    
    /* HERO */
  :root {
  --cloud-bg-1: #071128;
  --cloud-bg-2: #0b1630;
  --cloud-bg-3: #102344;
  --cloud-panel: rgba(17, 28, 49, 0.78);
  --cloud-border: rgba(255, 255, 255, 0.08);
  --cloud-white: #f4f7fb;
  --cloud-muted: rgba(219, 228, 242, 0.62);
  --cloud-blue-1: #76a8ff;
  --cloud-blue-2: #4b82ff;
  --cloud-blue-3: #2f69f3;
  --cloud-green: #41e27d;
  --cloud-orange: #ff7a1a;
  --cloud-metrics-bg: #142b4d;
}

/* SECTION */
.cloud-hero {
  padding-top: 5vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 18%, rgba(43, 108, 255, 0.16), transparent 22%),
    radial-gradient(circle at 61% 48%, rgba(43, 108, 255, 0.1), transparent 28%),
    linear-gradient(90deg, #061126 0%, #08142c 34%, #0a1731 65%, #102447 100%);
  color: var(--cloud-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* subtle blue center wash */
.cloud-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 34%,
      rgba(44, 109, 255, 0.08) 52%,
      rgba(0, 0, 0, 0) 70%
    );
  pointer-events: none;
}

/* TOP AREA */
.cloud-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1568px;
  margin: 0 auto;
  padding: 76px 72px 58px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

/* LEFT */
.cloud-hero__content {
  max-width: 760px;
  padding-top: 6px;
}

.cloud-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(83, 141, 255, 0.2);
  background: rgba(29, 62, 118, 0.28);
  color: #4f8cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
}

.cloud-hero__title {
  margin: 0;
  font-size: 62px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #f4f6fb;
}

.cloud-hero__title-gradient {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(180deg, #6ea7ff 0%, #4b82ff 52%, #3a72f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cloud-hero__text {
  max-width: 640px;
  margin: 36px 0 0;
  font-size: 20px;
  line-height: 1.68;
  font-weight: 400;
  color: rgba(210, 221, 237, 0.68);
}

.cloud-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}

.cloud-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 64px;
  padding: 0 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.cloud-btn--primary {
  background: #ff7a22;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(255, 122, 34, 0.18);
}

.cloud-btn--primary:hover {
  transform: translateY(-2px);
  background: #ff842f;
}

.cloud-btn--secondary {
  background: transparent;
  color: #f3f6fb;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cloud-btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

/* RIGHT VISUAL */
.cloud-hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cloud-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin-right: 18px;
}

.cloud-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 475px;
  object-fit: cover;
  border-radius: 0;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* FLOATING STATS */
.cloud-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 126px;
  padding: 16px 18px 15px;
  border-radius: 16px;
  background: rgba(30, 42, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cloud-stat--top {
  top: -52px;
  right: -34px;
}

.cloud-stat--bottom {
  left: -36px;
  bottom: -36px;
  min-width: 164px;
}

.cloud-stat__label {
  font-size: 14px;
  line-height: 1.2;
  color: rgba(214, 222, 237, 0.56);
  font-weight: 500;
}

.cloud-stat__value {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cloud-stat__value--blue {
  color: #4d88ff;
  font-size: 29px;
}

.cloud-stat__value--green {
  color: #43e381;
  font-size: 20px;
}

/* METRICS BAR */
.cloud-hero__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  padding: 34px 72px 36px;
  background: #142b4d;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cloud-metric {
  text-align: center;
}

.cloud-metric h3 {
  margin: 0 0 8px;
  color: #f6f8fc;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cloud-metric p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(210, 220, 235, 0.58);
}

/* LARGE DESKTOP TUNING */
@media (min-width: 1500px) {
  .cloud-hero__title {
    font-size: 76px;
  }

  .cloud-hero__image-wrap img {
    height: 505px;
  }
}

/* TABLET */
@media (max-width: 1200px) {
  .cloud-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 64px 32px 48px;
  }

  .cloud-hero__content {
    max-width: 100%;
  }

  .cloud-hero__title {
    font-size: 58px;
  }

  .cloud-hero__text {
    font-size: 18px;
    max-width: 100%;
  }

  .cloud-hero__visual {
    justify-content: center;
  }

  .cloud-hero__image-wrap {
    margin-right: 0;
    max-width: 760px;
  }

  .cloud-hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 32px;
    gap: 28px 16px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .cloud-hero__inner {
    padding: 44px 20px 38px;
    gap: 40px;
  }

  .cloud-hero__badge {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .cloud-hero__title {
    font-size: 42px;
    line-height: 0.98;
  }

  .cloud-hero__title-gradient {
    margin-top: 10px;
  }

  .cloud-hero__text {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.65;
  }

  .cloud-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 32px;
  }

  .cloud-btn {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 16px;
  }

  .cloud-hero__image-wrap img {
    height: 320px;
  }

  .cloud-stat--top {
    top: 14px;
    right: 14px;
  }

  .cloud-stat--bottom {
    left: 14px;
    bottom: 14px;
  }

  .cloud-stat {
    min-width: 110px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .cloud-stat__label {
    font-size: 12px;
  }

  .cloud-stat__value--blue {
    font-size: 24px;
  }

  .cloud-stat__value--green {
    font-size: 18px;
  }

  .cloud-hero__metrics {
    grid-template-columns: 1fr 1fr;
    padding: 26px 20px 28px;
    gap: 24px 12px;
  }

  .cloud-metric h3 {
    font-size: 30px;
  }

  .cloud-metric p {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* COMPARISON  */

.infra-section{

background:#f3f5f7;
padding:110px 20px;

font-family:Inter,system-ui;

}


.infra-container{

max-width:1200px;
margin:auto;
text-align:center;

}


.infra-title{

font-size:44px;
font-weight:700;
color:#1b2430;
margin-bottom:18px;

}


.infra-sub{

max-width:700px;
margin:auto;
font-size:18px;
line-height:1.6;
color:#7b8794;

margin-bottom:70px;

}


/* GRID */

.infra-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}


/* CARD */

.infra-card{

border-radius:22px;
padding:34px;
text-align:left;

transition:transform .3s ease, box-shadow .3s ease;

}

.infra-card:hover{

transform:translateY(-6px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);

}


/* LEGACY */

.infra-card-legacy{

background:#6d7c90;
color:white;

}


/* MODERN */

.infra-card-modern{

background:#020f2a;
color:white;

}


/* TITLES */

.infra-card-title{

font-weight:600;
font-size:20px;
margin-bottom:22px;

}


.infra-card-title.legacy{

color:#ff7b32;

}

.infra-card-title.modern{

color:#4b8bff;

}


/* LIST */

.infra-list{

list-style:none;
padding:0;
margin-bottom:28px;

}

.infra-list li{

margin-bottom:12px;
font-size:16px;
display:flex;
align-items:center;

}


.legacy-list li::before{

content:"•";
color:#ff7b32;
margin-right:10px;
font-size:20px;

}


.modern-list li::before{

content:"•";
color:#4b8bff;
margin-right:10px;
font-size:20px;

}


/* IMAGE */

.infra-image{

width:100%;
border-radius:8px;
margin-top:10px;

}


/* RESPONSIVE */

@media(max-width:900px){

.infra-grid{

grid-template-columns:1fr;

}

}
.infra-card-modern{

background:#020f2a;
color:white;

box-shadow:
0 20px 60px rgba(0,0,0,0.4),
0 0 40px rgba(59,130,246,0.25);

}

/* CYCLE  */

.cloud-lifecycle{

background:
linear-gradient(180deg,#081428,#0d1e36);

padding:110px 40px;
color:white;

font-family:Inter,system-ui;

}


.cloud-container{

max-width:1200px;
margin:auto;

}


.cloud-title{

font-size:42px;
font-weight:700;

margin-bottom:60px;

position:relative;

}


/* underline */

.cloud-title::after{

content:"";

display:block;

width:340px;
height:4px;

margin-top:16px;

background:
linear-gradient(90deg,#4e8cff,#6da4ff);

border-radius:4px;

}


/* GRID */

.cloud-grid{

display:grid;
grid-template-columns:repeat(3,1fr);

gap:34px;

}


/* CARD */

.cloud-card{

background:
linear-gradient(
145deg,
rgba(255,255,255,0.04),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.08);

padding:34px;

border-radius:18px;

transition:
transform .35s ease,
box-shadow .35s ease;

}


.cloud-card:hover{

transform:translateY(-8px);

box-shadow:
0 20px 60px rgba(0,0,0,0.35);

}


/* ICON */

.cloud-icon{

width:52px;
height:52px;

display:flex;
align-items:center;
justify-content:center;

border-radius:12px;

background:
rgba(61,122,255,0.15);

margin-bottom:20px;

font-size:22px;

}


/* TEXT */

.cloud-card h3{

font-size:22px;
margin-bottom:12px;

}


.cloud-card p{

font-size:16px;
line-height:1.6;

color:rgba(255,255,255,0.65);

}


/* RESPONSIVE */

@media(max-width:1000px){

.cloud-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:640px){

.cloud-grid{

grid-template-columns:1fr;

}

.cloud-title::after{

width:220px;

}

}

.cloud-card:hover{

transform:translateY(-8px);

box-shadow:
0 20px 60px rgba(0,0,0,0.35),
0 0 30px rgba(70,120,255,0.25);

}

/* FRAMEWORKS */

.framework {
  position: relative;
  overflow: hidden;
  background: #ececec;
  padding: 96px 40px 140px;
  font-family: Inter, system-ui, sans-serif;
}

/* BG IMAGE */
.framework-bg {
  position: absolute;
  inset: 0;
  background: url("../images/cloud-solutions/framebg.webp") center bottom / cover no-repeat;
  opacity: 1;
  z-index: 1;
}

/* THIS IS THE IMPORTANT FIX */
.framework-whitewash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to bottom,
      rgba(245, 245, 246, 0.96) 0%,
      rgba(242, 242, 243, 0.93) 22%,
      rgba(240, 240, 241, 0.88) 42%,
      rgba(239, 239, 240, 0.72) 62%,
      rgba(238, 238, 239, 0.52) 78%,
      rgba(238, 238, 239, 0.28) 90%,
      rgba(238, 238, 239, 0.14) 100%
    );
}

/* optional extra softness */
.framework-whitewash::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.32), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,0.20), rgba(255,255,255,0));
  pointer-events: none;
}

.framework-container {
  position: relative;
  z-index: 3;
  max-width: 1820px;
  margin: 0 auto;
}

.framework-header {
  text-align: center;
  margin-bottom: 112px;
}

.framework-header h2 {
  margin: 0;
  font-size: 66px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #162034;
}

.framework-header p {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.45;
  color: #8e96a3;
}

.framework-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
  padding-top: 62px;
}

.timeline-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 82px;
  height: 3px;
  background: rgba(182, 194, 220, 0.72);
}

.phase {
  position: relative;
}

.phase-circle {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: #071a3b;
  border: 4px solid #2d6ddb;
  box-shadow: 0 8px 18px rgba(20, 42, 88, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1f4f9;
  font-size: 23px;
  font-weight: 700;
}

.phase h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #182132;
}

.phase span {
  display: block;
  font-size: 17px;
  line-height: 1.45;
  color: #707988;
}

@media (max-width: 980px) {
  .framework {
    padding: 72px 20px 80px;
  }

  .framework-header {
    margin-bottom: 64px;
  }

  .framework-header h2 {
    font-size: 40px;
  }

  .framework-header p {
    font-size: 18px;
  }

  .framework-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
  }

  .timeline-line {
    display: none;
  }
}

.framework-whitewash {
  background:
    linear-gradient(
      to bottom,
      rgba(245,245,246,0.98) 0%,
      rgba(243,243,244,0.95) 28%,
      rgba(241,241,242,0.90) 50%,
      rgba(239,239,240,0.78) 70%,
      rgba(238,238,239,0.58) 86%,
      rgba(238,238,239,0.30) 100%
    );
}

.framework {
  background: #efefef;
}

.timeline-line {
  background: #bcc7db;
  opacity: 0.7;
}

.framework-header h2 {
  color: #172033;
}

.framework-header p {
  color: #8d96a3;
}

/* FAQ */

.faq-section{

background:
linear-gradient(
180deg,
#0b1629,
#081124
);

padding:120px 20px;

font-family:Inter,system-ui;

color:white;

}


.faq-container{

max-width:900px;
margin:auto;

}


.faq-title{

text-align:center;
font-size:38px;
font-weight:700;

margin-bottom:60px;

}


/* LIST */

.faq-list{

display:flex;
flex-direction:column;
gap:20px;

}


/* ITEM */

.faq-item{

border-radius:14px;
overflow:hidden;

background:
linear-gradient(
145deg,
rgba(255,255,255,0.06),
rgba(255,255,255,0.02)
);

border:1px solid rgba(255,255,255,0.08);

transition:all .3s ease;

}


/* QUESTION */

.faq-question{

width:100%;
background:none;
border:none;

display:flex;
align-items:center;
justify-content:space-between;

padding:24px 28px;

color:white;
font-size:18px;

cursor:pointer;

text-align:left;

}


/* ICON */

.faq-icon{

width:22px;
height:22px;

stroke:white;
stroke-width:2;
fill:none;

transition:transform .3s ease;

}


/* ANSWER */

.faq-answer{

max-height:0;
overflow:hidden;

transition:max-height .35s ease;

padding:0 28px;

color:#c7cfdd;

}


.faq-answer p{

padding-bottom:22px;
line-height:1.6;

}


/* ACTIVE */

.faq-item.active .faq-answer{

max-height:200px;

}

.faq-item.active .faq-icon{

transform:rotate(180deg);

}
.faq-item:hover{

box-shadow:
0 20px 60px rgba(0,0,0,.35),
0 0 30px rgba(80,120,255,.15);

}

/* FEATURING  */

.partners{

background:
linear-gradient(
180deg,
#0e1a2d,
#0a1426
);

padding:38px 20px 46px;

border-top:1px solid rgba(255,255,255,.04);

font-family:Inter,system-ui;

color:white;

}


.partners-container{

max-width:1200px;
margin:auto;
text-align:center;

}


/* LABEL */

.partners-label{

font-size:13px;
letter-spacing:2px;

color:#7f8ca3;

margin-bottom:28px;

}


/* ROW */

.partners-row{

display:flex;
justify-content:space-between;
align-items:center;

gap:40px;

flex-wrap:wrap;

}


/* TEXT */

.partners-row span{

font-size:22px;
font-weight:700;

color:#a8b3c6;

opacity:.85;

transition:all .3s ease;

}


/* HOVER */

.partners-row span:hover{

color:white;
opacity:1;

}


/* RESPONSIVE */

@media(max-width:900px){

.partners-row{

justify-content:center;
gap:28px;

}

.partners-row span{

font-size:18px;

}

}

.partners{

background:
radial-gradient(
circle at center,
rgba(70,110,200,.15),
transparent 70%
),
linear-gradient(
180deg,
#0e1a2d,
#0a1426
);

}

/* CTA  */

.consultation{

background:#ececec;
padding:120px 20px;

font-family:Inter,system-ui;

}


/* CARD */

.consultation-card{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;

border-radius:26px;
overflow:hidden;

background:linear-gradient(
90deg,
#ff6b13 0%,
#ff6b13 50%,
#1e3a5f 50%,
#1e3a5f 100%
);

box-shadow:
0 40px 120px rgba(0,0,0,.15);

}


/* LEFT */

.consultation-left{

padding:60px;
color:white;

}

.consultation-left h2{

font-size:38px;
margin-bottom:20px;

}

.consultation-left p{

font-size:18px;
line-height:1.6;
margin-bottom:40px;

}


/* POINTS */

.consult-point{

display:flex;
gap:18px;
margin-bottom:26px;

}

.check{

width:44px;
height:44px;

background:rgba(255,255,255,.25);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;

}

.consult-point h4{

margin-bottom:4px;

}

.consult-point span{

opacity:.9;
font-size:14px;

}


/* FORM */

.consultation-form{

padding:60px;
color:white;

}


/* ROW */

.row-form{

display:grid;
grid-template-columns:1fr 1fr;
gap:18px;

}


/* FIELD */

.field{

display:flex;
flex-direction:column;
margin-bottom:18px;

}

.field label{

font-size:12px;
letter-spacing:1px;
opacity:.7;

margin-bottom:6px;

}

.field input,
.field select,
.field textarea{

background:rgba(10,25,50,.7);

border:1px solid rgba(255,255,255,.08);

padding:14px;

border-radius:10px;

color:white;

backdrop-filter:blur(6px);

}

.field textarea{

height:110px;
resize:none;

}


/* BUTTON */

.cta{

width:100%;
margin-top:18px;

padding:16px;

border:none;
border-radius:12px;

font-size:18px;

background:linear-gradient(
90deg,
#4e7de0,
#5e8eed
);

color:white;

cursor:pointer;

transition:.25s;

box-shadow:
0 8px 25px rgba(90,140,255,.45);

}

.cta:hover{

transform:translateY(-3px);
box-shadow:
0 16px 40px rgba(90,140,255,.6);

}


/* NOTE */

.note{

margin-top:12px;
font-size:12px;
opacity:.6;
text-align:center;

}


/* RESPONSIVE */

@media(max-width:900px){

.consultation-card{

grid-template-columns:1fr;

}

.consultation-left,
.consultation-form{

padding:40px;

}

.row{

grid-template-columns:1fr;

}

}



section{
position:relative;
overflow:hidden;
}

section::before{
content:"";
position:absolute;
inset:-200px;
background:radial-gradient(circle at center,
rgba(79,180,255,.12),
transparent 70%);
opacity:0;
transition:opacity .6s ease;
pointer-events:none;
}

section.in-view::before{
opacity:1;
}

/* BUTTON EFFECTS ONLY */

.cloud-btn,
.cta {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

/* keep text white always */
.cloud-btn,
.cloud-btn:hover,
.cloud-btn:focus,
.cloud-btn:active,
.cta,
.cta:hover,
.cta:focus,
.cta:active {
  color: #fff !important;
  text-decoration: none;
}

/* shimmer layer */
.cloud-btn::before,
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255,255,255,.28),
    transparent
  );
  transform: skewX(-20deg);
  transition: left .7s ease;
}

/* hover shimmer */
.cloud-btn:hover::before,
.cta:hover::before {
  left: 140%;
}

/* hover lift */
.cloud-btn:hover,
.cta:hover {
  transform: translateY(-3px);
}

/* active press */
.cloud-btn:active,
.cta:active {
  transform: translateY(1px) scale(.98);
}

/* primary orange button */
.cloud-btn--primary,
.cta {
  background: linear-gradient(135deg, #f15a0f, #ff7a2f);
  box-shadow: 0 14px 34px rgba(241, 90, 15, .35);
}

.cloud-btn--primary:hover,
.cta:hover {
  background: linear-gradient(135deg, #ff6a1a, #ff8a3d);
  box-shadow: 0 18px 42px rgba(241, 90, 15, .45);
}

/* secondary outline button */
.cloud-btn--secondary {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.cloud-btn--secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}

.cloud-btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
