:root {
  --ec-bg-start: #1a32ff;
  --ec-bg-end: #001a88;
  --ec-accent: #ffffff;
  --ec-accent-soft: rgba(255, 255, 255, 0.75);
  --ec-border-soft: rgba(255, 255, 255, 0.12);
  --ec-btn-bg: #ffffff;
  --ec-btn-text: #082566;
  --ec-btn-ghost-border: rgba(255, 255, 255, 0.35);
  --ec-pill-bg: rgba(5, 15, 60, 0.6);
  --ec-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #050816;
}

/* HERO LAYOUT */

.ec-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 10% 0%, #4f5dff 0, transparent 55%),
    radial-gradient(circle at 90% 100%, #1b8bff 0, transparent 55%),
    linear-gradient(135deg, var(--ec-bg-start), var(--ec-bg-end));
  color: var(--ec-accent);
}

/* Animated circuit background layer */

.ec-hero-circuit-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    /* vertical lines */
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 40px
    ),
    /* horizontal traces */
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.18) 1px,
      transparent 1px,
      transparent 40px
    );
  mix-blend-mode: screen;
  animation: ec-circuit-flow 18s linear infinite;
}

@keyframes ec-circuit-flow {
  0% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 80px 120px, -60px 80px;
  }
  100% {
    background-position: 160px 240px, -120px 160px;
  }
}

/* NAVBAR */

.ec-navbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
}

.ec-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ec-accent);
}

.ec-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.ec-logo-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ec-nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ec-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.ec-nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ec-accent-soft);
  font-weight: 500;
  padding-bottom: 4px;
}

.ec-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.ec-nav-links a:hover::after {
  width: 100%;
}

.ec-nav-cta {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(18px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ec-nav-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile nav toggle */

.ec-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  padding: 0;
  cursor: pointer;
}

.ec-nav-toggle span {
  display: block;
  height: 2px;
  width: 60%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 999px;
}

/* HERO CONTENT */

.ec-hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 7vw 120px;
}

.ec-hero-inner {
  max-width: 820px;
  text-align: center;
}

.ec-hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.ec-hero-subtitle {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ec-accent-soft);
}

.ec-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ec-btn-primary,
.ec-btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out,
    background 0.14s ease-out, border-color 0.14s ease-out;
  white-space: nowrap;
}

.ec-btn-primary {
  background: var(--ec-btn-bg);
  color: var(--ec-btn-text);
  box-shadow: var(--ec-shadow-soft);
}

.ec-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ec-btn-icon {
  font-size: 1rem;
}

.ec-btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--ec-btn-ghost-border);
}

.ec-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.ec-hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--ec-accent-soft);
}

.ec-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ec-pill-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ec-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

/* WHITE CURVED BOTTOM */

.ec-hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: #ffffff;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  box-shadow: 0 -8px 35px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .ec-navbar {
    padding-inline: 6vw;
  }

  .ec-nav-right {
    position: absolute;
    top: 64px;
    right: 6vw;
    left: 6vw;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(3, 7, 42, 0.97);
    border: 1px solid var(--ec-border-soft);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transform-origin: top right;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease-out, transform 0.14s ease-out;
  }

  .ec-nav-right.ec-open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .ec-nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .ec-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .ec-nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .ec-hero-content {
    padding-inline: 6vw;
    padding-top: 40px;
  }

  .ec-hero-title {
    font-size: clamp(2.1rem, 9vw, 2.6rem);
  }

  .ec-hero-subtitle {
    font-size: 0.95rem;
  }

  .ec-hero-curve {
    height: 70px;
    border-top-left-radius: 52px;
    border-top-right-radius: 52px;
  }
}
/* SECTION 2: CORE ABOUT */

.ec-core {
  position: relative;
  background: #ffffff;
  padding: 80px 7vw 96px;
}

.ec-core-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.ec-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4253a0;
  margin-bottom: 10px;
}

.ec-section-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a32ff, #00b0ff);
}

.ec-core-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #051021;
}

.ec-core-body {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #40485a;
}

.ec-core-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ec-core-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: flex-start;
}

.ec-core-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a32ff, #00b0ff);
  margin-top: 7px;
  flex-shrink: 0;
}

.ec-core-list h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: #111827;
}

.ec-core-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* RIGHT: CIRCUIT VISUAL */

.ec-core-right {
  display: flex;
  justify-content: center;
}

.ec-core-circuit {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  padding: 20px;
  background: radial-gradient(circle at 10% 0%, #f3f5ff 0, transparent 60%),
    radial-gradient(circle at 100% 100%, #e4f2ff 0, transparent 60%),
    #f8fafc;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* Animated circuit grid layer */

.ec-core-circuit-grid {
  position: absolute;
  inset: 8% 10%;
  border-radius: 22px;
  background-image:
    linear-gradient(
      to right,
      rgba(31, 41, 55, 0.16) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(31, 41, 55, 0.16) 1px,
      transparent 1px
    );
  background-size: 32px 32px;
  opacity: 0.7;
  mask-image: radial-gradient(circle at 50% 20%, black 0, transparent 62%);
  animation: ec-core-grid-flow 14s linear infinite;
}

@keyframes ec-core-grid-flow {
  0% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 24px 36px, -18px 30px;
  }
  100% {
    background-position: 48px 72px, -36px 60px;
  }
}

/* Circuit nodes */

.ec-core-node {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  min-width: 88px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.96);
  color: #0f172a;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background 0.16s ease-out,
    color 0.16s ease-out,
    border-color 0.16s ease-out;
}

.ec-core-node i {
  font-size: 1.35rem;
  transition: color 0.16s ease-out;
}

.ec-core-node span {
  pointer-events: none;
}

/* Node positions */

.ec-node-1 {
  top: 14%;
  left: 14%;
}

.ec-node-2 {
  top: 34%;
  right: 10%;
}

.ec-node-3 {
  bottom: 30%;
  left: 12%;
}

.ec-node-4 {
  bottom: 12%;
  right: 16%;
}

/* Hover state: node turns blue with white icon/text */

.ec-core-node:hover {
  background: linear-gradient(135deg, #1a32ff, #00b0ff);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.55);
}

.ec-core-node:hover i {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 900px) {
  .ec-core-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .ec-core-right {
    order: -1;
  }

  .ec-core {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .ec-core {
    padding-inline: 6vw;
  }

  .ec-core-circuit {
    max-width: 360px;
  }
}
/* SECTION 3: TOOLS */

.ec-tools {
  background: #ffffff;
  padding: 80px 7vw 96px;
  border-top: 1px solid rgba(15, 23, 42, 0.04); /* optional subtle separator */
}

.ec-tools-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.ec-tools-header {
  max-width: 520px;
}

.ec-tools-title {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: #051021;
}

.ec-tools-body {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Vertical marquee shell */

.ec-tools-marquee-shell {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.ec-tools-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: ec-tools-scroll 22s linear infinite;
}

/* Infinite vertical scroll (bottom -> top) */
@keyframes ec-tools-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Tool cards */

.ec-tool-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  transform: translateY(0);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background 0.16s ease-out;
}

.ec-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, #e0e7ff 0, transparent 65%),
    #eef2ff;
}

.ec-tool-icon i {
  font-size: 1.8rem;
  color: #1e40af;
}

.ec-tool-card h3 {
  margin: 0;
  font-size: 0.98rem;
  color: #0f172a;
}

.ec-tool-card p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: #6b7280;
}

/* Hover: card pop + subtle blue tint */

.ec-tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
  background: linear-gradient(135deg, #ffffff, #eef2ff);
}

/* Responsive */

@media (max-width: 900px) {
  .ec-tools-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .ec-tools-marquee-shell {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .ec-tools {
    padding-inline: 6vw;
  }
}
/* SECTION 4: FOR BUILDERS – FULL SCREEN */

.ec-builders {
  background: #ffffff;
  min-height: 100vh;
  padding: 80px 7vw 96px;
  display: flex;
  align-items: center;
}

.ec-builders-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

/* Header di tengah */

.ec-builders-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.ec-builders-title {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  line-height: 1.25;
  margin: 0 0 12px;
  color: #051021;
}

.ec-builders-body {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Grid 2x2 card */

.ec-builders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.ec-build-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background-color 0.16s ease-out;
}

/* Icon bulat sederhana */

.ec-build-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  margin-bottom: 4px;
  transition:
    background-color 0.16s ease-out,
    transform 0.16s ease-out;
}

.ec-build-icon i {
  font-size: 1.6rem;
  color: #1f2937; /* default dark gray */
  transition: color 0.16s ease-out, transform 0.16s ease-out;
}

.ec-build-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}

.ec-build-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Hover: card naik sedikit, icon & border jadi biru (tanpa neon) */

.ec-build-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  background-color: #f9fafb;
}

.ec-build-card:hover .ec-build-icon {
  background-color: #e0ecff;
  transform: translateY(-2px);
}

.ec-build-card:hover .ec-build-icon i {
  color: #2563eb; /* biru */
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 900px) {
  .ec-builders {
    padding-top: 64px;
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .ec-builders-grid {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .ec-builders {
    padding-inline: 6vw;
  }

  .ec-builders-grid {
    grid-template-columns: minmax(0, 1fr); /* 1 kolom di mobile */
  }
}
/* SECTION 5: PARTNERS – ICON MARQUEE */

.ec-partners {
  background: #ffffff;
  padding: 40px 7vw 48px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.ec-partners-inner {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

/* track yang bergerak kiri -> kanan */

.ec-partners-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: ec-partners-scroll 26s linear infinite;
  will-change: transform;
}

/* dari -50% ke 0 = bergerak ke kanan */
@keyframes ec-partners-scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.ec-partner-item {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background-color 0.16s ease-out;
}

.ec-partner-item i {
  font-size: 2rem;
  transition: transform 0.16s ease-out, filter 0.16s ease-out;
}

/* hover icon: sedikit membesar & border lebih jelas */
/* (kita tidak paksa semua jadi biru supaya logo brand tetap natural) */

.ec-partner-item:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 114, 128, 0.9);
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.ec-partner-item:hover i {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Responsive */

@media (max-width: 640px) {
  .ec-partners {
    padding-inline: 6vw;
  }

  .ec-partner-item {
    width: 56px;
    height: 56px;
  }

  .ec-partner-item i {
    font-size: 1.8rem;
  }
}
/* SECTION 6: GET STARTED CTA */

.ec-get-started {
  background: #ffffff;
  padding: 72px 7vw 96px;
}

.ec-get-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Card biru besar */

.ec-get-card {
  border-radius: 28px;
  padding: 28px 28px 26px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
  color: #ffffff; /* default text inside card = white */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background 0.16s ease-out;
}

/* Hover card: sedikit naik dan shadow lebih kuat */

.ec-get-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.45);
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.ec-get-text {
  max-width: 560px;
}

/* override warna kicker di dalam card jadi putih */

.ec-get-card .ec-section-kicker {
  color: #e5e7ff;
}

.ec-get-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 6px 0 10px;
  color: #ffffff;
}

.ec-get-body {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #f9fafb;
}

/* Buttons */

.ec-get-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ec-get-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.28);
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    background-color 0.14s ease-out,
    color 0.14s ease-out,
    border-color 0.14s ease-out;
}

.ec-get-btn-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ec-get-btn i {
  font-size: 1.1rem;
}

/* Hover state button */

.ec-get-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.36);
  background-color: #f9fafb;
  border-color: rgba(15, 23, 42, 0.18);
}

/* Responsive */

@media (max-width: 900px) {
  .ec-get-card {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .ec-get-started {
    padding-inline: 6vw;
  }

  .ec-get-card {
    padding: 24px 20px 22px;
  }
}
/* SECTION 7: FAQ – ACCORDION STYLE */

.ec-faq {
  background: #ffffff;
  padding: 80px 7vw 96px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.ec-faq-inner {
  max-width: 920px;
  margin: 0 auto;
}

.ec-faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.ec-faq-title {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 0 0 12px;
  color: #051021;
}

.ec-faq-body {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Accordion list */

.ec-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each item is a card */

.ec-faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background-color 0.16s ease-out,
    transform 0.16s ease-out;
}

.ec-faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  background-color: #f9fafb;
  transform: translateY(-1px);
}

/* Header button */

.ec-faq-toggle {
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.ec-faq-question {
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0f172a;
}

.ec-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  transition:
    transform 0.16s ease-out,
    background-color 0.16s ease-out;
}

.ec-faq-icon i {
  font-size: 1.2rem;
  color: #6b7280;
  transition: transform 0.16s ease-out, color 0.16s ease-out;
}

/* Icon rotate when open */

.ec-faq-item.is-open .ec-faq-icon {
  background-color: #e0ecff;
}

.ec-faq-item.is-open .ec-faq-icon i {
  color: #2563eb;
  transform: rotate(180deg);
}

/* Answer panel with smooth height animation */

.ec-faq-panel {
  padding: 0 18px 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.22s ease-out,
    padding-top 0.22s ease-out,
    padding-bottom 0.22s ease-out;
}

.ec-faq-panel p {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}

/* When open, let the panel show padding & content */

.ec-faq-item.is-open .ec-faq-panel {
  padding-top: 0;
  padding-bottom: 12px;
}

/* Responsive */

@media (max-width: 640px) {
  .ec-faq {
    padding-inline: 6vw;
  }

  .ec-faq-toggle {
    padding-inline: 14px;
  }

  .ec-faq-panel {
    padding-inline: 14px;
  }
}
/* FOOTER */

.ec-footer {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #e5edff;
  padding: 76px 7vw 32px;
  margin-top: 0;
  overflow: hidden;
}

/* Lengkungan putih di bagian atas footer agar nyambung dari section putih sebelumnya */

.ec-footer::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  height: 70px;
  background: #ffffff;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.16);
  z-index: 0;
}

.ec-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left side: brand + text */

.ec-footer-main {
  max-width: 420px;
}

.ec-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px;
}

.ec-footer-logo {
  width: 32px;
  height: 32px;
  display: block;
}

.ec-footer-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ec-footer-text {
  margin: 0;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #dde7ff;
}

/* Right side: nav + social */

.ec-footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
}

.ec-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.ec-footer-nav a {
  font-size: 0.86rem;
  text-decoration: none;
  color: #dbeafe;
  opacity: 0.9;
  position: relative;
  padding-bottom: 2px;
}

.ec-footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.16s ease-out;
}

.ec-footer-nav a:hover::after {
  width: 100%;
}

.ec-footer-social {
  display: flex;
  gap: 10px;
}

.ec-footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(191, 219, 254, 0.55);
  color: #e5edff;
  text-decoration: none;
  font-size: 1.25rem;
  transition:
    transform 0.14s ease-out,
    box-shadow 0.14s ease-out,
    background-color 0.14s ease-out,
    border-color 0.14s ease-out,
    color 0.14s ease-out;
}

.ec-footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.5);
  background-color: #eff6ff;
  border-color: #eff6ff;
  color: #1f2937;
}

/* Bottom line */

.ec-footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(191, 219, 254, 0.35);
  font-size: 0.8rem;
  color: #c7d2fe;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Responsive */

@media (max-width: 900px) {
  .ec-footer {
    padding-top: 68px;
  }

  .ec-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ec-footer-right {
    align-items: flex-start;
  }

  .ec-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ec-footer {
    padding-inline: 6vw;
  }

  .ec-footer::before {
    height: 60px;
    top: -60px;
    border-bottom-left-radius: 52px;
    border-bottom-right-radius: 52px;
  }

  .ec-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
