*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}



.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-surface);
}

.center {
  text-align: center;
}




/* ============================= */
/* CLOUD HERO PREMIUM DESIGN */
/* ============================= */

.cloud-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.cloud-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ===== LEFT CONTENT ===== */

.cloud-badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cloud-title {
  font-size: 52px;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 16px;
}

.cloud-title span {
  color: var(--accent);
}

.cloud-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.cloud-description {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 16px;
}

/* ===== CTA BUTTONS ===== */

.cloud-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 30px;
}

.btn-premium {
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all .4s var(--ease-premium);
  position: relative;
  overflow: hidden;
}

/* PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 30px rgba(226,108,12,0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(226,108,12,0.5);
}

/* OUTLINE */
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

/* GLOW BUTTON */
.btn-glow {
  background: var(--bg-dark);
  color: rgb(0, 0, 0);
  box-shadow: 0 0 0 transparent;
}

.btn-glow:hover {
  box-shadow:
    0 0 20px rgba(226,108,12,.6),
    0 0 40px rgba(226,108,12,.4);
  transform: translateY(-4px);
}

/* ===== RIGHT VISUAL ===== */

.cloud-hero-visual {
  position: relative;
  height: 420px;
}

/* GLASS CARD */
.cloud-glass-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  animation: float 6s ease-in-out infinite;
}

.cloud-card-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.cloud-card-lines {
  height: 6px;
  background: linear-gradient(90deg,var(--accent),transparent);
  border-radius: 10px;
}

/* FLOATING GLOWS */
.cloud-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.glow-1 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: -40px;
  right: 0;
}

.glow-2 {
  width: 160px;
  height: 160px;
  background: var(--primary);
  bottom: 0;
  left: 20px;
}

.glow-3 {
  width: 120px;
  height: 120px;
  background: var(--accent-2);
  top: 50%;
  left: 50%;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .cloud-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cloud-title {
    font-size: 36px;
  }

  .cloud-subtitle {
    font-size: 18px;
  }

  .cloud-cta {
    justify-content: center;
  }

  .cloud-hero-visual {
    height: 300px;
  }
}





/* ================================= */
/* CLOUD SERVICES PREMIUM SECTION */
/* ================================= */

.cloud-services {
  padding: 120px 20px;
  background: var(--bg-surface);
}

.cloud-services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.cloud-services-header {
  text-align: center;
  margin-bottom: 70px;
}

.cloud-services-header h2 {
  font-size: 42px;
  color: var(--text-strong);
  margin-bottom: 16px;
}

.cloud-services-header p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GRID */
.cloud-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.cloud-service-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: all .5s var(--ease-premium);
  overflow: hidden;
  position: relative;
  z-index: 1;

}

/* gradient border glow */
.cloud-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), transparent);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: .4s;
}

.cloud-service-card:hover::before {
  opacity: 1;
}

.cloud-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

/* ICON */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-icon.aws { background:#ff9900; }
.service-icon.azure { background:#0078d4; }
.service-icon.gcp { background:#ea4335; }

/* TEXT */
.cloud-service-card h3 {
  margin-bottom: 14px;
  color: var(--text-strong);
}

.cloud-service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* LIST */
.cloud-service-card ul {
  margin-bottom: 20px;
  padding-left: 18px;
}

.cloud-service-card li {
  margin-bottom: 8px;
  color: var(--text-main);
}

/* LINK */
.service-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: .3s;
  
    position: relative;
  z-index: 50;
}

.service-link:hover {
  letter-spacing: .5px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {
  .cloud-services-grid {
    grid-template-columns: 1fr;
  }

  .cloud-services-header h2 {
    font-size: 32px;
  }

  .cloud-service-card {
    padding: 28px;
  }
}





/* ================================= */
/* WHY CHOOSE PREMIUM SECTION */
/* ================================= */

.cloud-why {
  position: relative;
  padding: 50px 20px;
  background: var(--bg-light);
  overflow: hidden;
}

.cloud-why-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.cloud-why-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-strong);
}

.cloud-why-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* FEATURE LIST */

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  transition: .3s;
}

.why-item:hover {
  transform: translateX(8px);
  color: var(--primary);
}

/* animated gradient bar */
.why-bar {
  width: 6px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(226,108,12,.4);
}

/* ============================= */
/* RIGHT VISUAL */
/* ============================= */

.cloud-why-visual {
  position: relative;
  height: 420px;
}

/* FLOATING CARDS */

.why-card {
  position: absolute;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  font-weight: 600;
  color: var(--primary);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 { top: 0; left: 0; animation-delay: 0s; }
.card-2 { top: 60px; right: 0; animation-delay: 1s; }
.card-3 { bottom: 80px; left: 40px; animation-delay: 2s; }
.card-4 { bottom: 0; right: 30px; animation-delay: 3s; }

/* FLOAT ANIMATION */
@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}

/* ============================= */
/* AMBIENT GLOW */
/* ============================= */

.why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .4;
}

.glow-a {
  width: 220px;
  height: 220px;
  background: var(--accent);
  top: 30px;
  right: 20px;
}

.glow-b {
  width: 180px;
  height: 180px;
  background: var(--primary);
  bottom: 40px;
  left: 20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .cloud-why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cloud-why-content h2 {
    font-size: 32px;
  }

  .why-item {
    justify-content: center;
  }

  .cloud-why-visual {
    height: 320px;
    margin-top: 40px;
  }
}




/* ============================= */
/* LEFT RIGHT PROCESS TIMELINE */
/* ============================= */

.cloud-process {
  padding: 50px 20px;
  background: var(--bg-surface);
}

.cloud-process-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.process-header p {
  max-width: 700px;
  margin: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================= */
/* TIMELINE */
/* ============================= */

.process-timeline {
  position: relative;
}

/* center vertical line */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(var(--accent), var(--accent-2), var(--primary));
  border-radius: 10px;
}

/* STEP BASE */
.process-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 60px;
}

/* LEFT */
.process-step.left {
  left: 0;
  text-align: right;
}

/* RIGHT */
.process-step.right {
  left: 50%;
}

/* NUMBER */
.step-number {
  position: absolute;
  top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--accent),var(--accent-2));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(226,108,12,.4);
}

.process-step.left .step-number {
  right: -25px;
}

.process-step.right .step-number {
  left: -25px;
}

/* CARD */
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: all .4s var(--ease-premium);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.step-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-main);
  line-height: 1.6;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {

  .process-timeline::before {
    left: 20px;
  }

  .process-step {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .process-step.right {
    left: 0;
  }

  .step-number {
    left: -5px !important;
    right: auto !important;
  }

  .process-header h2 {
    font-size: 30px;
  }
}



/* ================================= */
/* FINAL CONVERSION SECTION */
/* ================================= */

.cloud-conversion {
  position: relative;
  padding: 50px 20px;
  background: linear-gradient(135deg,#ffffff,#f8fafc);
  overflow: hidden;
}

.cloud-conversion-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============================= */
/* LEFT CONTENT */
/* ============================= */

.conversion-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 18px;
}

.conversion-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.conversion-content h2 span {
  color: var(--accent);
}

.conversion-text {
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* VALUE POINTS */

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.point-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(var(--accent),var(--accent-2));
  color: white;
  font-size: 14px;
}

/* ============================= */
/* CTA CARD */
/* ============================= */

.conversion-cta-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.6);
}

.conversion-cta-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.conversion-cta-card p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-conversion {
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s var(--ease-premium);
}

/* primary */
.btn-conversion.primary {
  background: linear-gradient(135deg,var(--accent),var(--accent-2));
  color: white;
  box-shadow: 0 12px 30px rgba(226,108,12,.35);
}

.btn-conversion.primary:hover {
  transform: translateY(-4px);
}

/* outline */
.btn-conversion.outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-conversion.outline:hover {
  background: var(--primary);
  color: white;
}

/* glow */
.btn-conversion.glow {
  background: var(--bg-dark);
  color: rgb(0, 0, 0);
}

.btn-conversion.glow:hover {
  box-shadow:
    0 0 20px rgba(226,108,12,.6),
    0 0 40px rgba(226,108,12,.4);
}

/* ============================= */
/* AMBIENT LIGHT */
/* ============================= */

.conversion-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: var(--accent);
  top: 40px;
  right: 40px;
}

.glow-2 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  bottom: 20px;
  left: 20px;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 900px) {
  .cloud-conversion-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .conversion-content h2 {
    font-size: 32px;
  }
}
