/* ============================================================
   ENREAP - Shared Stylesheet
   Font: Roboto (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  --nav-bg: #113D3C;
  --nav-text: #ffffff;
  --navy-bg: #0c2d42;
  --emerald-bg: #3bbf9d;
  --emerald-dark: #2da882;
  --mint-bg: #eaf8f2;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-medium: #333333;
  --accent-teal: #4db8a4;
  --accent-cyan: #5ec9ba;
  --btn-primary: #0D584E;
  --btn-primary-hover: #094b43;
  --btn-dark: #0c2d42;
  --border-light: #e0e0e0;
  --border-medium: #cccccc;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 6px 24px rgba(0,0,0,0.14);
  --radius-card: 8px;
  --radius-btn: 50px;
  --container-max: 1200px;
  --header-h: 80px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 100px 0; }

.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.2; }

h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { font-size: 16px; line-height: 1.7; color: var(--text-body); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--btn-primary);
  color: var(--white);
  border: 2px solid var(--btn-primary);
}
.btn--primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn--outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
}

.btn--dark {
  background: var(--btn-dark);
  color: var(--white);
  border: 2px solid var(--btn-dark);
}
.btn--dark:hover { opacity: 0.85; }

.btn--black {
  background: #111111;
  color: var(--white);
  border: 2px solid #111111;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
}
.btn--black:hover { background: #333; border-color: #333; }

.btn--emerald {
  background: var(--btn-primary);
  color: var(--white);
  border: 2px solid var(--btn-primary);
}
.btn--emerald:hover { background: var(--btn-primary-hover); border-color: var(--btn-primary-hover); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.8; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-connect-btn {
  background: var(--btn-primary);
  color: var(--white);
  border: 2px solid var(--btn-primary);
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.nav-connect-btn:hover { background: var(--btn-primary-hover); border-color: var(--btn-primary-hover); }

/* For page 1 hero version - white outline style */
.nav-connect-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.nav-connect-btn--outline:hover { background: var(--white); color: var(--text-dark); }

.nav-search {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
}
.nav-search svg { width: 20px; height: 20px; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTION - Page 1
   ============================================================ */
.hero {
  background: var(--light-bg);
  padding: 80px 0 60px;
  text-align: center;
}

.hero__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 52px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Atlassian Specialization Badges */
.atl-badge {
  background: #1e3a6e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-align: center;
  min-width: 130px;
}
.atl-badge__top {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aac8f8;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.atl-badge__main {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.atl-badge__sub {
  font-size: 10px;
  color: #cce0ff;
  margin-top: 2px;
}

.atl-partner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.atl-partner__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.atl-partner__icon {
  width: 36px;
  height: 36px;
}
.atl-partner__text { font-size: 15px; font-weight: 600; color: #333; }
.atl-partner__sub { font-size: 13px; color: #666; }

.hero__partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__partner-logo img {
  width: 90px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
}

.hero__partner-text {
  font-size: 14px;
  font-weight: 700;
  color: #112E5E;
  letter-spacing: 0.02em;
}

/* ============================================================
   HERO SECTION - Page 2
   ============================================================ */
.hero-p2 {
  background: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.hero-p2__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.hero-p2__title {
  font-size: 50px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.hero-p2__subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--white);
  padding: 80px 0;
}

.stats-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 20px 40px;
  border-left: 3px solid var(--border-light);
}
.stat-item:first-child { border-left: none; padding-left: 0; }

.stat-item__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.4;
}

/* ============================================================
   SERVICES ACCORDION
   ============================================================ */
.services-accordion-section {
  background: var(--white);
  padding: 80px 0;
}

.services-accordion-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.accordion-list { max-width: 900px; margin: 0 auto; }

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-header__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}

/* Page 2 ITSM services accordion - numbered in teal */
.accordion-item--teal .accordion-header__title {
  color: var(--text-dark);
}
.accordion-item--teal .accordion-header__num {
  color: var(--accent-cyan);
  font-weight: 700;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-bg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  /* minus shows via content swap in JS */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content__inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-section {
  background: var(--light-bg);
  padding: 80px 0;
}

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

.testimonial-section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial-track {
  flex: 1;
  overflow: hidden;
  min-height: 200px;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  align-items: center;   /* vertically center logo with content */
  gap: 40px;
  padding: 8px 0;
}

.testimonial-logo-wrap {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;    /* ensure centering within flex parent */
}

.testimonial-logo {
  width: 140px;
  max-height: 120px;
  height: auto;
  object-fit: contain;
  display: block;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
}

.testimonial-content {}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.slider-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.slider-btn:hover { opacity: 0.6; }

/* ============================================================
   MAKE YOUR MOVE SECTION (CTA with image)
   ============================================================ */
.cta-image-section {
  background: var(--mint-bg);
  padding: 80px 0;
}

.cta-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}
}

.cta-image-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cta-image-content p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-image-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-screenshot-wrap {
  position: relative;
}

.cta-bg-rect {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90%;
  height: 90%;
  background: var(--btn-primary);
  border-radius: 8px;
  z-index: 0;
}

.cta-screenshot {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 480px;
}

/* Mock screenshot */
.mock-screenshot {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}

.mock-screenshot__header {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.mock-screenshot__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
  color: #555;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  flex-shrink: 0;
}

/* ============================================================
   ATLASSIAN TOOLS GRID
   ============================================================ */
.tools-section {
  background: var(--white);
  padding: 80px 0;
}

.tools-grid-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.tools-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tools-left p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tool-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: box-shadow 0.2s;
}
.tool-card:hover { box-shadow: var(--shadow-card); }

.tool-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   USE CASES SECTION
   ============================================================ */
.use-cases-section {
  background: var(--white);
  padding: 80px 0;
}

.use-cases-section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.use-case-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.use-case-card:hover { box-shadow: var(--shadow-card); }

.use-case-card__bar {
  height: 6px;
  background: var(--accent-cyan);
}

.use-case-card__body {
  padding: 24px;
}

.use-case-card__icon {
  margin-bottom: 16px;
}

.use-case-card__icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 1.5;
}

.use-case-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ============================================================
   HOW WE WORK SECTION (Dark)
   ============================================================ */
.how-we-work {
  background: var(--navy-bg);
  padding: 80px 0;
}

.how-we-work h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

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

.step-item__num {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-item__label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  font-weight: 400;
}

/* ============================================================
   SUCCESS STORIES SECTION
   ============================================================ */
.success-section {
  background: var(--white);
  padding: 80px 0;
}

.success-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.success-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-left p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 20px;
}

.success-left a {
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: underline;
  font-weight: 500;
}

.success-card {
  background: var(--light-bg);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.success-tag {
  display: inline-block;
  background: #d8f0eb;
  color: #1a6050;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
}

.success-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.success-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
}

.success-card .btn {
  width: fit-content;
}

/* ============================================================
   FEATURED RESOURCES SLIDER
   ============================================================ */
/* ============================================================
   FEATURED RESOURCES
   ============================================================ */
.featured-resources {
  background: var(--light-bg);
  padding: 80px 0;
}

.featured-resources__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.featured-resources__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}

.featured-resources__arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-body);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.arrow-btn:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}
.arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.resources-slider {
  overflow: hidden;
}

.resources-track {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.resource-card {
  flex: 0 0 calc(50% - 14px);
  min-width: calc(50% - 14px);
  cursor: pointer;
}

.resource-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 18px;
  background: #e8e8e8;
}

.resource-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
}

/* ============================================================
   LATEST BLOGS
   ============================================================ */
.blogs-section {
  background: var(--white);
  padding: 80px 0;
}

.blogs-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}

.blogs-section__header-left {}

.blogs-section__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.blogs-section__subtitle {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 820px;
}

.blogs-section__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 4px;
}

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

.blog-card {
  cursor: pointer;
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 18px;
  background: #e8e8e8;
}

.blog-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.faq-section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list { max-width: 900px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question__text {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--text-dark);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.contact-section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-section__subtitle {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 48px;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group--full {
  margin-bottom: 24px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label .required { color: red; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-medium);
  padding: 10px 0;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--btn-primary);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

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

.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   DRIVE BUSINESS SECTION (Page 2)
   ============================================================ */
.drive-section {
  background: var(--white);
  padding: 80px 0;
}

.drive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.drive-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.drive-left p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check {
  color: var(--accent-teal);
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-check svg { width: 18px; height: 18px; }

.feature-item__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-item__text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================================
   EBOOK CTA SECTION (Page 2)
   ============================================================ */
.ebook-cta {
  background: var(--mint-bg);
  padding: 60px 0;
  text-align: center;
}

.ebook-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

/* ============================================================
   ITSM SOLUTIONS SECTION (Dark - Page 2)
   ============================================================ */
.itsm-solutions {
  background: var(--navy-bg);
  padding: 80px 0;
}

.itsm-solutions__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 56px;
}

.itsm-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itsm-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.itsm-item:last-child { border-bottom: none; }

.itsm-item__icon {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.itsm-item__icon svg {
  width: 52px;
  height: 52px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.itsm-item__content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.itsm-item__content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ============================================================
   GLOBAL PARTNERSHIPS (Page 2)
   ============================================================ */
.partnerships-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}

.partnerships-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.partner-logo-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: box-shadow 0.2s;
}
.partner-logo-card:hover { box-shadow: var(--shadow-card); }

.partner-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

/* ============================================================
   WHY ENREAP SECTION (Emerald - Page 2)
   ============================================================ */
.why-enreap {
  background: var(--emerald-bg);
  padding: 80px 0;
}

.why-enreap__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px dashed rgba(255,255,255,0.4);
}

.why-item {
  padding: 32px 24px;
  border-right: 1px dashed rgba(255,255,255,0.4);
  border-bottom: 1px dashed rgba(255,255,255,0.4);
}
.why-item:nth-child(4n) { border-right: none; }
.why-item:nth-child(n+5) { border-bottom: none; }

.why-item__num {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item__text {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   REIMAGINE SECTION (Page 2)
   ============================================================ */
.reimagine-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.reimagine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reimagine-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.25;
}

.reimagine-image {
  position: relative;
}

.reimagine-image-frame {
  position: relative;
}

.reimagine-bg-rect {
  position: absolute;
  left: -16px;
  bottom: -16px;
  width: 88%;
  height: 88%;
  background: #f0c844;
  border-radius: 6px;
  z-index: 0;
}

.reimagine-bg-rect--blue {
  background: #2563eb;
}

.reimagine-screenshot {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 100%;
}

/* ============================================================
   INDUSTRIES SECTION (Page 2)
   ============================================================ */
.industries-section {
  background: var(--white);
  padding: 80px 0;
}

.industries-grid-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.industries-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.industries-left p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

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

.industry-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.industry-card:hover { box-shadow: var(--shadow-card); }

.industry-card__icon {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 1.5;
}

.industry-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ============================================================
   ITSM APPROACH (Dark - Page 2)
   ============================================================ */
.itsm-approach {
  background: var(--navy-bg);
  padding: 80px 0;
}

.itsm-approach h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
}

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

.approach-step__num {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.approach-step__label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--nav-bg);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-logo-wrap .logo-text { color: var(--white); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.footer-connect {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-location h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-locations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-locations span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.footer-locations .sep {
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
  cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,0.15); }
.social-btn svg { width: 16px; height: 16px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-nav-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-nav-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  flex-wrap: wrap;
  gap: 880px;
}

.footer-bottom__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom__links {
  display: flex;
  gap: 24px;
   justify-content: flex-start;
    align-items: center;
}

.footer-bottom__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-bottom__links a:hover { color: var(--white); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy-bg);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: none;
  font-size: 20px;
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: #1a3f58; }

/* ============================================================
   TRANSFORM SECTION (Page 1 - mint bg)
   ============================================================ */
.transform-section {
  background: var(--mint-bg);
  padding: 80px 0;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.transform-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.transform-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   FEATURED TRANSFORM SECTION IN P1 (text + image)
   ============================================================ */
.make-move {
  background: var(--mint-bg);
  padding: 80px 0;
}

.make-move-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.make-move-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.make-move-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-links { gap: 24px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat-item:nth-child(even) { border-left: 3px solid var(--border-light); }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-light); padding-top: 24px; }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-light); padding-top: 24px; }

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

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

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

  .success-grid { grid-template-columns: 1fr; }
  .success-grid .success-card { max-width: 100%; }

  .hero__title { font-size: 38px; }

  .make-move-grid,
  .make-move-grid { grid-template-columns: 1fr; }
  .cta-image-grid { grid-template-columns: 1fr; }
  .reimagine-grid { grid-template-columns: 1fr; }
  .drive-grid { grid-template-columns: 1fr; }
  .industries-grid-wrap { grid-template-columns: 1fr; }
  .partnerships-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(n+5) { border-bottom: 1px dashed rgba(255,255,255,0.4); }
  .why-item:last-child { border-bottom: none; }

  .approach-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 16px; }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .section { padding: 50px 0; }
  .section--lg { padding: 60px 0; }

  /* Nav */
  .nav-links { display: none; flex-direction: column; gap: 12px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 20px 24px;
    z-index: 999;
  }
  .nav-connect-btn { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { padding: 50px 0; }
  .hero__title { font-size: 28px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__badges { flex-direction: column; }

  .hero-p2__title { font-size: 28px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Tools */
  .tools-grid { grid-template-columns: repeat(2, 1fr); }

  /* Use cases */
  .use-cases-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }

  /* Success */
  .success-grid { grid-template-columns: 1fr; }

  /* Resources */
  .resource-card { flex: 0 0 85%; min-width: 85%; }
  .resource-card__image { height: 200px; }
  .blog-card__image { height: 180px; }

  /* Blogs */
  .blogs-grid { grid-template-columns: 1fr; }

  /* Testimonial */
  .testimonial-slide { flex-direction: column; }
  .testimonial-logo-wrap { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Why Enreap */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

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

  /* Partnerships */
  .partner-logos { grid-template-columns: repeat(2, 1fr); }

  /* Make move / CTA */
  .make-move-grid,
  .cta-image-grid,
  .transform-grid,
  .reimagine-grid,
  .drive-grid,
  .industries-grid-wrap,
  .partnerships-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCRIPT.JS – DYNAMIC HELPERS
   ============================================================ */

/* Form error state */
input.error,
select.error,
textarea.error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 2px rgba(229,62,62,0.2);
}

/* FAQ toggle .open class (JS adds to .faq-toggle) */
.faq-toggle.open svg {
  transform: rotate(180deg);
}

/* Nav shadow on scroll */
.site-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

/* Disabled slider btn */
.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}



/* logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 98px;
  height: 98px;
  object-fit: contain;
}


/* hero section 4 cards */

.hero__badges{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.badge-logo{
  height:90px;   /* adjust size */
  width:auto;
  object-fit:contain;
  display:block;
}


.testimonial-logo img{
  width:120px;
  height:auto;
  object-fit:contain;
  display:block;
  border:none;
  border-radius:0;
  background:none;
  box-shadow:none;
  padding:0;
}


.cta-image-wrap{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.cta-image{
  width:100%;
  max-width:520px;
  height:auto;
  display:block;
  object-fit:contain;
}


.tool-icon {
  width: 94px;
  height: 94px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* ============================================================
   SUPPORTED USE CASES
============================================================ */
.use-cases-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.use-cases-section__title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */
.use-case-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    min-height: 170px;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TOP BAR */
.use-case-card__bar {
    height: 10px;
    background: linear-gradient(90deg, #7fd0df, #63d0b6);
}

/* BODY */
.use-case-card__body {
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 22px;
}

/* ICON */
.use-case-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

/* TITLE */
.use-case-card__title {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 500;
    color: #032b52;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-section__title {
        font-size: 36px;
    }
}



.use-case-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}


/* ============================================================
   PARTNERSHIPS SECTION
============================================================ */
.partnerships-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE */
.partnerships-left h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    color: #032b52;
    margin: 0;
}

/* LOGO GRID */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.partner-logo-card {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;

    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.partner-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* LOGO IMAGE */
.partner-logo-img {
    max-width: 130px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {

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

    .partnerships-left h2 {
        text-align: center;
        font-size: 42px;
    }

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

@media (max-width: 576px) {

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .partnerships-left h2 {
        font-size: 34px;
    }
}



/* ============================================================
   INDUSTRIES GRID
============================================================ */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.industry-card {
    height: 108px;
    background: #fff;

    border: 1px solid #d7d7d7;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* ICON */
.industry-icon-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* TITLE */
.industry-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #032b52;
    text-align: center;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}


.footer-logo-img {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}



/* ============================================================
   AWS CTA SECTION
============================================================ */

.aws-cta-section {
    background: #083752;
    padding: 48px 0;
}

.aws-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.aws-cta-content h2 {
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    max-width: 700px;
    margin: 0;
    letter-spacing: -0.5px;
}

.aws-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    height: 56px;

    border: 2px solid #7bd2f6;
    border-radius: 60px;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow:
      0 0 10px rgba(123,210,246,0.45),
      0 0 18px rgba(123,210,246,0.18);
}

.aws-cta-btn:hover {
    background: #0f4f73;
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {

    .aws-cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .aws-cta-content h2 {
        font-size: 28px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .aws-cta-section {
        padding: 40px 0;
    }

    .aws-cta-content h2 {
        font-size: 14px;
    }

    .aws-cta-btn {
        min-width: 160px;
        height: 50px;
        font-size: 16px;
    }
}


/* ============================================================
   AWS CERTIFICATIONS SECTION
============================================================ */

.aws-certifications-section {
    padding: 85px 0 95px;
    background: #f7f7f7;
}

.aws-certifications-title {
    text-align: center;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #032b52;
    margin: 0 0 60px;
    letter-spacing: -1px;
}

.aws-certifications-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aws-certifications-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {

    .aws-certifications-title {
        font-size: 42px;
    }

    .aws-certifications-image {
        max-width: 720px;
    }
}

@media (max-width: 768px) {

    .aws-certifications-section {
        padding: 70px 0;
    }

    .aws-certifications-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .aws-certifications-image {
        max-width: 100%;
    }
}


/* ============================================================
   ATLASSIAN CONTENT SECTION
============================================================ */

.atlassian-content-section {
    background: #ffffff;
    padding: 90px 0 95px;
}

.atlassian-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.atlassian-content-title {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 400;
    color: #000000;
    margin: 0 0 42px;
    letter-spacing: -1px;
}

.atlassian-content-text {
    font-size: 18px;
    line-height: 2;
    color: #000000;
    margin: 0 auto 34px;
    max-width: 1180px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {

    .atlassian-content-title {
        font-size: 42px;
    }

    .atlassian-content-text {
        font-size: 17px;
        line-height: 1.9;
    }
}

@media (max-width: 768px) {

    .atlassian-content-section {
        padding: 70px 0;
    }

    .atlassian-content-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .atlassian-content-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 26px;
    }
}