/* ================= HERO ================= */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f9fc 100%
  );
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  letter-spacing: -0.8px;
  max-width: 820px;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin-top: 18px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-teal));
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
}

.btn-outline {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
}

/* ================= TRUST BAR ================= */
.trust-bar {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-item {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* ================= VALUE PILLARS ================= */
.value-pillars {
  padding: 100px 0;
  background: var(--bg-soft);
}

.pillars-header {
  max-width: 700px;
  margin-bottom: 56px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

/* ================= SERVICES GRID ================= */

.services-grid-section {
  padding: 96px 0;
  background: #ffffff;
}

.services-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.services-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.services-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

/* SERVICE CARD */

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;

  text-decoration: none;
  color: inherit;

  transition: all 0.28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 94, 138, 0.14);
  border-color: rgba(31, 138, 203, 0.35);
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* subtle brand divider */
.service-card::after {
  content: "";
  display: block;
  margin-top: 18px;
  width: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-teal)
  );
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= HOW WE WORK ================= */
.how-we-work {
  padding: 100px 0;
  background: var(--bg-soft);
}

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

.phase {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.phase-number {
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

/* ================= WHY MYCLOUDSME ================= */
.why-mycloudsme {
  padding: 100px 0;
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 20px;
}

.metric-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--brand-primary);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-layout,
  .why-content {
    grid-template-columns: 1fr;
  }

  .pillars-grid,
  .services-grid,
  .workflow,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillars-grid,
  .services-grid,
  .workflow,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }
}
/* ================= HERO LAYOUT FIX ================= */

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* ================= HERO KPIs ================= */

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.kpi {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(15,94,138,0.08);
}

.kpi-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}

.kpi-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ================= HERO VISUAL ================= */

.hero-visual {
  position: relative;
  height: 280px;
}

.hero-cloud {
  position: relative;
  width: 320px;
  height: 200px;
  margin: auto;
}

/* Cloud layers */
.cloud-layer {
  position: absolute;
  width: 200px;
  height: 140px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(31,138,203,0.35),
    rgba(27,170,143,0.18),
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(10px);
  animation: cloudFloat 10s ease-in-out infinite;
}

.c1 { top: 30px; left: 40px; }
.c2 { top: 0; left: 0; animation-delay: -3s; }
.c3 { top: 0; right: 0; animation-delay: -6s; }

/* Particles */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(31,138,203,0.9);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(31,138,203,0.6);
  animation: particleFloat 6s ease-in-out infinite;
}

.p1 { top: 40px; left: 80px; }
.p2 { top: 120px; left: 40px; }
.p3 { top: 90px; right: 60px; }
.p4 { bottom: 40px; left: 140px; }
.p5 { bottom: 60px; right: 120px; }

/* Animations */
@keyframes cloudFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes particleFloat {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .hero-kpis {
    grid-template-columns: 1fr;
  }
}
/* ================= FINAL HERO POLISH ================= */

.hero {
  padding: 140px 0 120px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f8fbfd 100%
  );
}

/* TEXT BLOCK */

.hero-text h1 {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 34px;
}

/* CTA POLISH */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
}

.btn-outline {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 10px;
}

/* KPI POLISH */

.hero-kpis {
  margin-top: 44px;
}

.kpi {
  padding: 18px 16px;
}

.kpi-value {
  font-size: 36px;
}

.kpi-label {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* VISUAL CENTERING */

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= RESPONSIVE TYPO ================= */

@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 100px;
  }

  .hero-text h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 90px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================= TRUST BAR – ENTERPRISE POLISH ================= */

.trust-bar {
  padding: 44px 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f5f9fc 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;

  color: var(--text-main);
  background: #ffffff;

  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);

  transition: all 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.trust-item span {
  white-space: nowrap;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }
}
/* ================= WHY MYCLOUDSME ================= */

.why-mycloudsme {
  padding: 100px 0;
  background: var(--bg-soft);
}

.why-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.why-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.why-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
}

/* DIFFERENTIATORS */

.why-points {
  display: grid;
  gap: 28px;
}

.why-point h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* METRICS */

.why-metrics {
  display: grid;
  gap: 20px;
}

.metric {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
}

.metric-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-primary);
}

.metric-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .why-content {
    grid-template-columns: 1fr;
  }
}
.why-proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.proof-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px 22px;
}

.proof-title{
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-0.2px;
}

.proof-list{
  margin:0;
  padding-left:18px;
  color: var(--text-muted);
  line-height:1.7;
  font-size:14.5px;
}

@media (max-width: 900px){
  .why-proof{ grid-template-columns: 1fr; }
}
.content-section {
  padding: 80px 0;
}

.content-section.bg-soft {
  background: #f8fafc;
}
.content-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.content-section p {
  max-width: 900px;
  line-height: 1.7;
  color: #475569;
}
.checklist {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}
.deliverables-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.deliverables-table th {
  text-align: left;
  background: #f1f5f9;
  padding: 14px;
  font-weight: 600;
}

.deliverables-table td {
  padding: 14px;
  border-top: 1px solid #e5e7eb;
}

.deliverables-table tr:hover {
  background: #f9fafb;
}
.cta-band {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-band p {
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto 30px;
}
/* ================= DELIVERY LIFECYCLE ================= */

.delivery-lifecycle {
  padding: 96px 0;
  background: var(--bg-soft);
}

.lifecycle-header {
  max-width: 720px;
  margin-bottom: 56px;
}

.lifecycle-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.lifecycle-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lifecycle-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.lifecycle-card::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 24px;
}

.lifecycle-card:last-child::after {
  display: none;
}

.lifecycle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 94, 138, 0.14);
}

.lifecycle-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(31, 138, 203, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.lifecycle-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.lifecycle-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .lifecycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifecycle-card::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .lifecycle-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= HOW WE DELIVER ================= */

.how-we-deliver {
  padding: 96px 0;
  background: #f8fbff;
}

.section-title {
  font-size: 36px;
  margin-bottom: 8px;
}

.section-subtitle {
  max-width: 720px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.delivery-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.delivery-step {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s ease;
}

.delivery-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary);
  min-width: 48px;
}

.step-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.step-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .delivery-step {
    flex-direction: column;
  }
}
/* ================= SOLUTIONS ================= */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.solution-card {
  display: block;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.site-logo img {
  height: 105px;
  width: auto;
  display: block;
}
.site-header {
  padding: 18px 0;
}

.container.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-logo img {
  max-width: none;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 56px;
  }
}

.network span {
  width: 10px;
  height: 10px;
  opacity: 0.6;
}
.network::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(43,176,230,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(43,176,230,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
}
.network span {
  animation-duration: 8s;
}
