/* ==========================================================================
   THE CONDUCT MANAGEMENT SYSTEM (TCMS) - CLEAN UNIFIED STYLESHEET
   1:1 PIXEL PERFECT CLONE OF HTTPS://TCMS.SYSTEMS/
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-blue: #105EB1;
  --secondary-blue: #046BD2;
  --hover-blue: #0d4d92;
  --tcms-green: #30960E;
  --tcms-green-hover: #26790b;
  --competitor-red: #E30F0F;
  
  /* Neutral Colors */
  --text-dark: #181818;
  --text-muted: #54595F;
  --text-light: #7A7A7A;
  --text-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-subtle: #ECEFF3;
  --bg-form: #EFEFEF;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  --border-light: #F3F4F6;
  
  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --container-max-width: 1240px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --box-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ── Reset & Global Styles ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Header Typography ── */
.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span.blue {
  color: var(--primary-blue);
}

.section-title span.green {
  color: var(--tcms-green);
}

.section-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.7;
}

/* ==========================================================================
   HEADER & NAVBAR (TRANSPARENT, FLOATING DIRECTLY OVER HERO BANNER)
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  box-shadow: none !important;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-bottom: 20px;
}

.header-logo img {
  width: 85%;
  height: auto;
  transition: transform 0.2s ease;
}

.header-logo:hover img {
  transform: scale(1.02);
}

.desktop-nav {
  margin-left: auto;
  margin-right: 50px;
}

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

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #181818;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--text-dark);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 20px 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border-color);
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: flex;
}

.mobile-nav-drawer .nav-link {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   HERO SECTION (MATCHES SCREENSHOT EXACTLY)
   ========================================================================== */
.hero-section {
  position: relative;
  background: url('../assets/images/Banner.jpg') no-repeat center center / cover;
  padding-top: 230px;
  padding-bottom: 95px;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

/* Col 1: Hero Left Text */
.hero-left-col {
  flex: 0 0 435px;
  max-width: 435px;
  display: flex;
  flex-direction: column;
}

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

.hero-headline h1.hero-title,
.hero-headline h1.dark-title,
.hero-headline h1.blue-title {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 42px;
  color: #181818;
  margin: 0;
}

.hero-headline .highlight-blue {
  color: #105EB1;
}

.hero-subtext {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #181818;
  margin-top: 14px;
  margin-bottom: 16px;
}

.hero-trial-highlight {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 18px;
}

.app-badges-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.app-badge-link img {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.app-badge-link:hover img {
  transform: translateY(-2px);
}

.hero-language-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #181818;
}

/* Right Group: Center Form Card + Right Phone Mockup */
.hero-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

/* Col 2: Hero Center Lead Form Card */
.hero-form-card {
  width: 474px;
  background-color: var(--bg-form);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: none;
}

.form-header-title {
  font-family: 'Poppins', sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #181818;
  line-height: 29px;
  margin-bottom: 8px;
}

.form-header-title span.blue {
  color: #105EB1;
}

.form-header-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #181818;
  margin-bottom: 16px;
  line-height: 23px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.form-input-group {
  display: flex;
  flex-direction: column;
}

.lead-form .form-control {
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #000000;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.lead-form .form-control::placeholder {
  color: #7A7A7A;
}

.lead-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px #105EB1;
}

.lead-form textarea.form-control {
  border-radius: 16px;
  resize: vertical;
  min-height: 126px;
  padding: 11px 18px;
}

.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #181818;
  margin: 2px 0 4px;
}

.form-checkbox-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #105EB1;
  cursor: pointer;
}

.form-submit-btn {
  background-color: #105EB1;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 35px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 4px 12px rgba(16, 94, 177, 0.22);
}

.form-submit-btn:hover {
  background-color: #0d4d92;
  box-shadow: 0 6px 16px rgba(16, 94, 177, 0.32);
  transform: translateY(-1px);
}

/* Col 3: Hero Right iPhone Mockup */
.hero-phone-col {
  width: 215px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-col img {
  width: 213px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.18));
}

/* ==========================================================================
   HOW TCMS TURNS DATA INTO INSIGHT (5-STEP COMPACT STRIP)
   ========================================================================== */
.insight-strip-section {
  padding: 55px 0 65px;
  background-color: #F8FAFC;
  border-top: 1px solid #EDF2F7;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

.insight-strip-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.insight-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #105EB1;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.insight-strip-title {
  font-size: 32px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.insight-strip-title .text-blue {
  color: #105EB1;
}

.insight-strip-sub {
  font-size: 14.5px;
  color: #181818;
  line-height: 1.6;
  margin: 0;
}

.insight-steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.insight-step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 18px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.insight-step-card:hover {
  transform: translateY(-4px);
  border-color: #105EB1;
  box-shadow: 0 12px 24px rgba(16, 94, 177, 0.09);
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-counter {
  font-size: 12px;
  font-weight: 800;
  color: #105EB1;
  background: rgba(16, 94, 177, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.step-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F0F6FD;
  color: #105EB1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
}

.insight-step-card:hover .step-icon-box {
  background: #105EB1;
  color: #FFFFFF;
  transform: scale(1.05);
}

.step-icon-box.final-icon {
  background: #F0F6FD;
  color: #105EB1;
}

.insight-step-card:hover .step-icon-box.final-icon {
  background: #105EB1;
  color: #FFFFFF;
}

.insight-step-card.is-final-step:hover {
  border-color: #105EB1;
  box-shadow: 0 12px 24px rgba(16, 94, 177, 0.1);
}

.insight-step-card.is-final-step .step-counter {
  color: #105EB1;
  background: rgba(16, 94, 177, 0.08);
}

.step-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-card-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.step-arrow-divider {
  position: absolute;
  right: -13px;
  top: calc(50% - 13px);
  width: 26px;
  height: 26px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #94A3B8;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  transition: all 0.2s ease;
}

.insight-step-card:hover .step-arrow-divider {
  color: #105EB1;
  border-color: #105EB1;
}

/* ==========================================================================
   COMPARISON SECTION: TCMS VS. OTHERS
   ========================================================================== */
.comparison-section {
  padding: 85px 0 70px;
  background-color: #FAFAFA;
}

.comparison-header {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.comp-row {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comp-row:hover {
  box-shadow: var(--box-shadow-md);
  transform: translateY(-2px);
}

.comp-tcms,
.comp-competitor {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.comp-tcms {
  background: var(--tcms-green);
  color: var(--text-white);
}

.comp-competitor {
  background: var(--competitor-red);
  color: var(--text-white);
}

.comp-tier-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.comp-tcms .comp-tier-label {
  color: rgba(255, 255, 255, 0.9);
}

.comp-competitor .comp-tier-label {
  color: #FFFFFF;
}

.comp-price {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.comp-price span {
  font-size: 1rem;
  font-weight: 400;
}

.comp-perks,
.comp-no-list,
.comp-amounts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
}

.comp-amount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comp-amount-row.worst {
  font-size: 15px;
}

/* Enterprise Pricing Card */
.pricing-card-enterprise {
  background-color: var(--tcms-green);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  color: #FFFFFF;
  margin: 10px 0;
  box-shadow: 0 8px 24px rgba(48, 150, 14, 0.25);
}

.pricing-card-enterprise .subtitle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pricing-card-enterprise .client-count {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card-enterprise .title {
  font-size: 30px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.pricing-card-enterprise .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card-enterprise .features-list li {
  font-size: 14.5px;
  font-weight: 400;
}

.pricing-card-enterprise .cta-buttonn {
  background-color: #FFFFFF;
  color: var(--tcms-green);
  padding: 12px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card-enterprise .cta-buttonn:hover {
  transform: translateY(-2px);
  background-color: #F9FAFB;
}

.comparison-note {
  max-width: 860px;
  margin: 25px auto 0;
  font-size: 13.5px;
  color: #181818;
  line-height: 1.6;
  text-align: center;
}

/* ==========================================================================
   TRANSPARENT PRICING CARDS
   ========================================================================== */
.pricing-section {
  padding: 85px 0 90px;
  background-color: #FFFFFF;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 10px;
  letter-spacing: normal;
  text-transform: none;
}

.pricing-title {
  font-size: 38px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.pricing-title .text-blue {
  color: #105EB1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 22px;
  border: 1px solid #E5E7EB;
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.pricing-card-top {
  width: 100%;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.pricing-card-top.no-badge {
  padding-top: 14px;
}

.pricing-badge-box {
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.pricing-pill-badge {
  display: inline-block;
  border-radius: 50px;
  padding: 5px 18px;
  line-height: 1.2;
}

.pricing-pill-badge.badge-blue {
  background-color: #105EB1;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
}

.pricing-pill-badge.badge-orange {
  background-color: #F97316;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 14px;
  line-height: 1.2;
  text-align: left;
}

.pricing-card-price {
  width: 100%;
  font-size: 34px;
  font-weight: 700;
  color: #105EB1;
  line-height: 1;
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3px;
  text-align: left;
}

.pricing-card-price .pricing-period {
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
}

.pricing-features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  flex-grow: 1;
  text-align: left;
}

.pricing-feature {
  font-size: 13px;
  font-weight: 400;
  color: #374151;
  padding: 6.5px 0;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

.pricing-btn-wrap {
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.pricing-subscribe-btn {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 36px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  transition: all 0.25s ease;
}

.pricing-subscribe-btn:hover {
  background-color: #262626;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #FFFFFF;
  background-image: url('../assets/images/about-watermark-bg.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  padding: 90px 0 95px;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-phone-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

.about-content-col {
  max-width: 660px;
}

.about-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 8px;
  letter-spacing: normal;
  text-transform: none;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
}

.about-title .text-blue {
  color: #105EB1;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14.5px;
  color: #2D3748;
  line-height: 1.68;
}

.about-text-content p {
  margin: 0;
}

.about-app-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.about-badge-btn {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.about-badge-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.about-badge-btn img {
  height: 48px;
  width: auto;
  display: block;
}

/* ==========================================================================
   ABOUT FOUNDER SECTION
   ========================================================================== */
.founder-section {
  position: relative;
  background-color: #FFFFFF;
  background-image: url('../assets/images/founder-bg.jpg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  padding: 90px 0 95px;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient( to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.91) 45%, rgb(255, 255, 255) 100% );
  z-index: 1;
}

.founder-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max-width);
}

.founder-header {
  margin-bottom: 22px;
}

.founder-title {
  font-size: 38px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.founder-title .text-blue {
  color: #105EB1;
}

.founder-story {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14.5px;
  color: #2D3748;
  line-height: 1.68;
}

.founder-story p {
  margin: 0;
}

.founder-intro {
  font-size: 15px;
  font-weight: 500;
  color: #181818;
  margin-bottom: 2px;
}

.founder-lead {
  font-size: 15px;
  font-weight: 700;
  color: #181818;
  margin-top: 6px;
}

.founder-cta-group {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.founder-cta-group a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.founder-cta-group a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.founder-cta-group img {
  height: 48px;
  width: auto;
  display: block;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #FFFFFF;
  background-image: url('../assets/images/services-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 85px 0 90px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 8px;
  letter-spacing: normal;
  text-transform: none;
}

.services-title {
  font-size: 38px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.services-title .text-blue {
  color: #105EB1;
}

.services-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 370px 1fr;
  align-items: center;
  gap: 45px;
}

.services-col {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.service-item:not(:last-child) {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.service-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-heading {
  font-size: 17px;
  font-weight: 700;
  color: #105EB1;
  line-height: 1.3;
  margin: 0;
}

.service-desc {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.62;
  margin: 0;
}

.services-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-nurse-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   OUR SOLUTION - INTERACTIVE 3D PHONE SLIDER
   ========================================================================== */
.solution-section {
  padding: 85px 0 90px;
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.solution-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.solution-title {
  font-size: 40px;
  font-weight: 800;
  color: #181818;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.solution-title .text-blue {
  color: #105EB1;
}

.solution-desc {
  font-size: 15px;
  color: #374151;
  line-height: 1.65;
  max-width: 740px;
  margin: 0 auto;
}

.phone-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.phone-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
  transition: filter 0.5s ease;
}

/* 5 Positions in the Fan/Coverflow matching the user's screenshot */
.phone-slide.pos-center {
  transform: translate(-50%, -50%) scale(1.18);
  z-index: 5;
  opacity: 1;
}
.phone-slide.pos-center .phone-mockup-img {
  filter: drop-shadow(0 25px 50px rgba(16, 94, 177, 0.25));
}

.phone-slide.pos-left-1 {
  transform: translate(calc(-50% - 175px), -50%) scale(0.94);
  z-index: 4;
  opacity: 0.98;
}

.phone-slide.pos-left-2 {
  transform: translate(calc(-50% - 330px), -50%) scale(0.78);
  z-index: 2;
  opacity: 0.88;
}

.phone-slide.pos-right-1 {
  transform: translate(calc(-50% + 175px), -50%) scale(0.94);
  z-index: 4;
  opacity: 0.98;
}

.phone-slide.pos-right-2 {
  transform: translate(calc(-50% + 330px), -50%) scale(0.78);
  z-index: 2;
  opacity: 0.88;
}

.phone-slide.pos-hidden {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #181818;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.slider-arrow:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 6px 20px rgba(16, 94, 177, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev-arrow {
  left: 20px;
}

.slider-arrow.next-arrow {
  right: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: var(--primary-blue);
  width: 26px;
  border-radius: 10px;
}

.solution-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
}

.solution-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.solution-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.solution-badge-link img {
  height: 48px;
  width: auto;
  display: block;
}

/* ==========================================================================
   TCMS IN ACTION (VIDEO PLAYLIST SECTION)
   ========================================================================== */
.action-section {
  padding: 85px 0 90px;
  background-color: #FFFFFF;
}

.action-container {
  max-width: 1120px;
  margin: 0 auto;
}

.action-header {
  text-align: center;
  margin-bottom: 35px;
}

.action-title {
  font-size: 38px;
  font-weight: 800;
  color: #181818;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.action-title .text-blue {
  color: #105EB1;
}

/* Video Player + Playlist Unified Box */
.video-player-box {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  margin-bottom: 35px;
}

.video-player-col {
  background-color: #000000;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-col video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000000;
  display: block;
}

/* Playlist Column */
.playlist-list-col {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #E5E7EB;
  background-color: #FFFFFF;
}

.playlist-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  border-bottom: 1px solid #E5E7EB;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background-color: #FFFFFF;
  flex: 1;
}

.playlist-row:last-child {
  border-bottom: none;
}

.playlist-row:hover {
  background-color: #F8FAFC;
}

.playlist-row.active {
  background-color: #ECEFF3;
}

.playlist-thumb {
  width: 60px;
  height: 40px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background-color: #000000;
  flex-shrink: 0;
}

.playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.playlist-title {
  font-size: 13.5px;
  font-weight: 500;
  color: #2D3748;
  line-height: 1.35;
}

.playlist-row.active .playlist-title {
  font-weight: 700;
  color: #181818;
}

/* Description Section Below Player */
.video-meta-section {
  width: 100%;
  text-align: left;
}

.video-tabs-bar {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 20px;
}

.video-tab-btn {
  font-size: 13.5px;
  font-weight: 700;
  color: #181818;
  padding: 8px 16px;
  border-bottom: 2px solid #181818;
  margin-bottom: -1px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.video-desc-content {
  color: #374151;
}

.video-desc-lead {
  font-size: 14.5px;
  font-weight: 700;
  color: #181818;
  margin-bottom: 6px;
}

.video-desc-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}


/* ==========================================================================
   DOWNLOAD MOBILE APP SECTION
   ========================================================================== */
.download-app-section {
  padding: 70px 0 80px;
  background-color: #FFFFFF;
}

.download-app-card {
  background-color: #EFEFEF;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.download-app-content {
  padding: 55px 30px 55px 55px;
  display: flex;
  flex-direction: column;
}

.download-app-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.download-app-title .title-blue {
  color: #105EB1;
  display: block;
}

.download-app-title .title-dark {
  color: #181818;
  display: block;
}

.download-app-desc {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 24px;
}

.download-app-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.download-app-badges a {
  display: inline-block;
  line-height: 1;
}

.download-app-badges a img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-app-badges a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}

.download-app-lang {
  font-size: 14px;
  font-weight: 600;
  color: #181818;
  margin: 0;
}

.download-app-image {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-right: 32px;
}

.download-app-phones-img {
  max-width: 415px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: auto;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #FFFFFF;
  background-image: url('../assets/images/Mask-group-3.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 0 25px;
  border-top: 1px solid var(--border-color);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo img {
  width: 130px;
  height: auto;
}

.footer-brand p {
  font-size: 14px;
  color: #181818;
  line-height: 1.7;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 14px;
  color: #181818;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary-blue);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
}

.footer-contact-item a:hover {
  color: var(--primary-blue);
}

/* Social Icons */
.footer-social-wrapper {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-circle-link:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--hover-blue);
  box-shadow: 0 4px 10px rgba(16, 94, 177, 0.35);
}

/* Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  padding-top: 25px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-light);
}

/* ==========================================================================
   TOAST NOTIFICATION (FOR FORMS)
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #10B981;
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--box-shadow-lg);
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1180px) {
  .hero-layout {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .hero-left-col {
    flex: 1 1 100%;
    max-width: 600px;
    text-align: center;
  }
  .hero-subtext,
  .hero-headline,
  .hero-trial-highlight,
  .hero-language-note {
    margin-left: auto;
    margin-right: auto;
  }
  .app-badges-group {
    justify-content: center;
  }
  .desktop-nav {
    margin-right: 0;
  }
  .nav-menu {
    gap: 28px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-wrapper {
    grid-template-columns: 1fr 310px 1fr;
    gap: 30px;
  }
  .video-player-box {
    grid-template-columns: 1fr;
  }
  .playlist-list-col {
    border-left: none;
    border-top: 1px solid #E5E7EB;
  }
  .about-container {
    grid-template-columns: 380px 1fr;
    gap: 35px;
  }
  .about-phone-img {
    max-width: 360px;
  }
  .phone-slider-wrapper {
    height: 500px;
  }
  .phone-slide {
    width: 215px;
  }
  .phone-slide.pos-left-1 {
    transform: translate(calc(-50% - 150px), -50%) scale(0.92);
  }
  .phone-slide.pos-left-2 {
    transform: translate(calc(-50% - 280px), -50%) scale(0.76);
  }
  .phone-slide.pos-right-1 {
    transform: translate(calc(-50% + 150px), -50%) scale(0.92);
  }
  .phone-slide.pos-right-2 {
    transform: translate(calc(-50% + 280px), -50%) scale(0.76);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .download-app-content {
    padding: 45px 25px 45px 40px;
  }
  .download-app-title {
    font-size: 32px;
  }
  .download-app-phones-img {
    max-width: 360px;
  }
  .download-app-image {
    padding-right: 20px;
  }
  .insight-steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .step-arrow-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  .hero-right-group {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }
  .hero-form-card {
    width: 100%;
    max-width: 420px;
    padding: 24px 20px;
  }
  .hero-phone-col {
    width: 100%;
  }
  .hero-phone-col img {
    width: 180px;
  }
  .hero-headline h1.hero-title,
  .hero-headline h1.blue-title,
  .hero-headline h1.dark-title {
    font-size: 28px;
    line-height: 34px;
  }
  .section-title {
    font-size: 28px;
  }
  .comp-row {
    grid-template-columns: 1fr;
  }
  .comp-tcms,
  .comp-competitor {
    padding: 1.5rem;
    min-height: auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    padding: 60px 0;
    background-size: auto 60%;
    background-position: right top;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-phone-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-title {
    font-size: 28px;
  }
  .about-app-badges {
    justify-content: flex-start;
  }
  .founder-section {
    padding: 60px 0;
  }
  .founder-title {
    font-size: 28px;
  }
  .founder-story {
    max-width: 100%;
  }
  .services-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .services-center-image {
    order: -1;
  }
  .services-nurse-img {
    max-width: 280px;
  }
  .solution-section {
    padding: 60px 0;
  }
  .solution-title {
    font-size: 28px;
  }
  .phone-slider-wrapper {
    height: 420px;
  }
  .phone-slide {
    width: 175px;
  }
  .phone-slide.pos-left-1 {
    transform: translate(calc(-50% - 90px), -50%) scale(0.85);
    opacity: 0.65;
  }
  .phone-slide.pos-left-2 {
    opacity: 0;
    pointer-events: none;
  }
  .phone-slide.pos-right-1 {
    transform: translate(calc(-50% + 90px), -50%) scale(0.85);
    opacity: 0.65;
  }
  .phone-slide.pos-right-2 {
    opacity: 0;
    pointer-events: none;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .slider-arrow.prev-arrow { left: 8px; }
  .slider-arrow.next-arrow { right: 8px; }
  .download-app-card {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 20px;
  }
  .download-app-content {
    padding: 40px 20px 25px;
    align-items: center;
  }
  .download-app-title {
    font-size: 28px;
  }
  .download-app-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .download-app-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .download-app-image {
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }
  .download-app-phones-img {
    max-width: 310px;
    margin: 0 auto;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .insight-strip-section {
    padding: 45px 0 50px;
  }
  .insight-strip-title {
    font-size: 25px;
  }
  .insight-steps-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-arrow-divider {
    display: none;
  }
}

