/* Future Cycle Ltd website */
:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-soft: #eef4f1;
  --text: #10242c;
  --muted: #5f7078;
  --line: #dce6e2;
  --green: #66d21f;
  --green-dark: #149443;
  --blue: #0b83a5;
  --blue-dark: #0d3544;
  --dark: #14232b;
  --shadow: 0 18px 45px rgba(16, 36, 44, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(102, 210, 31, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 131, 165, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 247, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(11, 131, 165, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  border-color: var(--blue);
}

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 13px;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  margin: 24px 0;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  font-size: 20px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* HERO IMAGE CARD */
.hero-card {
  position: relative;
  height: 480px;
  border-radius: 34px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
}

.hero-render {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,31,39,0.05), rgba(10,31,39,0.18)),
    linear-gradient(to right, rgba(10,31,39,0.10), transparent 45%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  width: 220px;
  backdrop-filter: blur(10px);
  background: rgba(10, 31, 39, 0.52);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  z-index: 2;
}

.floating-card strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.floating-card span {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.45;
}

.top-card {
  top: 26px;
  left: 28px;
}

.bottom-card {
  bottom: 34px;
  right: 28px;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--blue-dark);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.project-card.dark {
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  color: #fff;
}

.project-card.dark p,
.project-card.dark li {
  color: rgba(255,255,255,0.76);
}

.project-card ul,
.feature-list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.project-card .kicker {
  margin-bottom: 18px;
}

.project-card .kicker {
  font-size: 12px;
  padding: 7px 11px;
}

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

.logo-box {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-weight: 800;
  color: var(--blue-dark);
}

.logo-box img {
  max-width: 190px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: 0.25s ease;
}

.logo-box img:hover {
  transform: scale(1.04);
}

.cta {
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  color: #fff;
  border-radius: 34px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255,255,255,0.72);
}

.page-hero {
  padding: 74px 0 42px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.info-panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}

.footer {
  margin-top: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 860px) {
  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav,
  .footer-inner {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .project-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-card {
    height: 360px;
  }

  .floating-card {
    width: 200px;
  }

  .bottom-card {
    bottom: 22px;
    right: 20px;
  }

  .top-card {
    top: 22px;
    left: 20px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .project-detail-grid {
  align-items: stretch;
  margin-bottom: 24px;
}

.project-visual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 30px 30px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-visual-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.project-header-panel {
  margin-bottom: 0;
  border-radius: 30px 30px 0 0;
}

.project-visual-under-title {
  margin-top: 0;
}

.project-text-card {
  height: fit-content;
  padding: 34px;
}

.project-text-card {
  max-width: 100%;
}
.project-header-panel {
  margin-bottom: 20px;
}

.project-visual-under-title {
  margin-top: 20px;
}

.project-visual-under-title img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

.project-text-card {
  height: 100%;
}
}

/* FIX PROJECT VISUAL LAYOUT */
.split {
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.project-header-panel {
  margin-bottom: 0 !important;
  border-radius: 30px 30px 0 0;
}

.project-visual-card {
  margin-top: 0 !important;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 30px 30px;
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.project-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-text-card {
  height: fit-content;
  padding: 34px;
}

.project-extra-info {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.extra-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.extra-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.extra-item span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.partner-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.partner-logo img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--surface-soft);
  color: var(--green-dark);
  font-size: 42px;
  font-weight: 700;
  justify-content: center;
}
.partner-category {
  margin-top: 70px;
}

.partner-category:first-of-type {
  margin-top: 30px;
}

.partner-category-head {
  margin-bottom: 24px;
  max-width: 760px;
}

.partner-category-head h3 {
  margin-bottom: 10px;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-tile {
  height: 130px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: 0.25s ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 36, 44, 0.08);
}

.partner-tile img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.partner-tile {
  height: 160px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  transition: 0.25s ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 36, 44, 0.08);
}

.partner-tile img {
  max-width: 240px;
  max-height: 95px;
  width: auto;
  height: auto;
  object-fit: contain;
}
}

/* FINAL PARTNERS LAYOUT FIX */
.partner-logos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

.partner-tile {
  height: 170px !important;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: 0.25s ease;
}

.partner-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 36, 44, 0.08);
}

.partner-tile img {
  max-width: 260px !important;
  max-height: 105px !important;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  .partner-logos-grid {
    grid-template-columns: 1fr !important;
  }

  .partner-tile {
    height: 140px !important;
  }

  .partner-tile img {
    max-width: 220px !important;
    max-height: 90px !important;
  }
}
.mission-block {
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.mission-block h2,
.mission-block .kicker {
  color: #fff;
}

.mission-block p {
  color: rgba(255,255,255,0.76);
  max-width: 880px;
}

.mission-block .kicker {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
