/* ========================================
   Optimize My Data — Brand Design System
   ======================================== */

:root {
  --green: #2BA745;
  --green-dark: #228B38;
  --green-light: #E8F5EB;
  --orange: #F39221;
  --orange-dark: #D97D0F;
  --orange-light: #FEF3E2;
  --grey: #58595B;
  --grey-light: #8A8B8D;
  --dark: #111111;
  --dark-soft: #1A1A1A;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --header-height: 72px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography utilities */
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  min-height: 48px;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(243, 146, 33, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn--secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--text {
  background: transparent;
  border-color: transparent;
  color: var(--green-dark);
  padding: 10px 0;
  min-height: auto;
  font-size: 14px;
  font-weight: 600;
  width: auto;
}

.btn--text:hover {
  color: var(--orange);
  transform: none;
  box-shadow: none;
}

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--nav {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  min-width: 140px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-group--center {
  justify-content: center;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(43, 167, 69, 0.2);
}

/* Section */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, #0D2818 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(43, 167, 69, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 146, 33, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section__header {
  margin-bottom: 56px;
  max-width: 720px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__lead {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
}

.section--dark .section__lead {
  color: rgba(255, 255, 255, 0.7);
}

.section--dark .section__header .section__lead + .section__lead {
  margin-top: -8px;
}

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 500;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.checklist--light li::before {
  background-color: var(--orange);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo__icon {
  flex-shrink: 0;
}

.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo__line {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-logo__line--green { color: var(--green); }
.brand-logo__line--orange { color: var(--orange); }

.brand-logo--footer .brand-logo__line {
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item {
  display: flex;
}

.nav__link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--green);
  background: var(--green-light);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--orange-dark);
}

.nav__link--active {
  color: var(--green);
  background: var(--green-light);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: calc(var(--header-height) + 64px) 0 96px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--orange) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--grey);
  margin: 12px 0 8px;
  letter-spacing: 0.02em;
}

.hero__eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero__desc--secondary {
  font-size: 16px;
}

.hero__card-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__read-more {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 4px 0 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__read-more:hover {
  color: var(--orange);
}

.badge--hero {
  margin-bottom: 12px;
}

.hero__checklist {
  margin: 28px 0 36px;
}

.hero__actions {
  margin-top: 8px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.hero__logo-img {
  width: 160px;
  margin: 0 auto 12px;
}

.hero__partner-badge {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
  margin: 0 auto 12px;
  object-fit: contain;
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hero__form-card {
  max-width: 440px;
  padding: 36px 32px;
  text-align: left;
  border-top: 3px solid var(--green);
  scroll-margin-top: calc(var(--header-height) + 24px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.hero__form-card .hero-form__title {
  text-align: center;
}

.hero__form-card .hero-form__subtitle {
  text-align: center;
}

.hero__form-card--highlight {
  box-shadow: 0 0 0 4px rgba(43, 167, 69, 0.25), var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-form__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: center;
}

.hero-form__subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.form-required {
  color: var(--orange);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-input::placeholder {
  color: var(--grey-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43, 167, 69, 0.12);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #E05252;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.btn--full {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  color: var(--grey-light);
  text-align: center;
  margin-top: -4px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-feedback {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-feedback--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

.form-feedback--success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(43, 167, 69, 0.25);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.form-success__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ========================================
   Why Zoho
   ======================================== */
.why-zoho__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-zoho__highlight {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark);
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
}

.benefits-list li {
  position: relative;
  padding: 16px 0 16px 36px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--orange-light);
}

.why-zoho__closing {
  margin-top: 40px;
  padding: 24px 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
  border: 1px solid var(--border);
}

/* ========================================
   Problems
   ======================================== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.problem-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.problem-card--wide {
  grid-column: span 3;
}

.problem-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius);
}

.problem-card p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
}

.problems-closing {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   Services
   ======================================== */
.services-flagship {
  margin-bottom: 56px;
}

.services-flagship__label,
.services-additional__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.services-flagship__label::before,
.services-flagship__label::after,
.services-additional__label::before,
.services-additional__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--border);
}

.services-flagship__label::before,
.services-additional__label::before {
  right: calc(50% + 100px);
}

.services-flagship__label::after,
.services-additional__label::after {
  left: calc(50% + 100px);
}

.services-flagship__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-additional {
  margin-top: 16px;
}

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

.services-grid--four {
  grid-template-columns: repeat(2, 1fr);
}

.service-card--one {
  border-color: rgba(243, 146, 33, 0.25);
  background: linear-gradient(160deg, var(--orange-light) 0%, var(--white) 55%);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: transparent;
}

.service-card--flagship {
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.service-card--flagship-one {
  background: linear-gradient(160deg, var(--orange-light) 0%, var(--white) 60%);
  border: 2px solid rgba(243, 146, 33, 0.25);
}

.service-card--flagship-crm {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--white) 60%);
  border: 2px solid rgba(43, 167, 69, 0.25);
}

.service-card--flagship-one:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(243, 146, 33, 0.15);
}

.service-card--flagship-crm:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(43, 167, 69, 0.15);
}

.service-card__badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-card__badge--green {
  background: var(--green);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-card__header .service-card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card__tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  margin-top: 4px;
}

.service-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--orange-light) 100%);
  border-color: transparent;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__icon--orange {
  background: var(--orange-light);
  color: var(--orange);
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__desc--emphasis {
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0;
}

.service-card__benefits-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card__benefits li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--grey);
}

.service-card__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.service-card__benefits--cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
}

.service-card__ideal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

.service-card__ideal strong {
  color: var(--dark);
}

.service-card__toggle {
  display: none;
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid rgba(43, 167, 69, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.service-card__toggle:hover {
  background: var(--green);
  color: var(--white);
}

.nav__item--mobile {
  display: none;
}

.faq-show-more {
  display: none;
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.faq-show-more:hover {
  background: var(--green);
  color: var(--white);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.mobile-cta-bar:not([hidden]) {
  display: block;
}

.mobile-cta-bar .btn {
  min-height: 48px;
  font-size: 15px;
}

body.has-mobile-cta {
  padding-bottom: 80px;
}

/* ========================================
   Why Us
   ======================================== */
.why-us__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us__subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.why-us__industries-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-us__highlight-box {
  display: flex;
  align-items: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}

.why-us__quote {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tag {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--green);
  border-color: var(--green);
}

/* ========================================
   Industries
   ======================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industries-grid--six {
  grid-template-columns: repeat(3, 1fr);
}

.industry-card {
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.industry-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.industry-card__number {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.industry-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.industries-grid .industry-card:last-child {
  grid-column: span 1;
}

/* ========================================
   Journey Timeline
   ======================================== */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 0;
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.journey-step__marker {
  margin-bottom: 20px;
}

.journey-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.journey-step:nth-child(even) .journey-step__icon {
  border-color: var(--orange);
  color: var(--orange);
}

.journey-step__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.journey-step__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  padding: 20px 52px 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green);
  font-size: 20px;
  font-weight: 400;
  border-radius: var(--radius);
  line-height: 1;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
  background: var(--orange-light);
  color: var(--orange);
}

.faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}

/* ========================================
   CTA / Contact
   ======================================== */
.cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin: 24px 0 12px;
}

.cta__brand {
  margin: 24px 0 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta__brand-name {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.cta__brand-role {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

.cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 8px;
}

.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

.cta__contact-item:hover {
  color: var(--orange);
}

.cta__contact-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.cta__visual {
  display: flex;
  justify-content: center;
}

.cta__logo {
  width: 240px;
  opacity: 0.9;
  filter: brightness(1.1);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer__brand .brand-logo {
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__partner {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-top: 8px;
}

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

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col a {
  font-size: 14px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  animation: fadeInUp 0.7s ease forwards;
}

.hero__visual {
  animation: fadeInUp 0.7s ease 0.15s forwards;
  opacity: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Visibility utilities (mobile toggles at 768px) */
.mobile-only {
  display: none;
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet & below — hamburger nav */
@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 32px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    white-space: normal;
  }

  .nav__actions {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 16px;
    gap: 10px;
  }

  .nav__actions .btn {
    width: 100%;
    min-width: unset;
    white-space: normal;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    order: -1;
    opacity: 1;
  }

  .hero__card,
  .hero__form-card {
    max-width: 100%;
  }

  .why-zoho__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .industries-grid,
  .industries-grid--six {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .journey-timeline::before {
    display: none;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__contact {
    align-items: center;
  }

  .cta__visual {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-flagship__grid,
  .services-grid,
  .services-grid--four {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section__header {
    margin-bottom: 28px;
  }

  .section__title {
    font-size: clamp(22px, 5.5vw, 30px);
    line-height: 1.25;
  }

  .section__lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .hide-mobile {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  span.mobile-only.badge,
  .badge.mobile-only {
    display: inline-block;
  }

  .btn.mobile-only,
  .hero__read-more.mobile-only {
    display: inline-flex;
  }

  .hero__read-more.mobile-only {
    display: inline-block;
  }

  /* Hero — form first, shorter copy */
  .hero {
    padding: calc(var(--header-height) + 20px) 0 48px;
  }

  .hero__inner {
    gap: 24px;
  }

  .hero__visual {
    order: -1;
    opacity: 1;
  }

  .hero__content {
    order: 1;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(24px, 6.5vw, 32px);
    margin-bottom: 12px;
  }

  .hero__desc,
  .hero__desc--mobile {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .hero__expandable .hero__desc {
    margin-bottom: 0;
  }

  .hero__actions {
    margin-top: 8px;
    align-items: center;
  }

  .hero__actions .btn--primary {
    width: 100%;
  }

  .hero__form-card {
    padding: 20px 16px;
    border-radius: var(--radius);
  }

  .hero__card-brand {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .hero__card-brand .hero__logo-img {
    width: 88px;
    margin: 0;
  }

  .hero__card-brand .hero__partner-badge {
    height: 32px;
    margin: 0;
  }

  .hero-form__title {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: left;
  }

  .hero__form-card .hero-form__title {
    text-align: left;
  }

  .hero-form {
    gap: 12px;
  }

  .form-note {
    font-size: 12px;
  }

  .problems-closing {
    font-size: 15px;
    margin-top: 20px;
  }

  .why-zoho__highlight {
    font-size: 16px;
    padding: 18px;
  }

  .cta__desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .cta__visual {
    display: none;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
    padding: 14px;
  }

  .checklist {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .problem-card--wide {
    grid-column: span 2;
  }

  .problem-card {
    padding: 14px 12px;
  }

  .problem-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .problem-card__icon {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .nav__item--desktop {
    display: none;
  }

  .nav__item--mobile {
    display: list-item;
  }

  .service-card:not(.service-card--expanded) .service-card__extra {
    display: none;
  }

  .service-card__toggle.mobile-only {
    display: block;
  }

  .faq-list:not(.faq-list--expanded) .faq-item--more {
    display: none;
  }

  .faq-show-more.mobile-only {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #faq .container {
    text-align: center;
  }

  #faq .faq-list {
    text-align: left;
  }

  .faq-list--expanded + .faq-show-more {
    display: none;
  }

  .industry-card {
    padding: 18px 16px;
  }

  .industry-card__desc {
    font-size: 14px;
    margin-bottom: 0;
  }

  .industries-grid,
  .industries-grid--six {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .industry-card__number {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .industry-card__title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .why-zoho__highlight {
    font-size: 18px;
    padding: 24px;
  }

  .why-zoho__closing {
    font-size: 15px;
    padding: 20px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card--flagship {
    padding: 20px 16px;
  }

  .services-flagship__label::before,
  .services-flagship__label::after,
  .services-additional__label::before,
  .services-additional__label::after {
    display: none;
  }

  .service-card__benefits--cols {
    grid-template-columns: 1fr;
  }

  .why-us__highlight-box {
    padding: 28px 24px;
  }

  .why-us__quote {
    font-size: 18px;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
  }

  .journey-step {
    display: flex;
    text-align: left;
    gap: 16px;
    padding: 0;
  }

  .journey-step__marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .journey-step__icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .faq-item__question {
    padding: 18px 48px 18px 20px;
    font-size: 15px;
  }

  .faq-item__answer {
    padding: 0 20px 18px;
  }

  .cta__inner {
    text-align: left;
  }

  .cta__title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .cta__contact {
    align-items: flex-start;
  }

  .cta__inner .btn-group {
    align-items: stretch;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__inner {
    gap: 32px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btn {
    white-space: normal;
    padding: 14px 20px;
    width: 100%;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .btn--text {
    width: auto;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .brand-logo__text {
    display: none;
  }

  .brand-logo__icon {
    width: 36px;
    height: 36px;
  }

  .hero__subtitle {
    font-size: 12px;
  }

  .badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hero-form__title {
    font-size: 20px;
  }

  .service-card__title {
    font-size: 19px;
  }

  .cta__contact-item {
    font-size: 14px;
    word-break: break-word;
  }
}
