/* =========================================================
   EXCEL.CSS
========================================================= */

.excel-page-hero {
  position: relative;
  overflow: hidden;
  padding: 165px 0 105px;
  background:
    radial-gradient(circle at 12% 20%, rgba(22, 133, 74, 0.1), transparent 30%),
    radial-gradient(
      circle at 90% 70%,
      rgba(16, 185, 129, 0.08),
      transparent 30%
    ),
    #fbfefc;
}

.excel-page-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -200px;
  top: 40px;
  border: 1px solid rgba(22, 133, 74, 0.1);
  border-radius: 50%;
}

.excel-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.excel-hero-content {
  max-width: 680px;
}

.excel-hero-content .section-badge {
  margin: 0 0 22px;
}

.excel-badge {
  background: #edf9f1;
  border-color: #d3f0de;
  color: #16854a;
}

.excel-hero-content h1 {
  margin: 0;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.4vw, 69px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -3px;
}

.excel-hero-content h1 span {
  display: block;
  color: #16854a;
}

.excel-hero-content > p {
  max-width: 610px;
  margin-top: 25px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.9;
}

.excel-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.excel-main-btn {
  background: #16854a;
  box-shadow: 0 14px 30px rgba(22, 133, 74, 0.22);
}

.excel-main-btn:hover {
  background: #116b3c;
}

.excel-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
}

.excel-hero-features > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5d6571;
  font-size: 10px;
  font-weight: 600;
}

.excel-hero-features i {
  color: #16a34a;
}

/* =========================================================
   DASHBOARD
========================================================= */

.excel-dashboard-card {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid #dfe8e3;
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.13);
}

.excel-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0ef;
}

.excel-dashboard-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.excel-dashboard-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #edf9f1;
  color: #16854a;
  font-size: 23px;
}

.excel-dashboard-title span {
  display: block;
  color: #6b7280;
  font-size: 8px;
}

.excel-dashboard-title h3 {
  margin-top: 3px;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.excel-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 100px;
  background: #ecfdf3;
  color: #16803e;
  font-size: 8px;
  font-weight: 700;
}

.excel-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.excel-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.excel-stat-card {
  padding: 18px;
  border: 1px solid #e5e9e7;
  border-radius: 15px;
  background: #fbfdfc;
}

.excel-stat-card span,
.excel-stat-card strong,
.excel-stat-card small {
  display: block;
}

.excel-stat-card span {
  color: #6b7280;
  font-size: 8px;
}

.excel-stat-card strong {
  margin-top: 6px;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.excel-stat-card small {
  margin-top: 6px;
  color: #16854a;
  font-size: 7px;
}

.excel-chart-box {
  margin-top: 13px;
  padding: 19px;
  border: 1px solid #e5e9e7;
  border-radius: 16px;
  background: #fff;
}

.excel-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.excel-chart-header span,
.excel-chart-header strong {
  display: block;
}

.excel-chart-header span {
  color: #6b7280;
  font-size: 7px;
}

.excel-chart-header strong {
  margin-top: 2px;
  color: #111827;
  font-size: 10px;
}

.excel-chart-header > i {
  color: #16854a;
}

.excel-bars {
  height: 145px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 20px;
  padding-top: 15px;
  border-bottom: 1px solid #e9edeb;
}

.excel-bar-item {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}

.excel-bar-item span {
  width: 70%;
  min-height: 10px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #22c55e, #16854a);
}

.excel-bar-item small {
  color: #8b919b;
  font-size: 7px;
}

.excel-dashboard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #edf0ef;
}

.excel-dashboard-bottom > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.excel-dashboard-bottom > div > i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #edf9f1;
  color: #16854a;
}

.excel-dashboard-bottom small,
.excel-dashboard-bottom strong {
  display: block;
}

.excel-dashboard-bottom small {
  color: #6b7280;
  font-size: 7px;
}

.excel-dashboard-bottom strong {
  margin-top: 2px;
  color: #111827;
  font-size: 9px;
}

.excel-dashboard-bottom > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 11px;
  background: #16854a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  transition: 0.3s;
}

.excel-dashboard-bottom > a:hover {
  background: #116b3c;
  transform: translateY(-2px);
}

/* =========================================================
   SERVICES
========================================================= */

.excel-services-section {
  background: #f8fafc;
}

.excel-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.excel-service-card {
  position: relative;
  min-height: 245px;
  padding: 27px;
  border: 1px solid #e5e8ef;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.excel-service-card:hover {
  transform: translateY(-6px);
  border-color: #cce6d6;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

.excel-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #edf9f1;
  color: #16854a;
  font-size: 18px;
}

.excel-service-card > span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: #c8ccd4;
  font-size: 9px;
  font-weight: 800;
}

.excel-service-card h3 {
  margin-top: 25px;
  color: #111827;
  font-size: 14px;
}

.excel-service-card p {
  margin-top: 9px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.8;
}

/* =========================================================
   USE SECTION
========================================================= */

.excel-use-section {
  background: #fff;
}

.excel-use-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.excel-use-panel {
  padding: 35px;
  border-radius: 25px;
  background: linear-gradient(145deg, #0f5132, #16854a);
  box-shadow: 0 30px 70px rgba(22, 133, 74, 0.18);
}

.excel-mini-sheet {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.excel-sheet-head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 38px;
  background: #e9f5ee;
}

.excel-sheet-head span {
  padding: 9px;
  text-align: center;
  color: #557061;
  font-size: 8px;
  font-weight: 700;
  border-right: 1px solid #d7e6dc;
}

.excel-sheet-row {
  display: grid;
  grid-template-columns: 38px 1.6fr 0.7fr 0.8fr 0.8fr;
}

.excel-sheet-row > * {
  padding: 10px 8px;
  border-right: 1px solid #edf0ef;
  border-bottom: 1px solid #edf0ef;
  font-size: 8px;
}

.excel-sheet-row strong {
  text-align: center;
  background: #f2f7f4;
  color: #6b7280;
}

.excel-sheet-row span {
  color: #374151;
}

.excel-sheet-formula {
  margin: 14px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #edf9f1;
  color: #16854a;
  font-family: monospace;
  font-size: 9px;
}

.excel-use-content .section-badge {
  margin-left: 0;
}

.excel-use-content h2 {
  margin: 0;
  color: #111827;
  font-family: "Manrope", sans-serif;
  font-size: clamp(33px, 4vw, 48px);
  line-height: 1.13;
  letter-spacing: -1.5px;
}

.excel-use-content h2 span {
  display: block;
  color: #16854a;
}

.excel-use-content > p {
  margin-top: 19px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.9;
}

.excel-use-features {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.excel-use-features > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.excel-use-features > div > i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecfdf3;
  color: #16a34a;
  font-size: 8px;
}

.excel-use-features strong,
.excel-use-features small {
  display: block;
}

.excel-use-features strong {
  color: #111827;
  font-size: 11px;
}

.excel-use-features small {
  margin-top: 3px;
  color: #6b7280;
  font-size: 8px;
}

/* =========================================================
   AUDIENCE
========================================================= */

.excel-audience-section {
  background: #f8fafc;
}

.excel-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.excel-audience-card {
  min-height: 225px;
  padding: 27px;
  border: 1px solid #e5e8ef;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s;
}

.excel-audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.excel-audience-card > i {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #edf9f1;
  color: #16854a;
  font-size: 18px;
}

.excel-audience-card h3 {
  margin-top: 26px;
  color: #111827;
  font-size: 13px;
}

.excel-audience-card p {
  margin-top: 9px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.8;
}

/* =========================================================
   PROCESS
========================================================= */

.excel-process-section {
  background: #fff;
}

.excel-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.excel-process-card {
  min-height: 215px;
  padding: 27px;
  border: 1px solid #e5e8ef;
  border-radius: 19px;
  background: #fff;
  transition: 0.3s;
}

.excel-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.excel-process-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #16854a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.excel-process-card h3 {
  margin-top: 28px;
  color: #111827;
  font-size: 13px;
}

.excel-process-card p {
  margin-top: 9px;
  color: #6b7280;
  font-size: 9px;
  line-height: 1.8;
}

/* =========================================================
   CTA
========================================================= */

.excel-cta-section {
  padding: 20px 0 100px;
  background: #fff;
}

.excel-cta-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
  padding: 52px 58px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f3f2a, #116b3c);
  box-shadow: 0 30px 75px rgba(15, 23, 42, 0.16);
}

.excel-cta-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: 5%;
  top: -225px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.25);
}

.excel-cta-box > div,
.excel-cta-button {
  position: relative;
  z-index: 2;
}

.excel-cta-box > div > span {
  display: block;
  margin-bottom: 8px;
  color: #a7f3d0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.excel-cta-box h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
}

.excel-cta-box p {
  max-width: 580px;
  margin-top: 10px;
  color: #c5d6cc;
  font-size: 10px;
  line-height: 1.8;
}

.excel-cta-button {
  flex: 0 0 270px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border-radius: 16px;
  background: #22c55e;
  color: #fff;
  transition: 0.3s;
}

.excel-cta-button:hover {
  transform: translateY(-4px);
  background: #16a34a;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.24);
}

.excel-cta-button > i:first-child {
  font-size: 25px;
}

.excel-cta-button > span {
  flex: 1;
}

.excel-cta-button small,
.excel-cta-button strong {
  display: block;
}

.excel-cta-button small {
  font-size: 7px;
  opacity: 0.8;
}

.excel-cta-button strong {
  font-size: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .excel-services-grid,
  .excel-audience-grid,
  .excel-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .excel-hero-grid {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .excel-page-hero {
    padding: 145px 0 85px;
  }

  .excel-hero-grid {
    grid-template-columns: 1fr;
  }

  .excel-hero-content {
    margin: auto;
    text-align: center;
  }

  .excel-hero-content .section-badge {
    margin-inline: auto;
  }

  .excel-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .excel-hero-buttons,
  .excel-hero-features {
    justify-content: center;
  }

  .excel-dashboard-card {
    margin-inline: auto;
  }

  .excel-use-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .excel-use-content {
    text-align: center;
  }

  .excel-use-content .section-badge {
    margin-inline: auto;
  }

  .excel-use-features {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .excel-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .excel-cta-button {
    width: 100%;
    flex: initial;
  }
}

@media (max-width: 650px) {
  .excel-page-hero {
    padding: 125px 0 70px;
  }

  .excel-hero-content h1 {
    font-size: 41px;
    letter-spacing: -2px;
  }

  .excel-services-grid,
  .excel-audience-grid,
  .excel-process-grid {
    grid-template-columns: 1fr;
  }

  .excel-dashboard-card {
    padding: 22px;
  }

  .excel-stats-grid {
    grid-template-columns: 1fr;
  }

  .excel-use-panel {
    padding: 20px;
  }

  .excel-cta-box {
    padding: 37px 27px;
  }
}

@media (max-width: 430px) {
  .excel-hero-content h1 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .excel-hero-buttons {
    flex-direction: column;
  }

  .excel-hero-buttons .btn {
    width: 100%;
  }

  .excel-hero-features {
    flex-direction: column;
    align-items: center;
  }

  .excel-dashboard-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .excel-dashboard-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .excel-dashboard-bottom > a {
    justify-content: center;
  }

  .excel-sheet-head,
  .excel-sheet-row {
    min-width: 460px;
  }

  .excel-mini-sheet {
    overflow-x: auto;
  }

  .excel-cta-box h2 {
    font-size: 26px;
  }
}
