/* =========================================================
   1. GLOBAL / BASE STYLES
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --font-primary: 'Inter', sans-serif;

  --color-bg: #f3f4f6;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-soft: #667085;
  --color-nav: #6b7280;
  --color-border: #e5e7eb;
  --color-accent: #e57d0a;
  --color-accent-hover: #cf6f08;

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;

  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.06);

  /* Updated container */
  --container-width: 1560px;
  --container-space: 40px;

  --h1-size: 84px;
  --h1-line: 0.96;

  --body-size: 28px;
  --body-line: 1.55;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-left: var(--container-space);
  padding-right: var(--container-space);
}

.section {
  position: relative;
}

.section-alt {
  background: rgba(255, 255, 255, 0.25);
}



/* =========================================================
   2. HEADER
========================================================= */
.site-header {
  padding: 18px 0 0;
  position: relative;
  z-index: 50;
}

.header-wrap {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-links a {
  color: var(--color-nav);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 14px;
  flex-shrink: 0;
}

.login-link {
  color: var(--color-nav);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.login-link:hover {
  color: var(--color-text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 10px;
}

/* =========================================================
   3. BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* slightly reduced */
  border-radius: 16px; /* slightly tighter */
  font-weight: 600; /* cleaner SaaS look */
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}

/* Primary Button */
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
  box-shadow: 0 8px 18px rgba(229, 125, 10, 0.18); /* reduced shadow */
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: #223557;
  border: 1px solid #d9dde5;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Header Button (kept slightly smaller) */
.site-header .btn-primary {
  min-width: 170px;
  height: 52px;
  padding: 0 24px;
  font-size: 16px;
  border-radius: 16px;
}

/* Hero Buttons (UPDATED SIZE ↓) */
.btn-lg {
  min-width: 240px;   /* reduced from 260 */
  height: 52px;       /* force equal height */
  padding: 0 18px;    /* reduced */
  font-size: 15.5px;  /* slightly reduced */
  border-radius: 16px;
}

/* Ensure both buttons look identical in size */
.hero-actions .btn {
  height: 52px;
}

/* Icons */
.btn svg {
  width: 18px; /* smaller icons */
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Play icon wrapper */
.play-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   4. SECTION 1 - HERO
========================================================= */
.hero-section {
  padding: 10px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: 44px;
  min-height: 590px;
}

.hero-content {
  max-width: 860px;
  padding-top: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-text-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-badge-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e9a23a;
  flex-shrink: 0;
}

.hero-title {
  margin: 0 0 34px;
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: var(--h1-line);
  max-width: 900px;
}

.hero-title span {
  display: block;
}

.title-dark {
  color: var(--color-text);
}

.title-accent {
  color: var(--color-accent);
}

.hero-text {
  max-width: 780px;
  margin: 0 0 42px;
  color: #667792;
  font-size: 18px;
  font-weight: 400;
  line-height: var(--body-line);
  letter-spacing: -0.02em;
}


.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.hero-actions .btn {
  min-width: 250px;
}

.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-image {
  width: 100%;
  max-width: 820px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}



/* =========================================================
   8. FOOTER
========================================================= */
.site-footer {
  padding: 60px 0;
}

/* =========================================================
   9. LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  :root {
    --container-width: 1360px;
    --container-space: 32px;
    --h1-size: 62px;
    --body-size: 18px;
  }

  .brand-logo {
    width: 163px;
    height: 60px;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a,
  .login-link {
    font-size: 16px;
  }

  .site-header .btn-primary {
    min-width: 168px;
    height: 54px;
    font-size: 16px;
  }

  .hero-grid {
    gap: 36px;
  }

  .btn-lg {
    min-width: 250px;
    min-height: 54px;
    font-size: 16px;
    padding: 0 14px;
  }
}

/* =========================================================
   10. TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  :root {
    --container-space: 28px;
    --h1-size: 64px;
    --body-size: 22px;
  }

  .site-header {
    padding-top: 14px;
  }

  .header-wrap {
    min-height: 92px;
    gap: 18px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-text {
    font-size: 18px;
  }

  .main-nav {
    gap: 20px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a,
  .login-link {
    font-size: 15px;
  }

  .nav-actions {
    gap: 18px;
    padding-left: 8px;
  }

  .site-header .btn-primary {
    min-width: 150px;
    height: 52px;
    font-size: 15px;
    padding: 0 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: auto;
  }

  .btn-lg {
    min-width: 290px;
    min-height: 64px;
    font-size: 19px;
    padding: 0 24px;
  }
}

/* =========================================================
   11. MOBILE / TABLET NAV
========================================================= */
@media (max-width: 991px) {
  .site-header {
    padding-top: 14px;
  }

  .header-wrap {
    min-height: 84px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 28px;
    right: 28px;
    background: #ffffff;
    border: 1px solid #e7e9ee;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 40;
  }

  body.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
  }

  .nav-actions {
    width: 100%;
    padding-left: 0;
    border-top: 1px solid #eef1f4;
    padding-top: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .login-link {
    font-size: 16px;
    padding: 4px 0;
  }

  .hero-section {
    padding: 26px 0 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-title {
    font-size: 54px;
    line-height: 0.98;
  }

  .hero-text {
    font-size: 20px;
    line-height: 1.5;
  }

  .btn-lg {
    width: 100%;
    min-width: 100%;
    min-height: 60px;
    font-size: 18px;
  }
}

/* =========================================================
   12. MOBILE
========================================================= */
@media (max-width: 767px) {
  :root {
    --container-space: 18px;
    --h1-size: 42px;
    --body-size: 17px;
  }

  .header-wrap {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 17px;
  }

  .main-nav {
    left: 18px;
    right: 18px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.65;
  }

  .btn-lg {
    min-height: 56px;
    font-size: 16px;
    padding: 0 18px;
  }

.hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}


}

@media (max-width: 479px) {
  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }
}



/* =========================================================
   5. SECTION 2 - TRUST STRIP / GLOBAL PRESENCE
========================================================= */

#global {
  padding: 0;
  margin-top: -10px; /* visually attach to section 1 */

  border-top: 1px solid #e6e8ee;
  border-bottom: 1px solid #e6e8ee;
}

.trust-strip {
  
  padding: 26px 0;
  background: transparent;
}

.trust-strip-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.trust-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #e57d0a;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: #64748b;
  white-space: nowrap;
}

/* =========================================================
   LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  .trust-strip-list {
    gap: 12px;
  }

  .trust-text {
    font-size: 16px;
  }
}

/* =========================================================
   TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  #global {
    margin-top: 0;
  }

  .trust-strip {
    padding: 22px 0;
  }

  .trust-strip-list {
    justify-content: center;
    gap: 20px 28px;
  }

  .trust-text {
    font-size: 15px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .trust-strip {
    padding: 18px 0;
  }

  .trust-strip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .trust-item {
    width: auto;
    max-width: calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }

  .trust-text {
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .trust-strip {
    padding: 16px 0;
  }

  .trust-strip-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .trust-item {
    width: auto;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-icon {
    width: 20px;
    height: 20px;
  }

  .trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-text {
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.35;
  }
}


/* =========================================================
   6. SECTION 3 - COMPLEXITY / PLATFORM
========================================================= */

#platform {
  padding: 82px 0 94px;
}

.complexity-section {
  width: 100%;
}

.complexity-head {
  width: 100%;
  margin: 0 0 56px;
  text-align: center;
}

.complexity-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--color-text);
}

.complexity-title-dark {
  color: var(--color-text);
}

.complexity-title-accent {
  color: var(--color-accent);
}

.complexity-subtext {
  max-width: 980px;
  margin: 20px auto 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #64748b;
}

.complexity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  width: 100%;
}

.complexity-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 46px 44px 42px;
  min-height: 540px;
}

.complexity-card-left {
  border: 1px solid #d9dde5;
}

.complexity-card-right {
  border: 1px solid rgba(229, 125, 10, 0.28);
}

.complexity-card-title {
  margin: 0 0 34px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.complexity-card-title-red {
  color: #ff4d4f;
}

.complexity-card-title-accent {
  color: var(--color-accent);
}

.complexity-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.complexity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.complexity-item + .complexity-item {
  margin-top: 26px;
}

.complexity-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.complexity-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.complexity-icon-red svg {
  stroke: #ff4d4f;
}

.complexity-icon-accent svg {
  stroke: var(--color-accent);
}

.complexity-item span:last-child {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #223557;
}

.complexity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.complexity-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.complexity-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  #platform {
    padding: 72px 0 84px;
  }

  .complexity-head {
    margin-bottom: 48px;
  }

  .complexity-title {
    font-size: 44px;
  }

  .complexity-subtext {
    font-size: 21px;
    max-width: 860px;
  }

  .complexity-grid {
    max-width: 1240px;
    gap: 30px;
  }

  .complexity-card {
    padding: 38px 34px 36px;
    min-height: 500px;
  }

  .complexity-card-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .complexity-item span:last-child {
    font-size: 20px;
  }
}

/* =========================================================
   TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  #platform {
    padding: 64px 0 74px;
  }

  .complexity-title {
    font-size: 44px;
    line-height: 1.12;
  }

  .complexity-subtext {
    font-size: 19px;
  }

  .complexity-grid {
    gap: 24px;
  }

  .complexity-card {
    padding: 32px 28px;
    min-height: 460px;
  }

  .complexity-card-title {
    font-size: 22px;
  }

  .complexity-item + .complexity-item {
    margin-top: 22px;
  }

  .complexity-item span:last-child {
    font-size: 18px;
  }

  .complexity-link {
    font-size: 18px;
    margin-top: 28px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */
@media (max-width: 991px) {
  #platform {
    padding: 56px 0 64px;
  }

  .complexity-head {
    margin-bottom: 34px;
  }

  .complexity-title {
    font-size: 36px;
    line-height: 1.14;
  }

  .complexity-subtext {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.55;
  }

  .complexity-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .complexity-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .complexity-card-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .complexity-item {
    gap: 14px;
  }

  .complexity-item + .complexity-item {
    margin-top: 18px;
  }

  .complexity-item span:last-child {
    font-size: 17px;
    line-height: 1.45;
  }

  .complexity-link {
    font-size: 17px;
    margin-top: 24px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  #platform {
    padding: 48px 0 56px;
  }

  .complexity-head {
    margin-bottom: 28px;
  }

  .complexity-title {
    font-size: 30px;
    line-height: 1.16;
  }

  .complexity-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .complexity-card {
    border-radius: 18px;
    padding: 24px 20px;
  }

  .complexity-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .complexity-icon {
    width: 24px;
    height: 24px;
  }

  .complexity-icon svg {
    width: 22px;
    height: 22px;
  }

  .complexity-item span:last-child {
    font-size: 16px;
  }

  .complexity-link {
    font-size: 16px;
  }
}


/* =========================================================
   7. SECTION 4 - PLATFORM FLOW / SOLUTIONS
========================================================= */

#solutions {
  padding: 88px 0 96px;
}

.platform-flow {
  width: 100%;
}

.platform-flow-head {
  text-align: center;
  margin: 0 0 56px;
}

.platform-flow-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.platform-flow-title-dark {
  color: var(--color-text);
}

.platform-flow-title-accent {
  background: linear-gradient(90deg, #f08a0a 0%, #e57d0a 48%, #d96f08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.platform-flow-subtext {
  max-width: 980px;
  margin: 22px auto 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #64748b;
}

.platform-flow-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  width: 100%;
}

.platform-step {
  min-height: 308px;
  padding: 36px 28px 34px;
  border: 1px solid #d9dde5;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #eee4d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.platform-step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-step-title {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.platform-step-text {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #64748b;
}

.platform-step-arrow svg {
  width: 24px;   /* same visual size */
  height: 20px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3; /* 🔥 THIS controls thickness */
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-flow-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.platform-flow-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.platform-flow-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.platform-flow-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  #solutions {
    padding: 78px 0 86px;
  }

  .platform-flow-head {
    margin-bottom: 48px;
  }

  .platform-flow-title {
    font-size: 44px;
  }

  .platform-flow-subtext {
    font-size: 21px;
    max-width: 860px;
  }

  .platform-step {
    min-height: 220px;
    padding: 20px 15px 10px;
  }

  .platform-step-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  .platform-step-title {
    font-size: 21px;
  }

  .platform-step-text {
    font-size: 16px;
  }

  .platform-step-arrow {
    font-size: 18px;
  }

  .platform-flow-cta {
    font-size: 20px;
  }
}

/* =========================================================
   TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  #solutions {
    padding: 68px 0 76px;
  }

  .platform-flow-title {
    font-size: 46px;
    line-height: 1.12;
  }

  .platform-flow-subtext {
    font-size: 18px;
  }

  .platform-flow-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .platform-step-arrow {
    display: none;
  }

  .platform-step {
    min-height: 270px;
    padding: 28px 20px;
  }

  .platform-step-title {
    font-size: 20px;
  }

  .platform-step-text {
    font-size: 17px;
  }

  .platform-flow-cta-wrap {
    margin-top: 42px;
  }

  .platform-flow-cta {
    font-size: 18px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */
@media (max-width: 991px) {
  #solutions {
    padding: 58px 0 64px;
  }

  .platform-flow-head {
    margin-bottom: 34px;
  }

  .platform-flow-title {
    font-size: 38px;
    line-height: 1.14;
  }

  .platform-flow-subtext {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.55;
  }

  .platform-flow-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .platform-step {
    min-height: auto;
    padding: 26px 18px 24px;
    border-radius: 18px;
  }

  .platform-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .platform-step-icon svg {
    width: 28px;
    height: 28px;
  }

  .platform-step-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .platform-step-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .platform-flow-cta-wrap {
    margin-top: 34px;
  }

  .platform-flow-cta {
    font-size: 17px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  #solutions {
    padding: 48px 0 56px;
  }

  .platform-flow-title {
    font-size: 31px;
    line-height: 1.16;
  }

  .platform-flow-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .platform-flow-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-step {
    padding: 24px 18px 22px;
  }

  .platform-step-title {
    font-size: 18px;
  }

  .platform-step-text {
    font-size: 15px;
  }

  .platform-flow-cta {
    font-size: 16px;
  }

  .platform-flow-cta svg {
    width: 18px;
    height: 18px;
  }
}


/* =========================================================
   8. SECTION 5 - BENEFITS / INDUSTRIES
========================================================= */

#industries {
  padding: 84px 0 96px;
}

.benefits-section {
  width: 100%;
}

.benefits-head {
  text-align: center;
  margin: 0 0 52px;
}

.benefits-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.benefits-title-dark {
  color: var(--color-text);
}

.benefits-title-accent {
  background: linear-gradient(90deg, #f08a0a 0%, #e57d0a 48%, #d96f08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
  width: 100%;
}

/* CARD */
.benefit-card {
  min-height: 216px;
  padding: 32px 32px 30px;
  border: 1px solid #d9dde5;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: #e5c29a;
}

/* ICON */
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eee4d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TEXT */
.benefit-title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.benefit-text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #64748b;
  max-width: 92%;
}

/* =========================================================
   LARGE LAPTOP
========================================================= */
@media (max-width: 1440px) {
  #industries {
    padding: 74px 0 86px;
  }

  .benefits-title {
    font-size: 44px;
  }

  .benefits-grid {
    gap: 28px 24px;
  }

  .benefit-card {
    min-height: 206px;
    padding: 28px 26px;
  }

  .benefit-title {
    font-size: 21px;
  }

  .benefit-text {
    font-size: 16px;
    max-width: 100%;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1199px) {
  #industries {
    padding: 66px 0 76px;
  }

  .benefits-head {
    margin-bottom: 42px;
  }

  .benefits-title {
    font-size: 46px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .benefit-card {
    min-height: 170px;
  }

  .benefit-title {
    font-size: 21px;
  }

  .benefit-text {
    font-size: 16px;
  }
}

/* =========================================================
   TABLET + MOBILE (IMPORTANT FIX)
========================================================= */
@media (max-width: 991px) {
  #industries {
    padding: 56px 0 64px;
  }

  .benefits-head {
    margin-bottom: 34px;
  }

  .benefits-title {
    font-size: 38px;
    line-height: 1.14;
  }

  /* ✅ FORCE 2 COLUMNS */
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .benefit-card {
    padding: 24px 22px;
    border-radius: 18px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .benefit-icon svg {
    width: 26px;
    height: 26px;
  }

  .benefit-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .benefit-text {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* =========================================================
   MOBILE (FINAL FIX - PIC2 STYLE)
========================================================= */
@media (max-width: 767px) {
  #industries {
    padding: 48px 0 56px;
  }

  .benefits-title {
    font-size: 31px;
  }

  /* ✅ KEEP 2 COLUMNS (IMPORTANT) */
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .benefit-card {
    padding: 15px 16px;
    border-radius: 16px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .benefit-text {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* =========================================================
   9. SECTION 6 - FEATURE TABS
========================================================= */

#features {
  padding: 86px 0 100px;
}

.feature-tabs-section {
  width: 100%;
}

.feature-tabs-head {
  text-align: center;
  margin: 0 0 42px;
}

.feature-tabs-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-accent);
}

.feature-tabs-subtext {
  max-width: 940px;
  margin: 18px auto 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: #64748b;
}

.feature-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.feature-tab-btn {
  appearance: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.18);
  color: #6b7280;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.feature-tab-btn:hover {
  color: #223557;
  background: rgba(255, 255, 255, 0.35);
}

.feature-tab-btn.is-active {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(229, 125, 10, 0.16);
}

.feature-tab-btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-tab-btn-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-tabs-panels {
  width: 100%;
}

.feature-tab-panel {
  display: none;
}

.feature-tab-panel.is-active {
  display: block;
}

.feature-panel-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid #d9dde5;
  border-radius: 20px;
  padding: 34px 30px 30px;
}

.feature-panel-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.feature-panel-title-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-panel-title-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-panel-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.feature-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.feature-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-panel-list li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #223557;
}

.feature-panel-list li + li {
  margin-top: 10px;
}

.feature-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* =========================================================
   LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  #features {
    padding: 76px 0 88px;
  }

  .feature-tabs-title {
    font-size: 50px;
  }

  .feature-tabs-subtext {
    font-size: 20px;
  }

  .feature-tab-btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 16px;
  }

  .feature-panel-title {
    font-size: 22px;
  }

  .feature-panel-list li {
    font-size: 17px;
  }
}

/* =========================================================
   TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  #features {
    padding: 66px 0 76px;
  }

  .feature-tabs-head {
    margin-bottom: 34px;
  }

  .feature-tabs-title {
    font-size: 44px;
    line-height: 1.12;
  }

  .feature-tabs-subtext {
    font-size: 18px;
  }

  .feature-tabs-nav {
    gap: 10px;
    margin-bottom: 24px;
  }

  .feature-tab-btn {
    font-size: 15px;
    min-height: 48px;
    padding: 0 16px;
  }

  .feature-panel-card {
    padding: 28px 24px 24px;
  }

  .feature-panel-title {
    font-size: 21px;
  }

  .feature-panel-grid {
    gap: 24px;
  }

  .feature-panel-list li {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */
@media (max-width: 991px) {
  #features {
    padding: 56px 0 64px;
  }

  .feature-tabs-title {
    font-size: 36px;
    line-height: 1.14;
  }

  .feature-tabs-subtext {
    font-size: 17px;
    line-height: 1.55;
  }

  /* make tabs wrap like pic1 */
  .feature-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
    gap: 12px;
    padding-bottom: 0;
    margin-bottom: 24px;
  }

  .feature-tab-btn {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 15px;
  }

  .feature-panel-card {
    border-radius: 18px;
    padding: 26px 24px;
  }

  .feature-panel-title-row {
    margin-bottom: 22px;
  }

  .feature-panel-title {
    font-size: 20px;
  }

  /* keep 2 columns like pic1 */
  .feature-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }

  .feature-panel-list li {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  #features {
    padding: 48px 0 56px;
  }

  .feature-tabs-title {
    font-size: 31px;
    line-height: 1.16;
  }

  .feature-tabs-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-tabs-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-tab-btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .feature-tab-btn-icon,
  .feature-tab-btn-icon svg {
    width: 16px;
    height: 16px;
  }

  .feature-panel-card {
    padding: 22px 18px;
  }

  .feature-panel-title {
    font-size: 18px;
  }

  /* still keep 2 columns on mobile like your reference */
  .feature-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .feature-panel-list li {
    font-size: 15px;
    padding-left: 16px;
  }

  .feature-panel-list li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }
}

/* =========================================================
   10. SECTION 7 - USE CASES / WORKFLOW
========================================================= */

#workflow {
  padding: 86px 0 98px;
}

.usecases-section {
  width: 100%;
}

.usecases-head {
  text-align: center;
  margin: 0 0 54px;
}

.usecases-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.usecases-title-dark {
  color: var(--color-text);
}

.usecases-title-accent {
  background: linear-gradient(90deg, #f08a0a 0%, #e57d0a 48%, #d96f08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  width: 100%;
}

.usecase-card {
  min-height: 356px;
  padding: 48px 34px 38px;
  border: 1px solid #d9dde5;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usecase-icon {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  background: #eee4d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  flex-shrink: 0;
}

.usecase-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usecase-card-title {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.usecase-card-text {
  margin: 0;
  max-width: 90%;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #64748b;
}

.usecases-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

.usecases-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.usecases-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.usecases-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   LARGE LAPTOP / SMALL DESKTOP
========================================================= */
@media (max-width: 1440px) {
  #workflow {
    padding: 76px 0 88px;
  }

  .usecases-head {
    margin-bottom: 46px;
  }

  .usecases-title {
    font-size: 44px;
  }

  .usecases-grid {
    gap: 26px;
  }

  .usecase-card {
    min-height: 250px;
    padding: 20px 15px 0px;
  }

  .usecase-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 28px;
  }

  .usecase-icon svg {
    width: 36px;
    height: 36px;
  }

  .usecase-card-title {
    font-size: 21px;
  }

  .usecase-card-text {
    font-size: 16px;
    max-width: 100%;
  }

  .usecases-cta {
    font-size: 20px;
  }
}

/* =========================================================
   TABLET / LAPTOP
========================================================= */
@media (max-width: 1199px) {
  #workflow {
    padding: 66px 0 76px;
  }

  .usecases-head {
    margin-bottom: 40px;
  }

  .usecases-title {
    font-size: 46px;
    line-height: 1.12;
  }

  .usecases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .usecase-card {
    min-height: 300px;
    padding: 34px 22px 28px;
  }

  .usecase-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    margin-bottom: 24px;
  }

  .usecase-icon svg {
    width: 32px;
    height: 32px;
  }

  .usecase-card-title {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .usecase-card-text {
    font-size: 17px;
  }

  .usecases-cta {
    font-size: 18px;
  }
}

/* =========================================================
   MOBILE / TABLET
========================================================= */
@media (max-width: 991px) {
  #workflow {
    padding: 56px 0 64px;
  }

  .usecases-head {
    margin-bottom: 34px;
  }

  .usecases-title {
    font-size: 38px;
    line-height: 1.14;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .usecase-card {
    min-height: auto;
    padding: 28px 22px 24px;
    border-radius: 18px;
  }

  .usecase-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .usecase-icon svg {
    width: 28px;
    height: 28px;
  }

  .usecase-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .usecase-card-text {
    font-size: 17px;
    line-height: 1.45;
    max-width: 100%;
  }

  .usecases-cta-wrap {
    margin-top: 36px;
  }

  .usecases-cta {
    font-size: 17px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  #workflow {
    padding: 48px 0 56px;
  }

  .usecases-title {
    font-size: 31px;
    line-height: 1.16;
  }

  .usecase-card {
    padding: 24px 18px 22px;
  }

  .usecase-card-title {
    font-size: 19px;
  }

  .usecase-card-text {
    font-size: 15px;
  }

  .usecases-cta {
    font-size: 16px;
  }

  .usecases-cta svg {
    width: 18px;
    height: 18px;
  }
}