*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}


:root {

  --container-width: 1200px;


  --color-bg-white: #ffffff;
  --color-bg-light: #F8FAFC;
  --color-dark: #000000;

  --color-text-headings: #0F2F2E;
  --color-text-supporting: #4A6B69;
  --color-text-body: #5C7A78;
  --color-text-label: #6B8F87;
  --color-text-white: #ffffff;


  --spacing-4:  4px;
  --spacing-8:  8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-28: 28px;
  --spacing-32: 32px;
  --spacing-36: 36px;
  --spacing-40: 40px;
  --spacing-44: 44px;
  --spacing-48: 48px;
  --spacing-60: 60px;
  --spacing-64: 64px;
  --spacing-72: 72px;
  --spacing-88: 88px;
  --spacing-92: 92px;

}


body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-white);
  color: var(--color-text-body);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}


.container {
  max-width: var(--container-width);
  margin: 0 auto;
}


/* Typography */

h1 {
  max-width: 724px;
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--spacing-16);
}

h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-text-headings);
}

h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-text-headings);
}

h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-text-headings);
}

h5 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: var(--color-text-headings);
}

h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--color-text-label);
  margin-bottom: var(--spacing-8);
}

.supporting-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--color-text-supporting);
}

.body-text {
  font-size: 16px;
  line-height: 24px;
  color: #5C7A78;
}


/* Buttons */

.btn-outline,
.btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline {
  border: 1px solid #F4CDC9;
  color: #F4CDC9;
}

.btn-outline:hover {
  background-color: rgb(244 205 201 / 10%);
  transform: translateY(-2px);
}


.btn-filled {
  background: #F4CDC9;
  color: #000000;
}

.btn-filled:hover {
  transform: translateY(-2px);
}


/* Header */

.navbar {
  position: relative;
  z-index: 1001;
  height: 72px;
  background-color: #0A5055;
}

.navbar-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 36px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  background: rgb(255 255 255 / 8%);
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgb(255 255 255 / 12%);
}

.nav-links-left {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
  margin-left: var(--spacing-32);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.dropdown-arrow {
  height: 8px;
  width: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-links-right {
  display: flex;
  align-items: center; 
  margin-right: var(--spacing-24);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}

.nav-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.burger-icon span {
  width: 28px;
  height: 4px;
  background-color: #F4CDC9;
  border-radius: 999px;
  display: block;
}

.close-icon {
  display: none;
  position: relative;
  width: 28px;
  height: 28px;
}

.close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 4px;
  background-color: #F4CDC9;
  border-radius: 999px;
}

.close-icon span:nth-child(1) {
  transform: rotate(45deg);
}
.close-icon span:nth-child(2) {
  transform: rotate(-45deg);
}

.nav-toggle.active .burger-icon {
  display: none;
}
.nav-toggle.active .close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  width: min(320px, 100%);
  height: calc(100vh - 72px);
  background-color: #0A5055;
  padding: 28px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  z-index: 1000;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
  background-color: rgb(255 255 255 / 8%);
}

.mobile-buttons {
  margin-top: var(--spacing-16);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}


/* Hero-section */

.hero {
  padding: 96px 0;
  background-image: url(tability-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  text-align: center;
  color: #ffffff;
}

.hero-title {
  max-width: 724px;
  text-align: center;
  margin: 0 auto 16px;
}

.hero-supporting-text {
  text-align: center;
  color: #ffffff;
  margin-bottom: var(--spacing-24);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-24);
  margin-bottom: var(--spacing-28);
}

.hero-body-text {
  text-align: center;
  color: #ffffff;
}


/* Transformation Section */

.transformation {
  padding: 96px 0;
  background-color: #FAFCFB;
}

.transformation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transformation-title {
  margin-bottom: var(--spacing-16);
  text-align: center;
}

.transformation-supporting-text {
  max-width: 640px;
  text-align: center;
  margin-bottom: var(--spacing-40);
}

.transformation-cards {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.transformation-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transformation-icon-bg {
  position: relative;
  height: 72px;
  width: 72px;
  background-color: #E6F2EF;
  margin-bottom: var(--spacing-24);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-icon {
  width: 26px;
  height: 26px;
}

.step-number {
  position: absolute;
  top: -4px;
  left: -4px;
  height: 20px;
  width: 20px;
  background-color: #F1F5F4;
  color: #5F7A78;
  border-radius: 999px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transformation-card-title {
  text-align: center;
  margin-bottom: 8px;
}

.transformation-card-text {
  text-align: center;
  max-width: 320px;
}


/* Progress Section */

.progress {
  padding: 96px 0;
}

.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-title {
  text-align: center;
  margin-bottom: var(--spacing-16);
}

.progress-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-40);
}

.progress-tab {
  background-color: #EEF6F4 ;
  border: 1px solid #D8E7E3;
  padding: 8px 12px;
  border-radius: 999px;
  color: #2F6F6A;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.progress-tab:hover {
  background-color: #E2F0EC;
}

.progress-tab-active {
  background-color: #0A5055;
  border-color: #0A5055;
  color: #FFFFFF;
}

.progress-preview-img {
  width: 100%;
  max-width: 976px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 24px 80px 0px rgba(0, 0, 0, 0.08);
}


/* AI Section */

.ai {
  padding: 96px 0;
  background-color: #F7F4FF;
}

.ai-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.ai-title {
  margin-bottom: var(--spacing-16);
}

.ai-supporting-text {
  max-width: 480px;
  margin-bottom: var(--spacing-40);
}

.ai-feature {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-24);
}

.ai-right {
  position: relative;
  width: 520px;
  height: 488px;
}

.ai-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
}

.ai-label-right {
  position: absolute;
  top: 0;
  right: 88px;
  letter-spacing: 0;
}

.ai-image {
  position: absolute;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}

.ai-image1 {
  top: 24px;
  right: 20px;
  height: 124px;
}

.ai-image2 {
  top: 156px;
  left: 0;
  height: 184px;
}

.ai-image3 {
  top: 348px;
  right: 0;
  height: 140px;
}


/* AI Capabilities Section */

.capabilities {
  padding: 96px 0 60px;
}

.capabilities-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capabilities-card-green::before {
  background-color: #1F7A6E;
}

.capabilities-card-red::before {
  background-color: #E45858;
}

.capabilities-card-purple::before {
  background-color: #7C6AE6;
}

.capabilities-title {
  margin-bottom: var(--spacing-16);
  text-align: center;
}

.capabilities-supporting-text {
  max-width: 640px;
  text-align: center;
  margin-bottom: var(--spacing-40);
}

.capabilities-cards {
  display: flex;
  align-items: center;
  gap: var(--spacing-60);
}

.capabilities-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid #E6F2EF;
  border-radius: 16px;
  box-shadow: 0px 8px 24px 0px rgba(15, 46, 44, 0.06);
}

.capabilities-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 16px 0 16px 0;
}

.capabilities-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-20);
}

.capabilities-card-title {
  max-width: 208px;
}

.capabilities-card-text {
  max-width: 260px;
  margin-bottom: var(--spacing-24);
}

.capabilities-preview {
  min-height: 134px;
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05);
}

.capabilities-preview-green {
  background-color: #F4F7F8;
  color: #1F7A6E;
}

.capabilities-preview-label {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-8);
  gap: var(--spacing-8);
}

.capabilities-preview-text {
  color: #123F3D;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  width: 200px;
}

.capabilities-preview-link {
  text-decoration: none;
  color: #1F7A6E;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  gap: var(--spacing-8);
  margin-top: var(--spacing-8);
}

.capabilities-preview-red {
  background-color: #FEF8F7;
  color: #E45858;
}

.capabilities-preview-red-highlight {
  color: #E45858;
}

.capabilities-preview-purple {
  background-color: #F8F6FC;
  color: #7C6AE6;
}

.capabilities-preview-green-highlight {
  color: #239841;
}


/* AI Process Section */

.process {
  padding: 60px 0 516px;
}

.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-arch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.process-icon {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.process-title {
  margin-bottom: var(--spacing-16);
  text-align: center;
}

.process-supporting-text {
  max-width: 640px;
  text-align: center;
  margin-bottom: var(--spacing-40);
}

.process-steps {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 112px;
}

.process-step {
  position: relative;
  width: 280px;
  padding-top: 120px;
  z-index: 1;
}

.process-card {
  position: absolute;
  z-index: 2;
  top: 148px;
  padding: 72px 24px 24px;
  border-radius: 32px;
  background-color: #FFFFFF;
  box-shadow: 0px 12px 4px 0px rgba(15, 23, 42, 0.06);
}

.process-card-title {
  max-width: 232px;
  margin-bottom: var(--spacing-12);
}

.process-card-text {
  max-width: 232px;
}

.process-line {
  position: absolute;
  top: 248px;
  left: -68px;
}

.process-line-arrow {
  position: absolute;
  top: 228px;
  right: -72px;
}

.process-arrow {
  position: absolute;
  top: 228px;
  left: 132px;
}

.process-arch,
.process-line,
.process-arrow,
.process-line-arrow {
  z-index: 1;
}

.process-shadow {
  position: absolute;
  top:340px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  width: 100%;
  max-width: 1200px;
  height: 120px;
  background-color: rgba(100, 116, 139, 0.12);
  border-radius: 80px;
  filter: blur(10px);
}


/* Integration Section */

.integration {
  padding: 96px 0;
  background-color: var(--color-bg-light);
}

.integration-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integration-title {
  max-width: 680px;
  margin-bottom: var(--spacing-16);
  text-align: center;
}

.integration-supporting-text {
  text-align: center;
  margin-bottom: var(--spacing-40);
}

.integration-graphic {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-bottom: var(--spacing-40);
}

.integration-cta {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #F1F5F9;
  border: 1px solid #475569;
  color: #475569;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.integration-cta:hover {
  transform: translateY(-2px);
}


/* Comparison Section */

.comparison {
  padding: 96px 0;
}

.comparison-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comparison-card-before {
  position: relative;
  left: -260px;
  transform: rotate(-2deg);
  z-index: 1;
  max-width: 460px;
  padding: 44px 80px 24px 24px;
  background-color: rgba(248, 250, 252, 0.92);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
}

.comparison-badge {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -32px;
  padding: 12px 20px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-align: center;
}

.comparison-badge-before {
  background-color: #FFF3F3;
  color: #DC2626;
}

.comparison-title-before {
  max-width: 200px;
  margin-bottom: var(--spacing-24);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

.comparison-item {
  display: flex;
  align-items: center;
}

.comparison-item-content {
  max-width: 160px;
  margin-left: var(--spacing-12);
}

.comparison-item-indicator {
  margin-left: 88px;
}

.comparison-item-title {
  margin-bottom: var(--spacing-4);
}

.comparison-item-text {
  font-size: 14px;
  line-height: 20px;
}


/* After Card */
.comparison-card-after {
  background-color: #ffffff;
  position: relative;
  margin-top: -280px;
  left: 220px;
  z-index: 2;
  max-width: 628px;
  padding: 56px 28px 24px 28px;
  border-radius: 20px;
  border: 1px solid #EEF2F7;
  box-shadow: 0px 24px 48px 0px rgba(15, 23, 42, 0.08);
  margin-bottom: var(--spacing-72);
}

.comparison-badge-success {
  background-color: #0F766E;
  color: #ffffff;
}

.comparison-title-after {
  max-width: 396px;
  height: auto;
  margin-bottom: var(--spacing-24);
}

.comparison-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-20);
  margin-bottom: var(--spacing-24);
}

.dashboard-card {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0px 0px 6px 0px rgba(15, 47, 46, 0.10);
}

.dashboard-card-progress,
.dashboard-card-risks {
  min-width: 312px;
  height: auto;
}

.dashboard-card-confidence,
.dashboard-card-milestone {
  max-width: 240px;
  height: auto;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--spacing-12);
}

.dashboard-progress-metric {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-12);
}

.dashboard-progress-value {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #0F172A;
}

.dashboard-progress-status {
  font-size: 14px;
  line-height: 20px;
  color: #10B981;
}

.dashboard-progress-bar {
  margin-bottom: var(--spacing-8);
}

.dashboard-progress-trend {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.dashboard-progress-trend-text {
  font-size: 14px;
  line-height: 20px;
}

.dashboard-confidence-level {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: #F59E0B;
  margin-bottom: 12px;
}

.dashboard-confidence-trend {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}

.dashboard-confidence-text {
  font-size: 14px;
  line-height: 20px;
}

.dashboard-risk-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: var(--spacing-12);
}

.dashboard-risk-text {
  font-size: 14px;
  line-height: 20px;
}

.dashboard-risk-badge {
 padding: 4px 8px;
 border-radius: 4px;
 font-size: 12px;
 line-height: 16px;
 font-weight: 500;
 background-color: #FEECEC;
 color: #DC2626;
 margin-left: auto;
}

.dashboard-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  color: #10B981;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.dashboard-milestone {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
  margin-bottom: var(--spacing-20);
}

.dashboard-milestone-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  font-size: 14px;
  line-height: 20px;
}

.dashboard-milestone-time {
  color: #10B981;
  display: inline-block;
}

.dashboard-summary {
  display: flex;
  align-items: center;
  padding: 16px;
  display: flex;
  align-items: center;
  background-color: #ECFDF5;
}

.dashboard-summary-icon {
  margin-right: var(--spacing-12);
}

.dashboard-summary-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  flex: 1;
}

.dashboard-summary-title {
  color: #10B981;
}

.dashboard-summary-text {
  font-size: 14px;
  line-height: 20px;
}

.dashboard-summary-status {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.dashboard-summary-status-text {
  color: #0F2F2E;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-label {
  margin-bottom: var(--spacing-16);
}

.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-40);
  margin-bottom: var(--spacing-36);
}

.testimonial-image {
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0px 12px 4px 0px rgba(15, 23, 42, 0.08);
}

.testimonial-review {
  max-width: 520px;
  height: auto;
  padding: 32px;
  background-color: var(--color-bg-light);
  border-radius: 16px;
  border: 1px solid #EEF2F7;
  box-shadow: 0px 8px 4px 0px rgba(15, 23, 42, 0.06);
}

.testimonial-review-logo {
  margin-bottom: var(--spacing-16);
}

.testimonial-review-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: var(--spacing-16);
}

.testimonial-review-name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: var(--spacing-8);
}

.testimonial-review-position {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #64748B;
}

.testimonial-cta {
  text-decoration: none;
  padding: 12px 16px;
  background-color: #E6F4F1;
  color: #0F766E;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
}


/* Customers Sections */

.customers {
  padding: 96px 0;
  background-color: var(--color-bg-light);
}

.customers-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.customers-title {
  text-align: center;
  margin-bottom: var(--spacing-40);
}

.customers-logos-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-24);
}

.customers-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-24);
}


/* Resources Section */

.resources {
  padding: 96px 0;
}

.resources-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-32);
}

.resources-header {
  flex: 1 1 460px;
  max-width: 506px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

.resources-title-highlight {
  color: #0F766E;
}

.resources-card {
  flex: 1 1 460px;
  max-width: 506px;;
  padding: 32px;
  border: 1px solid #E6EEF2;
  border-radius: 12px;
  box-shadow: 0px 6px 18px 0px rgba(15, 23, 42, 0.06);
}

.resources-card-title {
  margin-bottom: var(--spacing-16);
}

.resources-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-20);
}

.resources-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-12);
}

.resources-item-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}


/* CTA Section */

.cta {
  padding: 96px 0;
  background-image: url(tability-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  max-width: 720px;
  text-align: center;
}

.cta-supporting-text {
  text-align: center;
  color: #ffffff;
  margin-bottom: var(--spacing-24);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
}


/* Project Notes */

.project-notes {
  padding: 96px 0;
  background-color: var(--color-bg-light);
}

.project-notes-container {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: var(--spacing-88);
}

.project-notes-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-notes-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-20);
}

.project-notes-icon {
  width: 40px;
  height: auto;
}

.project-notes-title {
  color: #1F7A6E;
}

.project-notes-description {
  max-width: 460px;
  line-height: 28px;
  margin-bottom: var(--spacing-36);
}

.project-tech-stack {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  margin-bottom: var(--spacing-32);
}

.code-icon {
  width: 48px;
  height: auto;
}

.project-tech-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-4);
}

.project-tech-label {
  color: #1F7A6E;
}

.tech-tags {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
}

.tech-tag {
  color: #000000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.tech-divider {
  color: #1F7A6E;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.project-source-link {
  align-self: flex-start;
  text-decoration: none;
  background-color: #1F7A6E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-source-link:hover {
  transform: rotate(-2deg) translateY(-4px);

  box-shadow:
    0 16px 32px rgba(31, 122, 110, 0.25);
}


.project-highlights {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
  align-items: start;
}

.highlight-card {
  height: auto;
  display: flex;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  gap: var(--spacing-12);
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.04),
    0 2px 4px rgba(15, 23, 42, 0.03);

}

.highlight-icon {
  height: 40px;
  width: 40px;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.highlight-description {
  font-size: 14px;
  line-height: 20px;
}


/* Footer Section */

.footer {
  padding: 80px 0 48px 0;
  background-color: #0F172A;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-48);
}

.footer-links {
  display: flex;
  gap: clamp(48px, 8vw, 120px);
}


.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-12);
}

.footer-column-title {
  color: #FACC15;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-8);
}

.footer-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #FACC15;
}

.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}

.footer-logo {
  height: auto;
  display: block;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
}

.footer-social-link {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: var(--spacing-16);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
}

.footer-copyright {
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
}

.footer-legal-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  line-height: 20px;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #FACC15;
}



 /* Media Queries */

@media (max-width: 1100px) {

  /* Header */

  .navbar {
    height: 68px;
  }

  .nav-logo {
    height: 32px;
  }

  .nav-links-left {
    gap: 12px;
    margin-left: var(--spacing-16);
    font-size: 15px;
  }

  .nav-links-right {
    margin-right: var(--spacing-16);
    font-size: 15px;
  }

  .nav-buttons {
    gap: 12px;
  }

  .nav-links a,
  .btn-outline,
  .btn-filled {
    font-size: 15px;
  }


  /* Progress Section */

  .progress {
    padding: 80px 0;
  }

  .progress-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .progress-tab {
    font-size: 15px;
  }


  /* AI Section */

  .ai {
    padding: 80px 0;
  }

  .ai-container {
    gap: 48px;
  }

  .ai-supporting-text {
    max-width: 440px;
  }

  .ai-right {
    width: 460px;
    height: 452px;
    background-size: 220px;
  }

  .ai-label-right {
    right: 72px;
  }


  .ai-image1 {
    height: 112px;
  }

  .ai-image2 {
    top: 140px;
    height: 168px;
  }


  .ai-image3 {
    top: 312px;
  }


  /* AI Process Section */

  .process {
    padding: 60px 0 496px;
  }

  .process-steps {
    gap: 72px;
  }

  .process-step {
    width: 240px;
  }

  .process-card {
    padding: 64px 20px 20px;
  }


  /* Integration Section */

  .integration {
    padding: 80px 0;
  }

  .integration-graphic {
    max-width: 640px;
  }


  /* Comparison Section */

  .comparison-card-before {
    left: -260px;
  }

  .comparison-card-after {
    left: 200px;
    margin-top: -280px;
  }

}




@media (max-width: 980px) {

  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: 48px;
    line-height: 56px;
    max-width: 620px;
  }

  .supporting-text {
    font-size: 17px;
    line-height: 24px;
  }


  /* Footer */

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }


  /* Hero-section */

  .hero {
    padding: 80px 0;
  }

  /* Transformation Section */

  .transformation {
    padding: 80px 0;
  }

  .transformation-cards {
    justify-content: center;
    gap: 32px;
  }

  .transformation-card {
    max-width: 280px;
  }


  /* Progress Section */

  .progress {
    padding: 80px 0;
  }

  .progress-tabs {
    flex-wrap: wrap;
  }


  /* AI Section */

  .ai {
    padding: 80px 0;
  }

  .ai-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ai-supporting-text {
    max-width: 640px;
  }

  .ai-features {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ai-feature {
    justify-content: center;
  }


  /* AI Capabilities Section */

  .capabilities {
    padding: 80px 0 52px;
  }

  .capabilities-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }


  /* AI Process Section */
  
  .process {
    padding: 52px 0 148px;
  }

  .process-steps {
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: 92px;
  }
  
  .process-step {
    width: 100%;
    max-width: 320px;
    padding-top: 138px;
  }

  .process-line {
  top: -36px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  }

  .process-arrow {
    top: auto;
    bottom: -128px;
    left: 50%;
    transform: translateX(-101%) rotate(90deg);
  }

  .process-line-arrow {
    top: auto;
    bottom: -68px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .process-shadow {
    display: none;
  }

  .process-card {
    position: relative;
    top: auto;
    box-sizing: border-box;
  }


  /* Integration Section */

  .integration {
    padding: 80px 0;
  }

  .integration-title {
    max-width: 620px;
  }

  .integration-supporting-text {
    max-width: 620px;
  }

  .integration-graphic {
    max-width: 560px;
  }


  /* Comparison Section */

  .comparison-container {
    gap: 40px;
  }

  .comparison-card-before {
    left: 0;
    transform: rotate(0deg);
    max-width: 520px;
  }

  .comparison-card-after {
    left: 0;
    margin-top: 0;
    max-width: 640px;
  }

  .comparison-dashboard {
    gap: 16px;
  }

  .dashboard-card-progress,
  .dashboard-card-risks {
    min-width: auto;
  }

  .testimonial-card {
    gap: 24px;
  }

  .testimonial-image {
    max-width: 360px;
  }

  .testimonial-review {
    max-width: 420px;
    padding: 24px;
  }


  /* Customers Sections */

  .customers {
    padding: 72px 0;
  }

  .customers-title {
    margin-bottom: var(--spacing-32);
  }

  .customers-logos {
    gap: var(--spacing-20);
  }


  /* Resources Section */

  .resources {
    padding: 80px 0;
  }

  .resources-container {
    gap: 24px;
  }

  .resources-header,
  .resources-card {
    flex: 1 1 420px;
  }


  /* CTA Section */

  .cta {
    padding: 80px 0;
  }

  .cta-title {
    max-width: 640px;
  }


  /* Project Notes */

  .project-notes {
    padding: 80px 0;
  }

  .project-notes-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .project-notes-description {
    max-width: 100%;
  }

  .project-highlights {
    max-width: 100%;
  }


  /* Footer */

  .footer {
    padding: 72px 0 40px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-socials {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-bottom {
    gap: 24px;
  }

}



@media (max-width: 768px) {

  h1 {
    font-size: 40px;
    line-height: 48px;
    max-width: 540px;
  }


  /* Hero-section */

  .hero {
    padding: 72px 0;
  }

  .hero-buttons {
    gap: 16px;
  }


  /* Transformation Section */

  .transformation {
    padding: 72px 0;
  }

  .transformation-supporting-text {
    margin-bottom: 32px;
  }

  .transformation-cards {
    gap: 24px;
  }

  .transformation-card {
    max-width: 220px;
  }

  .transformation-icon-bg {
    width: 64px;
    height: 64px;
  }

  .transformation-icon {
    width: 24px;
    height: 24px;
  }


  /* Progress Section */

  .progress {
    padding: 72px 0;
  }

  .progress-title {
    max-width: 620px;
  }

  .progress-tabs {
    margin-bottom: 24px;
  }

  .progress-tab {
    font-size: 14px;
    line-height: 20px;
  }

  .progress-preview-img {
    border-radius: 6px;
  }


  /* AI Section */

  .ai {
    padding: 72px 0;
  }

  .ai-right {
    width: 420px;
    background-size: 180px;
  }


  /* AI Capabilities Section */

  .capabilities {
    padding: 72px 0 44px;
  }

  .capabilities-supporting-text {
    margin-bottom: 32px;
  }

  .capabilities-cards {
    gap: 24px;
  }


  /* AI Process Section */

  .process {
    padding: 44px 0 140px;
  }

  .process-supporting-text {
    margin-bottom: 32px;
  }


  /* Integration Section */

  .integration {
    padding: 72px 0;
  }

  .integration-supporting-text {
    margin-bottom: 32px;
  }

  .integration-graphic {
    max-width: 480px;
    margin-bottom: 32px;
  }


  /* Comparison Section */

  .comparison {
    padding: 72px 0;
  }

  .comparison-card-before,
  .comparison-card-after {
    width: 100%;
    max-width: 100%;
  }

  .comparison-badge {
    top: -24px;
    font-size: 20px;
    line-height: 28px;
    padding: 10px 18px;
  }

  .comparison-title-before {
    width: 100%;
    max-width: 100%;
  }

  .comparison-item-content {
    width: 100%;
    max-width: 100%;
  }

  .comparison-card-after {
    left: 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }

  .comparison-dashboard {
    grid-template-columns: 1fr;
  }
  
  .dashboard-card-progress,
  .dashboard-card-risks,
  .dashboard-card-confidence,
  .dashboard-card-milestone {
    min-width: 0;
    max-width: 100%;
  }

  .dashboard-summary {
    flex-wrap: wrap;
    gap: 12px;
  }


  .testimonial-card {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-image,
  .testimonial-review {
    max-width: 100%;
  }


  /* Customers Sections */

  .customers {
    padding: 64px 0;
  }

  .customers-title {
    margin-bottom: var(--spacing-24);
  }

  .customers-logos {
    gap: var(--spacing-16);
  }

  .customers-logos img {
    max-width: 120px;
    height: auto;
  }


  /* Resources Section */

  .resources {
    padding: 72px 0;
  }

  .resources-container {
    gap: 20px;
  }

  .resources-header,
  .resources-card {
    padding: 24px;
  }

  .resources-title {
    max-width: 620px;
  }


  /* CTA Section */

  .cta {
    padding: 72px 0;
  }

  .cta-title {
    max-width: 560px;
  }

  .cta-buttons {
    gap: 16px;
  }


  /* Project Notes */

  .project-notes {
    padding: 72px 0;
  }

  .project-highlights {
    gap: 16px;
  }

  .highlight-card {
    padding: 14px;
    border-radius: 20px;
  }

  .project-notes-description {
    margin-bottom: 32px;
  }


  /* Footer */

  .footer {
    padding: 64px 0 36px;
  }

  .footer-links {
    justify-content: space-between;
    gap: 32px;
  }

  .footer-column {
    min-width: 140px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

}



@media (max-width: 560px) {

  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px
  }

  .supporting-text {
    font-size: 16px;
    line-height: 24px;
  }


  /* Hero-section */

  .hero {
    padding: 56px 0;
  }

  .hero-container {
      text-align: center;
    }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn-outline,
  .hero-buttons .btn-filled {
    width: 100%;
  }


  /* Transformation Section */

  .transformation {
    padding: 56px 0;
  }

  .transformation-cards {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .transformation-card {
    max-width: 320px;
  }

  .transformation-icon-bg {
    width: 72px;
    height: 72px;
  }

  .transformation-icon {
    width: 26px;
    height: 26px;
  }


  /* Progress Section */

  .progress {
    padding: 56px 0;
  }

  .progress-tabs {
    justify-content: flex-start;
  }

  .progress-tab {
    font-size: 14px;
    padding: 6px 10px;
  }


  /* AI Section */

  .ai {
    padding: 56px 0;
  }

  .ai-right {
    width: 320px;
    background-size: 140px;
  }

  .ai-label-right {
    right: 0;
    text-align: right;
    font-size: 10px;
  }

  .ai-image1 {
    right: 0;
  }

  /* AI Capabilities Section */

  .capabilities {
    padding: 56px 0 36px;
  }

  .capabilities-card {
    width: 100%;
    max-width: 360px;
  }

  .capabilities-card-title,
  .capabilities-card-text,
  .capabilities-preview-text {
    max-width: 100%;
  }


  /* AI Process Section */

  .process {
    padding: 36px 0 124px;
  }

  .process-step {
    max-width: 280px;
  }

  .process-card {
    padding: 64px 20px 20px;
    border-radius: 24px;
  }

  .process-line,
  .process-line-arrow {
    width: 60px;
    height: auto;
  }

  .process-arrow {
    height: 268px;
    width: auto;
    bottom: -120px;
  }


  /* Integration Section */

  .integration {
    padding: 56px 0;
  }

  .integration-title {
    max-width: 340px;
  }

  .integration-supporting-text {
    margin-bottom: 28px;
  }

  .integration-graphic {
    max-width: 320px;
    margin-bottom: 28px;
  }

  .integration-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }



  /* Comparison Section */

  .comparison {
    padding: 56px 0;
  }

  .comparison-card-before,
  .comparison-card-after {
    padding-left: 20px;
    padding-right: 20px;
  }

  .comparison-card-before {
    padding-top: 40px;
  }

  .comparison-card-after {
    padding-top: 48px;
  }

  .comparison-badge {
    font-size: 18px;
    line-height: 24px;
    padding: 8px 16px;
  }

  .comparison-title-after {
    max-width: 320px;
  }

  .comparison-item {
    gap: 12px;
  }

  .comparison-item-indicator {
    margin-left: auto;
  }

  .comparison-dashboard {
    gap: 12px;
  }

  .dashboard-card {
    padding: 16px;
  }

  .dashboard-progress-value,
  .dashboard-confidence-level {
    font-size: 24px;
    line-height: 32px;
  }

  .dashboard-summary {
    padding: 14px;
  }

  .dashboard-summary-status {
    width: 100%;
    justify-content: flex-end;
  }

  .testimonial {
    width: 100%;
  }

  .testimonial-card {
    gap: 20px;
    margin-bottom: 28px;
  }

  .testimonial-review {
    padding: 20px;
  }

  .testimonial-review-text {
    font-size: 18px;
    line-height: 26px;
  }


  /* Customers Sections */

  .customers {
    padding: 56px 0;
  }

  .customers-logos {
    gap: var(--spacing-12);
  }

  .customers-logos img {
    max-width: 100px;
  }


  /* Resources Section */

  .resources {
    padding: 56px 0;
  }

  .resources-header,
  .resources-card {
    padding: 20px;
  }

  .resources-items {
    gap: 16px;
  }

  .resources-item {
    gap: 10px;
  }

  .resources-item-title {
    font-size: 18px;
    line-height: 24px;
  }


  /* CTA Section */

  .cta {
    padding: 56px 0;
  }

  .cta-title {
    max-width: 420px;
  }

  .cta-supporting-text {
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .cta-buttons .btn-outline,
  .cta-buttons .btn-filled {
    width: 100%;
    text-align: center;
  }


  /* Project Notes */

  .project-notes {
    padding: 56px 0;
  }

  .project-notes-header {
    margin-bottom: 16px;
  }

  .project-notes-icon {
    width: 32px;
  }

  .project-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 16px;
  }

  .project-source-link {
    width: 100%;
    justify-content: center;
  }


  /* Footer */

  .footer {
    padding: 56px 0 32px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    gap: 8px;
  }

  .footer-middle {
    padding: 20px 0;
  }

  .footer-socials {
    gap: 16px;
    justify-content: flex-start;
  }

  .footer-newsletter-btn {
    width: 100%;
    text-align: center;
  }

  .footer-certifications {
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

}



@media (max-width: 400px) {

  h1 {
    font-size: 28px;
    line-height: 36px;
  }

  h2 {
    font-size: 28px;
    line-height: 36px;
  }


  /* Hero-section */

  .hero {
    padding: 48px 0;
  }


  /* Transformation Section */

  .transformation {
    padding: 48px 0;
  }

  .transformation-supporting-text {
    margin-bottom: 28px;
  }

  .transformation-cards {
    gap: 40px;
  }


  /* Progress Section */

  .progress {
    padding: 48px 0;
  }

  .progress-tabs {
    gap: 6px;
  }


  /* AI Section */

  .ai {
    padding: 48px 0;
  }

  .ai-right {
    width: 280px;
    background-size: 120px;
  }

  .ai-label-right {
    font-size: 9px;
    right: 0;
  }

  .ai-feature {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* AI Capabilities Section */

  .capabilities {
    padding: 48px 0 28px;
  }

  .capabilities-card {
    padding: 24px 20px;
  }

  .capabilities-preview {
    padding: 16px 14px;
  }

  .capabilities-card-title {
    font-size: 18px;
    line-height: 24px;
  }


  /* AI Process Section */

  .process {
    padding: 28px 0 96px;
  }

  .process-steps {
    margin-top: 28px;
  }


  .process-step {
    max-width: 260px;
  }

  .process-card-title {
    font-size: 18px;
    line-height: 24px;
  }

  .process-line,
  .process-line-arrow {
    width: 40px;
    height: auto;
  }

  .process-line {
    top: -20px;
  }

  .process-line-arrow {
    bottom: -44px;
  }

  .process-arrow {
    height: 180px;
    width: auto;
    bottom: -104px;
  }


  /* Integration Section */

  .integration {
    padding: 48px 0;
  }

  .integration-title {
    max-width: 280px;
  }

  .integration-graphic {
    max-width: 260px;
  }

  .integration-cta {
    font-size: 15px;
    line-height: 22px;
  }



  /* Comparison Section */

  .comparison {
    padding: 48px 0;
  }

  .comparison-card-before,
  .comparison-card-after {
    padding-left: 16px;
    padding-right: 16px;
  }

  .comparison-badge {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 14px;
  }

  .comparison-title-before,
  .comparison-title-after {
    font-size: 28px;
    line-height: 36px;
  }

  .comparison-item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .comparison-item-text {
    font-size: 13px;
    line-height: 18px;
  }

  .comparison-item-icon {
    width: 48px;
    height: 48px;
  }

  .dashboard-card-header {
    gap: 6px;
  }

  .dashboard-progress-value,
  .dashboard-confidence-level {
    font-size: 22px;
    line-height: 30px;
  }

  .dashboard-risk-item {
    align-items: flex-start;
  }

  .dashboard-risk-text {
    font-size: 13px;
    line-height: 18px;
  }

  .dashboard-summary-title {
    font-size: 18px;
    line-height: 24px;
  }

  .dashboard-summary-text {
    font-size: 13px;
    line-height: 18px;
  }

  .testimonial-review {
    padding: 18px;
  }

  .testimonial-review-text {
    font-size: 16px;
    line-height: 24px;
  }

  .testimonial-cta {
    width: 100%;
    text-align: center;
  }


  /* Customers Sections */

  .customers {
    padding: 48px 0;
  }

  .customers-title {
    margin-bottom: var(--spacing-20);
  }

  .customers-logos img {
    max-width: 84px;
  }


  /* Resources Section */

  .resources {
    padding: 48px 0;
  }

  .resources-header,
  .resources-card {
    padding: 16px;
  }

  .resources-container {
    gap: 16px;
  }

  .resources-title {
    font-size: 28px;
    line-height: 36px;
  }

  .resources-item-text {
    font-size: 14px;
    line-height: 20px;
  }


  /* CTA Section */

  .cta {
    padding: 48px 0;
  }

  .cta-title {
    max-width: 320px;
  }

  .cta-supporting-text {
    margin-bottom: 16px;
  }


  /* Project Notes */

  .project-notes {
    padding: 48px 0;
  }

  .project-notes-container {
    gap: 40px;
  }

  .project-tech-stack {
    margin-bottom: 24px;
  }

  .highlight-card {
    gap: 10px;
  }

  .highlight-title {
    font-size: 18px;
    line-height: 24px;
  }

  .highlight-description {
    font-size: 13px;
    line-height: 18px;
  }


  /* Footer */

  .footer {
    padding: 48px 0 28px;
  }

  .footer-links {
    gap: 28px;
  }

  .footer-column-title {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-link,
  .footer-copyright,
  .footer-legal-link {
    font-size: 12px;
    line-height: 18px;
  }

  .footer-socials {
    gap: 12px;
  }

}








