/* =========================================================
   ZOHO ONE LANDING PAGE
   style.css
   ========================================================= */

/* ---------- Zoho Puvi Font ---------- */

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Zoho Puvi';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('https://static.zohocdn.com/zohofonts/zohopuvi/4.0/Zoho_Puvi_Extrabold.woff2') format('woff2');
}


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --red: #E42527;
  --red-dark: #C21E20;
  --green: #089949;
  --blue: #226DB4;
  --yellow: #F9B21D;

  --ink: #14181F;
  --body: #4A5262;
  --muted: #8891A0;

  --bg: #FFFFFF;
  --bg-soft: #F6F7FA;
  --line: #E7E9EE;

  --radius: 12px;

  /* Reference palette */
  --cream: #F7F3E9;
  --cream-line: #E4DECE;

  --dark-green: #0E5943;
  --dark-green-2: #12634B;
  --dark-green-3: rgba(255, 255, 255, .08);

  --accent-yellow: #FFCC00;

  --pink-soft: #F6E1D8;

  --heading: 'Zoho Puvi', 'Poppins', 'Inter', system-ui, sans-serif;
}


/* =========================================================
   RESET / GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    system-ui,
    -apple-system,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 64px 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}


/* =========================================================
   GENERAL HEADINGS
   ========================================================= */

.big-heading {
  font-family: var(--heading);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 40px;
  color: var(--ink);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 22px;

  border-radius: 6px;

  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    sans-serif;

  font-weight: 700;
  font-size: 18px;

  cursor: pointer;

  border: 1px solid transparent;

  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-ghost {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn-ghost:hover {
  border-color: var(--ink);
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: #F8F8F5;

  backdrop-filter: blur(8px);

  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 140px;
  height: auto;

  display: block;

  object-fit: contain;
}

.logo-mark {
  width: 28px;
  height: 28px;

  border-radius: 7px;

  background:
    conic-gradient(
      from 45deg,
      var(--red),
      var(--yellow),
      var(--green),
      var(--blue),
      var(--red)
    );
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 28px;

  font-size: 14px;
  font-weight: 600;

  color: var(--body);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-cta .btn {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 5px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: #FFFFFF;
  padding: 0 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(0, .65fr);

  gap: 30px;

  align-items: center;

  text-align: left;

  min-height: 500px;
}

.hero-grid > div:first-child {
  max-width: 800px;
  padding-left: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Zoho Puvi', sans-serif;

  font-size: clamp(34px, 4vw, 56px);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -0.02em;

  margin: 14px 0 18px;

  white-space: normal;
}

.hero h1 em {
  font-style: normal;

  background:
    linear-gradient(
      90deg,
      var(--red),
      var(--yellow) 60%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-description {
  font-family: 'Zoho Puvi', sans-serif;

  font-size: 18px;

  font-weight: 400;

  line-height: 1.55;

  letter-spacing: 0;

  color: var(--body);

  max-width: 760px;

  margin: 0 0 26px;
}

.hero p {
  font-family: 'Zoho Puvi', sans-serif;

  font-size: 18px;

  font-weight: 400;

  line-height: 1.55;

  color: var(--body);

  max-width: 760px;

  margin: 0 0 26px;
}

.hero-actions {
  display: flex;

  gap: 14px;

  justify-content: flex-start;

  flex-wrap: wrap;

  margin-top: 35px;

  margin-bottom: 18px;
}

.hero-actions .btn {
  padding: 9px 18px;
  font-size: 14px;
  border-radius: 5px;
}

.hero-note {
  display: grid;

  grid-template-columns: auto auto;

  justify-content: start;

  column-gap: -6px;

  row-gap: 8px;

  font-size: 13px;

  color: #14181F;

  font-weight: 600;
}

.hero-note li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note li::before {
  content: "✓";

  color: var(--green);

  font-weight: 800;
}

.hero-note li:nth-child(3) {
  grid-column: 1;
}


/* =========================================================
   HERO CHARACTER
   ========================================================= */

.hero-character {
  display: flex;

  justify-content: center;

  align-items: flex-end;

  height: 100%;

  padding-top: 70px;
}

.hero-character img {
  width: 100%;

  max-width: 500px;

  height: auto;

  object-fit: contain;

  display: block;

  transform: translateY(60px);
}


/* =========================================================
   HERO DASHBOARD VISUAL
   ========================================================= */

.hero-visual-band {
  background: var(--accent-yellow);

  width: 100%;

  margin-top: 60px;

  padding: 20px 0 180px;

  overflow: visible;
}

.hero-visual {
  border-radius: 16px 16px 0 0;

  overflow: hidden;

  box-shadow:
    0 30px 60px -20px
    rgba(20, 24, 31, .35);

  transform: translateY(80px);

  transition: transform .9s ease;
}

.hero-visual img {
  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.trustbar {
  padding: 100px 0;

  background: #fff;
}

.trust-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  text-align: center;

  border-bottom: 1px solid var(--cream-line);

  padding-bottom: 36px;

  margin-bottom: 40px;
}

.trust-stat {
  border-right: 1px solid var(--cream-line);

  padding: 0 20px;
}

.trust-stat:last-child {
  border-right: none;
}

.trust-stat b {
  display: block;

  font-family: var(--heading);

  font-weight: 800;

  font-size: clamp(30px, 4vw, 44px);

  color: var(--ink);

  letter-spacing: -0.01em;

  margin-bottom: 8px;
}

.trust-stat span {
  font-size: 15px;

  color: var(--ink);

  font-weight: 500;
}


/* =========================================================
   LOGO WALL
   ========================================================= */

.logo-wall {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  gap: 36px;

  align-items: center;

  justify-content: center;

  justify-items: center;
}

.logo-wall > .logo-col:first-child {
  justify-self: end;
}

.logo-wall > .logo-col:last-child {
  justify-self: start;
}

.logo-col {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px 40px;
}

.logo-col img {
  height: 32px;

  width: auto;

  max-width: 140px;

  object-fit: contain;
}

.logo-col img:nth-child(5) {
  grid-column: 2;
}

.logo-col .logo-wide {
  grid-column: 1 / 3;

  justify-self: center;
}

.fake-logo {
  display: flex;

  align-items: center;

  gap: 6px;

  font-family: var(--heading);

  font-weight: 700;

  font-size: 15px;

  color: var(--ink);

  white-space: nowrap;
}

.fake-logo .dot {
  width: 18px;

  height: 18px;

  border-radius: 50%;

  flex: none;
}


/* =========================================================
   HIGHLIGHT CARD
   ========================================================= */

.highlight-card {
  background: var(--dark-green);

  color: #fff;

  border-radius: 18px;

  padding: 32px 34px;

  width: 260px;

  text-align: center;
}

.highlight-card b {
  display: block;

  font-family: var(--heading);

  font-weight: 800;

  font-size: 32px;

  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 14px;

  margin-bottom: 14px;

  opacity: .95;
}

.highlight-card a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--accent-yellow);

  font-weight: 700;

  font-size: 13px;

  letter-spacing: .03em;

  text-decoration: underline;

  text-underline-offset: 3px;
}

.highlight-card a .arrow {
  width: 20px;

  height: 20px;

  border: 1.5px solid var(--accent-yellow);

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 11px;
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.section-head {
  max-width: 680px;

  margin: 0 auto 40px;

  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);

  font-weight: 800;

  letter-spacing: -.01em;

  margin-top: 10px;
}


/* =========================================================
   PANEL SECTIONS
   ========================================================= */

.panel-section {
  padding: 64px 0;
}

.panel-section.cream {
  background: var(--cream);
}

.panel-section.forest {
  background: var(--dark-green);

  color: #fff;
}

.panel-head {
  font-family: var(--heading);

  font-weight: 800;

  font-size: clamp(30px, 4.2vw, 46px);

  line-height: 1.12;

  letter-spacing: -.01em;

  margin-bottom: 36px;

  color: var(--ink);
}

.panel-section.forest .panel-head {
  color: #fff;
}


/* =========================================================
   TABS
   ========================================================= */

.tabs-shell {
  display: inline-flex;

  flex-wrap: wrap;

  gap: 4px;

  padding: 8px;

  border-radius: 18px;

  background: #fff;

  margin-bottom: 44px;
}

.panel-section.forest .tabs-shell {
  background: var(--dark-green-3);
}

.tabs {
  display: flex;

  flex-wrap: wrap;

  gap: 4px;
}

.tab-btn {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 20px;

  border-radius: 12px;

  border: none;

  background: transparent;

  font-family: var(--heading);

  font-weight: 600;

  font-size: 14.5px;

  color: var(--ink);

  cursor: pointer;

  transition: all .15s ease;

  white-space: nowrap;
}

.tab-btn svg {
  width: 17px;

  height: 17px;

  flex: none;
}

.panel-section.forest .tab-btn {
  color: #fff;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-yellow);

  color: #14181F;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}


/* =========================================================
   DEPARTMENT CARD
   ========================================================= */

.dept-card {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: start;
}

.dept-copy {
  text-align: left;

  padding-top: 0;

  max-width: 440px;

  align-self: start;
}

.dept-copy .accent-dot {
  width: 10px;

  height: 10px;

  border-radius: 50%;

  display: inline-block;

  margin-right: 8px;
}

.dept-copy h3 {
  font-family: var(--heading);

  font-size: 26px;

  font-weight: 700;

  margin: 12px 0;

  letter-spacing: -.01em;
}

.dept-copy p {
  color: var(--body);

  margin-bottom: 20px;

  max-width: 420px;
}

.panel-section.forest .dept-copy p {
  color: #D9E3DD;
}

.dept-apps {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 20px;

  margin-bottom: 22px;
}

.dept-apps span {
  font-size: 12.5px;

  font-weight: 700;

  background: #fff;

  border: 1px solid var(--line);

  padding: 6px 12px;

  border-radius: 20px;

  color: var(--ink);
}

.panel-section.forest .dept-apps span {
  background: rgba(255, 255, 255, .08);

  border-color: rgba(255, 255, 255, .18);

  color: #fff;
}

.dept-link {
  font-weight: 700;

  color: var(--red);

  font-size: 14px;
}

.panel-section.forest .dept-link {
  color: var(--accent-yellow);
}


/* =========================================================
   DEPARTMENT VISUAL
   ========================================================= */

.dept-visual {
  width: 100%;

  border-radius: 18px;

  overflow: hidden;

  border: 1px solid var(--line);

  background: #fff;

  box-shadow:
    0 24px 50px -20px
    rgba(0, 0, 0, .18);
}

.dept-visual img {
  width: 100%;

  height: auto;

  display: block;
}


/* =========================================================
   WORKPLACE CTA
   ========================================================= */

.workplace-cta {
  margin-top: 180px;

  margin-bottom: 50px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 10px;
}

.workplace-cta span {
  font-size: 13px;

  color: #B9CFC5;

  font-weight: 600;
}


/* =========================================================
   EASE / ONBOARDING
   ========================================================= */

.ease-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 56px;

  align-items: start;
}

.ease-head {
  text-align: left;

  margin-bottom: 36px;
}

.ease-head .eyebrow {
  color: var(--red);

  margin-bottom: 8px;
}

.ease-head h2 {
  font-family: var(--heading);

  font-weight: 800;

  font-size: clamp(28px, 3.6vw, 40px);

  line-height: 1.14;

  letter-spacing: -.01em;
}

.accordion-list {
  max-width: 560px;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 20px 4px;

  cursor: pointer;

  background: none;

  border: none;

  width: 100%;

  text-align: left;

  font-family: var(--heading);
}

.accordion-header svg {
  width: 20px;

  height: 20px;

  flex: none;

  color: var(--ink);
}

.accordion-header span {
  font-size: 17px;

  font-weight: 700;

  color: var(--ink);
}

.accordion-body {
  display: none;

  padding: 0 4px 24px 4px;
}

.accordion-item.active {
  background: var(--pink-soft);

  border-radius: 14px;

  border-bottom-color: transparent;
}

.accordion-item.active .accordion-header {
  padding: 24px 22px 6px;
}

.accordion-item.active .accordion-body {
  display: block;

  padding: 0 22px 26px 54px;

  margin-top: -6px;
}

.accordion-body p {
  font-size: 14.5px;

  color: var(--body);

  line-height: 1.6;

  max-width: 460px;
}

.accordion-body a {
  display: inline-block;

  margin-top: 10px;

  font-size: 13.5px;

  font-weight: 700;

  color: var(--red);
}


/* =========================================================
   EASE VISUAL
   ========================================================= */

.ease-visual {
  width: 100%;

  overflow: hidden;

  border-radius: 18px;

  background: #fff;
}

.ease-visual img {
  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;
}


/* =========================================================
   RELIABILITY
   ========================================================= */

.rel-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.rel-box {
  border-radius: 16px;

  background: var(--dark-green);

  aspect-ratio: 16 / 10;

  overflow: hidden;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

  box-shadow:
    0 16px 35px -20px
    rgba(0, 0, 0, .25);
}

.rel-box img {
  width: 50%;

  height: 50%;

  object-fit: contain;

  display: block;
}

.rel-card h4 {
  font-size: 17px;

  font-weight: 800;

  margin-bottom: 10px;

  text-align: left;
}

.rel-card p {
  font-size: 14px;

  color: var(--body);

  text-align: left;
}

.rel-card strong {
  color: var(--ink);
}


/* =========================================================
   CUSTOMER STORIES
   ========================================================= */

.stories-section {
  background: #fff;
}

.stories-head {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 24px;

  margin-bottom: 44px;

  flex-wrap: wrap;
}

.stories-head .panel-head {
  margin-bottom: 0;

  max-width: 800px;

  width: 800px;
}

.stories-head .dept-link {
  white-space: nowrap;

  font-size: 14px;
}

.stories-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

.story-card {
  cursor: pointer;
}

.story-thumb {
  position: relative;

  border-radius: 16px;

  overflow: hidden;

  aspect-ratio: 4 / 3;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

  box-shadow:
    0 20px 40px -22px
    rgba(20, 24, 31, .3);
}

.story-thumb iframe {
  width: 100%;

  height: 100%;

  display: block;

  border: 0;

  object-fit: cover;
}

.story-thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.story-card h4 {
  font-size: 16px;

  font-weight: 800;

  margin-bottom: 4px;
}

.story-card span {
  font-size: 13.5px;

  color: var(--muted);
}


/* =========================================================
   STORY OVERLAY
   ========================================================= */

.story-thumb-with-text {
  position: relative;

  overflow: hidden;
}

.story-thumb-with-text::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 45%;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .78),
      rgba(0, 0, 0, .35),
      transparent
    );

  z-index: 2;

  pointer-events: none;
}

.story-overlay {
  position: absolute;

  left: 24px;

  right: 24px;

  bottom: 22px;

  z-index: 3;

  color: #fff;
}

.story-overlay h4 {
  margin: 0 0 4px;

  font-size: 17px;

  line-height: 1.25;

  font-weight: 800;

  color: #fff;
}

.story-overlay span {
  display: block;

  font-size: 13px;

  line-height: 1.4;

  font-weight: 500;

  color: rgba(255, 255, 255, .9);
}


/* =========================================================
   ABA CUSTOMER STORY
   ========================================================= */

.aba-story-card {
  display: block;

  width: 100%;

  color: inherit;

  text-decoration: none;
}

.aba-story-thumb {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;

  background: #FFD735;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: none;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.aba-story-card:hover .aba-story-thumb {
  transform: translateY(-2px);

  box-shadow:
    0 12px 28px
    rgba(20, 24, 31, .10);
}

.aba-story-content {
  position: relative;

  width: 100%;

  height: 100%;

  padding: 38px 32px 30px;

  display: flex;

  flex-direction: column;
}

.aba-percentage {
  margin: 0;

  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    sans-serif;

  font-size: 72px;

  line-height: .92;

  font-weight: 800;

  letter-spacing: -3px;

  color: #075B48;
}

.aba-story-text {
  margin: 38px 0 0;

  max-width: 390px;

  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    sans-serif;

  font-size: 24px;

  line-height: 1.48;

  font-weight: 400;

  letter-spacing: -.25px;

  color: #111;
}

.card-description {
  font-size: 18px;

  line-height: 1.45;

  font-weight: 400;

  max-width: 330px;

  margin-top: 14px;
}

.aba-story-person {
  margin-top: auto;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  width: 100%;
}

.aba-story-person div {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.aba-story-person strong {
  margin: 0;

  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    sans-serif;

  font-size: 17px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -.15px;

  color: #111;
}

.aba-story-person div span {
  display: block;

  margin-top: 3px;

  font-family:
    'Zoho Puvi',
    'Poppins',
    'Inter',
    sans-serif;

  font-size: 12px;

  line-height: 1.2;

  font-weight: 400;

  color: #111;
}

.aba-arrow {
  width: 18px;

  height: 18px;

  margin-bottom: 3px;

  border: 1.4px solid #111;

  border-radius: 50%;

  display: flex !important;

  align-items: center;

  justify-content: center;

  font-family: Arial, sans-serif;

  font-size: 12px !important;

  line-height: 1 !important;

  font-weight: 400;

  color: #111 !important;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.aba-story-card:hover .aba-arrow {
  background: #075B48;

  border-color: #075B48;

  color: #fff !important;

  transform: translateX(2px);
}


/* =========================================================
   PRICING
   ========================================================= */

.pricing-section {
  background: var(--cream);

  padding: 60px 0 100px;
}

.pricing-section .section-head {
  margin-bottom: 56px;
}

.pricing-section .section-head h2 {
  font-size: clamp(30px, 4vw, 35px);
}

.price-card {
  border-radius: 15px;

  background: var(--dark-green);

  color: #fff;

  padding: 120px 64px;

  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 40px;
}

.price-card h3 {
  font-family: var(--heading);

  font-size: 26px;

  font-weight: 800;

  margin-bottom: 26px;
}

.price-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px 32px;

  margin-bottom: 32px;
}

.price-list li {
  display: flex;

  gap: 10px;

  align-items: flex-start;

  font-size: 15.5px;

  color: #EAF2EC;
}

.price-list li::before {
  content: "✓";

  color: #FFFFFF;

  font-weight: 800;
}

.price-links {
  display: flex;

  gap: 28px;

  flex-wrap: wrap;
}

.price-links a {
  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: var(--accent-yellow);

  font-weight: 700;

  font-size: 13px;

  letter-spacing: .03em;

  text-decoration: underline;

  text-underline-offset: 3px;
}

.price-links a .arrow {
  width: 19px;

  height: 19px;

  border: 1.5px solid var(--accent-yellow);

  border-radius: 50%;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 10px;

  flex: none;
}

.price-box {
  text-align: left;

  padding-left: 100px;

  border-left: 1px solid rgba(255, 255, 255, .18);
}

.price-box .amount {
  font-family: var(--heading);

  font-size: 54px;

  font-weight: 800;

  color: var(--accent-yellow);
}

.price-box .amount span {
  font-size: 15px;

  color: #EAF2EC;

  font-weight: 500;

  display: block;

  margin-top: 6px;
}

.price-box small {
  display: block;

  color: #C8D9CF;

  font-size: 13px;

  margin: 14px 0 24px;

  line-height: 1.6;
}

.price-box .btn-primary {
  padding: 14px 28px;

  font-size: 15px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-band {
  background: var(--cream);

  padding-top: 0;

  padding-bottom: 0;
}

.final-cta {
  position: relative;

  overflow: hidden;

  background: #ffd730;

  border-radius: 200px 200px 0 0;

  min-height: 500px;

  padding:
    70px
    max(32px, calc((100vw - 1320px) / 2 + 32px))
    70px;

  box-sizing: border-box;

  text-align: left;
}

.final-content {
  position: relative;

  z-index: 2;

  width: 55%;
}

.final-cta h2 {
  font-family: var(--heading);

  font-size: clamp(32px, 4.4vw, 48px);

  font-weight: 800;

  color: var(--ink);

  margin-bottom: 32px;

  line-height: 1.15;

  max-width: 700px;
}

.final-cta .btn-primary {
  box-shadow: none;

  padding: 16px 32px;

  font-size: 16px;
}

.final-note {
  display: grid;

  grid-template-columns: auto auto;

  justify-content: start;

  column-gap: 28px;

  row-gap: 10px;

  list-style: none;

  margin: 26px 0 0;

  padding: 0;

  font-size: 17px;

  color: #111;
}

.final-note li {
  position: relative;

  padding-left: 24px;
}

.final-note li:nth-child(3) {
  grid-column: 1 / 3;
}

.final-note li::before {
  content: "✓";

  position: absolute;

  left: 0;

  font-weight: 800;
}

.final-image {
  position: absolute;

  right: 30px;

  bottom: 0;

  width: 40%;

  max-width: 500px;

  z-index: 1;
}

.final-image img {
  display: block;

  width: 90%;

  height: auto;

  object-fit: contain;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #101820;

  color: #fff;

  padding: 70px 0 0;
}

.footer-container {
  max-width: 1320px;

  margin: 0 auto;

  padding: 0 32px 65px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 80px;
}

.footer-brand p {
  margin-top: 18px;

  max-width: 260px;

  color: #9CA6B3;

  font-size: 14px;

  line-height: 1.7;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-column h4 {
  margin-bottom: 20px;

  font-size: 15px;

  font-weight: 700;

  color: #fff;
}

.footer-column a {
  margin-bottom: 12px;

  color: #9CA6B3;

  font-size: 13.5px;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-column a:hover {
  color: #fff;

  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1320px;

  margin: 0 auto;

  padding: 22px 32px;

  border-top: 1px solid rgba(255, 255, 255, .12);

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  color: #7F8996;

  font-size: 12.5px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

  .container {
    padding: 0 20px;
  }

  .nav {
    padding: 14px 20px;
  }

  /* Navigation */

  .nav-links {
    display: none;
  }


  /* Trust */

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat:nth-child(2) {
    border-right: none;
  }


  /* Logo wall */

  .logo-wall {
    grid-template-columns: 1fr;

    justify-items: center;

    text-align: center;
  }

  .logo-col {
    grid-template-columns: repeat(2, 1fr);

    justify-items: center;

    justify-self: center !important;
  }

  .highlight-card {
    width: 100%;

    max-width: 320px;

    text-align: center;
  }

  .highlight-card a {
    justify-content: center;
  }


  /* Tabs */

  .tabs-shell {
    display: flex;

    width: 100%;

    overflow-x: auto;
  }


  /* Departments */

  .dept-card {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .dept-visual {
    order: -1;
  }


  /* Reliability */

  .rel-grid {
    grid-template-columns: 1fr;
  }


  /* Stories */

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-head {
    align-items: flex-start;
  }


  /* Pricing */

  .pricing-section {
    padding: 56px 0;
  }

  .price-card {
    grid-template-columns: 1fr 1fr;

    padding: 32px;

    gap: 20px;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .price-links {
    gap: 18px;
  }

  .price-box {
    padding-left: 20px;

    border-left: 1px solid rgba(255, 255, 255, .18);

    text-align: center;
  }

  .price-box .amount {
    margin-left: 0;
  }


  /* Onboarding */

  .ease-grid {
    grid-template-columns: 1fr;
  }

  .ease-visual {
    order: -1;

    position: static;

    aspect-ratio: 4 / 3;
  }

  .accordion-item.active .accordion-body {
    padding-left: 22px;
  }


  /* Final CTA */

  .final-cta {
    padding: 44px 24px;

    border-radius: 32px 32px 0 0;
  }

  .final-content {
    width: 100%;
  }

  .final-image {
    position: relative;

    right: auto;

    bottom: auto;

    width: 100%;

    max-width: 350px;

    margin: 30px auto 0;
  }

  .final-image img {
    width: 100%;

    height: auto;
  }


  /* Footer */

  .site-footer {
    padding-top: 50px;
  }

  .footer-container {
    max-width: 1320px;

    margin: 0 auto;

    padding: 0 32px 65px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 80px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 12px 16px;
  }

  .logo img {
    width: 120px;
  }


  /* Hero */

  .hero-grid {
    grid-template-columns: 1fr;

    min-height: auto;

    gap: 10px;

    padding-top: 30px;
  }

  .hero-grid > div:first-child {
    max-width: none;

    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero p,
  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;

    gap: 10px;
  }

  .hero-actions .btn {
    padding: 10px 14px;

    font-size: 13px;
  }

  .hero-note {
    grid-template-columns: 1fr;

    row-gap: 8px;
  }

  .hero-note li:nth-child(3) {
    grid-column: auto;
  }

  .hero-character {
    padding-top: 20px;

    min-height: 300px;
  }

  .hero-character img {
    max-width: 360px;

    transform: translateY(20px);
  }

  .hero-visual-band {
    margin-top: 30px;

    padding: 15px 0 100px;
  }

  .hero-visual {
    transform: translateY(50px);

    border-radius: 10px 10px 0 0;
  }


  /* Trust */

  .trustbar {
    padding: 70px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .trust-stat {
    border-right: none;

    border-bottom: 1px solid var(--cream-line);

    padding-bottom: 24px;
  }

  .trust-stat:last-child {
    border-bottom: none;
  }


  /* Logo wall */

  .logo-col {
    gap: 20px;
  }

  .logo-col img {
    max-width: 110px;

    height: 28px;
  }


  /* Sections */

  section {
    padding: 50px 0;
  }

  .panel-section {
    padding: 50px 0;
  }

  .panel-head {
    font-size: clamp(28px, 8vw, 40px);

    margin-bottom: 28px;
  }


  /* Tabs */

  .tabs-shell {
    padding: 6px;

    border-radius: 14px;

    margin-bottom: 30px;
  }

  .tabs {
    flex-wrap: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    padding: 10px 14px;

    font-size: 13px;
  }


  /* Department */

  .dept-copy h3 {
    font-size: 23px;
  }

  .dept-copy p {
    font-size: 15px;
  }

  .dept-visual {
    border-radius: 12px;
  }


  /* Workplace */

  .workplace-cta {
    margin-top: 80px;

    margin-bottom: 20px;
  }


  /* Stories */

  .stories-head {
    flex-direction: column;

    gap: 16px;
  }

  .stories-head .panel-head {
    width: auto;

    max-width: none;
  }

  .stories-grid {
    gap: 32px;
  }

  .story-thumb {
    border-radius: 12px;
  }


  /* ABA card */

  .aba-percentage {
    font-size: 58px;
  }

  .aba-story-content {
    padding: 28px 24px 24px;
  }

  .card-description {
    font-size: 16px;
  }


  /* Pricing */

  .price-card {
    grid-template-columns: 1fr;

    padding: 30px 22px;
  }

  .price-box {
    border-left: none;

    border-top: 1px solid rgba(255, 255, 255, .18);

    padding-left: 0;

    padding-top: 30px;

    text-align: left;
  }

  .price-box .amount {
    font-size: 44px;
  }

  .price-list {
    gap: 14px;
  }


  /* Final CTA */

  .final-cta {
    min-height: auto;

    padding: 50px 20px 0;
  }

  .final-cta h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .final-note {
    grid-template-columns: 1fr;

    font-size: 15px;

    row-gap: 8px;
  }

  .final-note li:nth-child(3) {
    grid-column: auto;
  }


  /* Footer */

  .footer-container {
    grid-template-columns: 1fr;

    gap: 40px;

    padding-left: 20px;

    padding-right: 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding-left: 20px;

    padding-right: 20px;
  }
}