/* ===== CSS Variables ===== */
:root {
  --primary: #2563eb;
  --secondary: #1d4ed8;
  --accent: #fbbf24;
  --accent-hover: #d97706;
  --white: #ffffff;
  --slate-50: #fafaf9;
  /* Warm White */
  --slate-100: #f5f5f4;
  /* Light Beige */
  --slate-200: #e7e5e4;
  /* Beige Grey */
  --slate-300: #d6d3d1;
  --slate-400: #a8a29e;
  --slate-500: #78716c;
  --slate-600: #57534e;
  --slate-700: #44403c;
  --slate-800: #292524;
  --slate-900: #1c1917;
  /* Warm Black */
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-400: #f87171;
  --red-500: #ef4444;
  --blue-50: #fffbeb;
  /* Amber 50 - warmer highlight */
  --blue-100: #fef3c7;
  /* Amber 100 */
  --blue-200: #fde68a;
  --amber-100: #fef3c7;
  --amber-800: #92400e;
  --navy-blue: #132244;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
html,
body {
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--slate-900);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===== Layout ===== */
.layout-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.layout-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 768px) {

  .container,
  .container-narrow {
    padding: 0 2.5rem;
  }
}

/* ===== Utilities ===== */
.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }

  .mobile-only {
    display: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--slate-900);
  box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--slate-300);
  color: var(--slate-700);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--slate-400);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-outline-light {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--slate-100);
}

/* ===== Header ===== */
.header {
  width: 100%;
  background: var(--navy-blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1rem 2.5rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  overflow: hidden;
}

.header-logo-icon .material-symbols-outlined {
  font-size: 1rem;
}

.header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-logo-text-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-main {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}

.header-logo-sub {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.header-nav {
  display: none;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav-link {
  color: var(--slate-300);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.header-nav-link:hover {
  color: var(--white);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle button {
  width: 2.75rem;
  /* 44px */
  height: 2.75rem;
  /* 44px */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0;
  flex-direction: column;
  gap: 0;
  animation: fadeInDown 0.2s ease;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-link {
  display: block;
  color: var(--slate-900);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.mobile-menu-link:hover {
  color: var(--primary);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-50);
  overflow: hidden;
}

.hero-bg-strips {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  /* Fixed background */
  background-size: cover;
  background-position: center top;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hero-bg-strips {
    background-position: right top;
  }
}

.hero-bg-strip {
  flex: 1;
  /* background-size: cover; removed */
  /* background-position: center; removed */
  border-right: 1px solid rgba(203, 213, 225, 0.3);
}

.hero-bg-strip:last-child {
  border-right: none;
}

@media (min-width: 768px) {
  .hero-bg-strips {
    background-position: right top;
  }
}

.strip-1 {
  background-image: none;
}

.strip-2 {
  background-image: none;
  display: none;
}

.strip-3 {
  background-image: none;
  display: none;
}

.strip-4 {
  background-image: none;
  display: none;
}

@media (min-width: 640px) {
  .strip-2 {
    display: block;
  }
}

@media (min-width: 768px) {
  .strip-3 {
    display: block;
  }
}

@media (min-width: 1024px) {
  .strip-4 {
    display: block;
  }
}

.hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
}

.hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, white, transparent, transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0.5rem 1rem 2rem;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    padding: 4rem 2.5rem;
    gap: 5rem;
  }
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  margin-top: 1rem;
  /* Lock container height */
  min-height: auto;
  /* Sufficient for longest mobile content */
}

@media (min-width: 768px) {
  .hero-text {
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    margin-top: 0;
    /* Adjusted for desktop */
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid var(--blue-200);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-top: 1rem;
}

.desktop-badge {
  display: none;
}

@media (min-width: 768px) {
  .desktop-badge {
    display: inline-flex;
  }
}

.mobile-badge {
  display: inline-flex;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-badge {
    display: none;
  }
}

.hero-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
}

.hero-badge-text {
  color: var(--slate-600);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  color: var(--slate-700);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  min-height: 8rem;
  /* Increased for mobile stability */
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    min-height: 13rem;
    /* Increased for desktop (3 lines max) */
  }
}

.hero-title-sub {
  display: block;
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title-sub {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 32rem;
  font-weight: 500;
  min-height: 6rem;
  /* Increased for absolute safety */
  /* Prevent layout shift */
}

@media (min-width: 1024px) {
  .hero-description {
    min-height: 4rem;
    /* Desktop wraps less */
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
  width: 100%;
  justify-content: center;
  /* Pin to bottom of hero-text */
}

.hero-cta .btn {
  flex: 1;
  justify-content: center;
  min-width: 250px;
  /* Ensure stack if too narrow, or side-by-side if enough space? User said "same size". Flex 1 does that. */
}

@media (min-width: 768px) {
  .hero-cta {
    justify-content: flex-start;
  }

  .hero-cta .btn {
    flex: initial;
    min-width: auto;
  }
}

.mobile-hero-title {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
  margin-top: 0rem;
  line-height: 1.6;
  width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .mobile-hero-title {
    display: none;
  }
}

.mobile-badge {
  margin-bottom: 0.25rem;
}

.hero-visual {
  flex: 1;
  width: 100%;
  max-width: 450px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-visual {
    max-width: 480px;
    justify-content: flex-end;
  }
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-visual-wrapper {
    max-width: 400px;
  }
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(48px);
}

.hero-blur-1 {
  top: 25%;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  background: var(--blue-100);
  opacity: 0.7;
}

.hero-blur-2 {
  bottom: -2rem;
  left: -3rem;
  width: 16rem;
  height: 16rem;
  background: #e0e7ff;
  opacity: 0.7;
}

.hero-main-image {
  position: relative;
  z-index: 10;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.15);
  border: 8px solid var(--white);
  border: 8px solid var(--white);
  transition: transform 0.5s;
}

@media (max-width: 767px) {
  .hero-main-image {
    width: 320px;
    height: 320px;
    aspect-ratio: 1;
  }
}

.hero-main-image:hover {
  transform: translateY(-0.5rem);
}

.hero-main-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/AIS1.jpg');
  /* Match active thumbnail */
  background-size: cover;
  background-position: center;
  background-color: var(--slate-200);
  /* Fallback */
}

.hero-main-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 51, 102, 0.6), transparent, transparent);
}

.hero-status-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.8;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-status-text {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hero-thumbnails {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
}

.hero-thumbnail {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.6;
  transition: all 0.2s;
}

.hero-thumbnail:hover {
  opacity: 1;
}

.hero-thumbnail.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px var(--white);
}

.hero-thumbnail-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.thumb-1 {
  background-image: url('images/AIS1.jpg');
}

.thumb-2 {
  background-image: url('images/AIS2.jpg');
}

.thumb-3 {
  background-image: url('images/AIS3.jpg');
}

.thumb-avatar {
  background-image: url('images/AIS5.jpg');
}

/* ===== Concept Section ===== */
.concept {
  width: 100%;
  background: var(--slate-50);
  padding: 3rem 0 3rem;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.concept-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* 1. Text Group (Header + Desc) */
.concept-text-group {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.concept-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 2. Image Wrapper */
.concept-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1rem 0 2rem;
}

.concept-image-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
}

.concept-image-bg {
  position: absolute;
  inset: 0;
  background: var(--blue-100);
  border-radius: 2rem;
  transform: rotate(6deg) scale(1.05);
}

.concept-image-frame {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: 2rem;
  transform: rotate(-3deg);
  border: 1px solid var(--slate-100);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 10;
}

.concept-image {
  width: 100%;
  height: 100%;
  background-image: url('images/AIS8.jpg');
  background-size: cover;
  background-position: center;
}

/* 3. Features */
.concept-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 0.5rem;
  width: 100%;
  max-width: 1000px;
}

/* ===== Concept Section  EPC 2-Column Layout ===== */
@media (min-width: 768px) {
  .concept-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem 4.5rem;
    align-items: start;
  }

  /* Make text-group transparent so its children join the grid */
  .concept-text-group {
    display: contents;
  }

  /* Title + Subtitle: full width, centered at top */
  .concept-header {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    align-items: center;
  }

  /* Image on the left, spanning description + features rows */
  .concept-image-wrapper {
    grid-column: 1;
    grid-row: 2 / 4;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .concept-image-container {
    max-width: 80%;
    width: 80%;
  }

  /* Description text on the right */
  .concept-description {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.125rem;
    line-height: 1.8;
  }

  /* 3 cards stacked vertically on the right */
  .concept-features {
    grid-column: 2;
    grid-row: 3;
    grid-template-columns: 1fr;
    max-width: none;
  }
}


.concept-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.concept-feature-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--blue-50);
  color: var(--primary);
}

.concept-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 1rem;
}

.concept-feature-title {
  font-weight: 700;
  color: var(--slate-900);
}

.concept-feature-text {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.media-coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

.media-coverage-list li {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: var(--slate-600);
  border-bottom: 1px dashed var(--slate-200);
  padding-bottom: 0.5rem;
}

.media-coverage-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.media-date {
  font-weight: 700;
  color: var(--accent-hover);
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}

.media-desc {
  line-height: 1.5;
}

/* Section CTA */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== Why Now Banner ===== */
.why-now-banner {
  padding: 4rem 0;
  background: var(--navy-blue);
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.why-now-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}

.why-now-blur-1 {
  position: absolute;
  right: -5rem;
  top: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: #60a5fa;
  border-radius: 50%;
  mix-blend-mode: overlay;
  filter: blur(100px);
  opacity: 0.2;
}

.why-now-blur-2 {
  position: absolute;
  left: -5rem;
  bottom: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: #6366f1;
  border-radius: 50%;
  mix-blend-mode: overlay;
  filter: blur(100px);
  opacity: 0.2;
}

.why-now-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.4;
  position: relative;
  z-index: 10;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .why-now-title {
    font-size: 3.5rem;
  }
}

.why-now-subtitle {
  font-size: 1.25rem;
  color: var(--blue-100);
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .why-now-subtitle {
    font-size: 1.5rem;
  }
}

.why-now-box {
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .why-now-box {
    padding: 3rem;
  }
}

.why-now-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  line-height: 2.2;
  color: var(--slate-100);
  letter-spacing: 0.08em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .why-now-text {
    font-size: 1.2rem;
  }
}

.why-now-problems {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  border-left: 4px solid rgba(239, 68, 68, 0.6);
}

.why-now-problems-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-now-problems-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-now-problems-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--blue-100);
  font-size: 1rem;
  line-height: 1.75;
}

.why-now-problems-list li::before {
  content: "•";
  color: rgba(239, 68, 68, 0.8);
  font-weight: bold;
  flex-shrink: 0;
}

/* ===== Reasons Section ===== */
.reasons {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.reasons-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reasons-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .reasons-title {
    font-size: 2.25rem;
  }
}

.reasons-subtitle {
  color: var(--slate-600);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-item {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid rgba(37, 99, 235, 0.2);
  transition: border-color 0.3s;
}

.reason-item:hover {
  border-left-color: var(--primary);
}

.reason-number {
  position: absolute;
  left: -22px;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.reason-content {
  padding-top: 0.25rem;
}

.reason-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.reason-text {
  color: var(--slate-600);
  line-height: 1.75;
}

/* ===== Capabilities Section ===== */
.capabilities {
  padding-top: 0;
}

.capabilities-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--slate-900);
  margin-bottom: 2.5rem;
}

.capabilities-grid {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.capabilities-can,
.capabilities-cannot {
  padding: 2rem;
}

@media (min-width: 768px) {

  .capabilities-can,
  .capabilities-cannot {
    padding: 2.5rem;
  }

  .capabilities-can {
    border-right: 1px solid var(--slate-200);
  }
}

.capabilities-cannot {
  background: rgba(248, 250, 252, 0.5);
  border-top: 1px solid var(--slate-200);
}

@media (min-width: 768px) {
  .capabilities-cannot {
    border-top: none;
  }
}

.capabilities-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.capabilities-icon-can {
  color: var(--green-600);
  font-size: 1.875rem;
}

.capabilities-icon-cannot {
  color: var(--red-500);
  font-size: 1.875rem;
}

.capabilities-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.capability-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.dot-green {
  background: var(--green-500);
}

.dot-red {
  background: var(--red-400);
}

.capabilities-can .capabilities-list li span:last-child {
  color: var(--slate-700);
}

.capabilities-cannot .capabilities-list li span:last-child {
  color: var(--slate-600);
}

/* ===== Section Header (Reusable) ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--slate-600);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  width: 100%;
}

/* ===== Use Cases Section ===== */
.use-cases {
  padding: 4rem 0;
}

.use-cases .section-header {
  text-align: left;
}

.use-cases .section-title {
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.use-case-card {
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  transition: box-shadow 0.3s;
}

.use-case-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.use-case-avatar {
  flex-shrink: 0;
}

.use-case-avatar-img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-color: var(--slate-200);
}

.avatar-1 {
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuB6iJ3wBUFEx5kJxaU3jKYideK3NuUOzI6OhaZWz0LJK3xLAMESobAjumicplcMY3BLyXW-5uHaGe0cdfT034wnHk0TDxizTRkabTCPNPNOw_NX7zm8K8PX1AqPVJ4jEZFtrkTZSaJ0j5QPCd5chLGPSxYbuq2To3kwyke4k8oeASNelfLkze7nNbSc12tbGQ6kpyEbNPtGreV6HWMbQFux-8f2m0wtyrm4-wH-wFiQX1yKf6n9JNC41dweS_33WdD9L0Hp3V4mOuI');
}

.avatar-2 {
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuBg9TSFqSN8FLdbw3YLCdIfypKWtlidZzt_omh4YdZKhLIbR2WFJKOam9VYPPIh6yDsK98EEXBeBBG8J0I0wVOpr6kF1TXEc1246L5_OT4sW8zCc-IIOsZeYjkDvOMCUVahvr9QGhFuwxQvp7-pyR0axmG3CyukO8ds6mff6jGemKGXnF-fsrkcabcZ0bZu1V7oRyKOzNtNqSghJmOsZreAeMu5o5MXJyRoj-ml-GDjksBO3MBdEqNBnD28yDf-Pc_qwgCfPhhJrfM');
}

.avatar-3 {
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuCJs8fuFo9bwv_SDW9Df4QMwCPnsP5eFfMmC4tEjCa6pyzInrq6o31orTP8Vh36tJ5I4sMHbaBqXCTOXVaIWwsn1ctwewUKQPXAfxOQkrCSVGNN0MIs0eGlCY3aMpd1Pk4SzbtHeJxazLp9fJZ30rgIUi4KNyvC5QjK4JmzHE13RfKa1iEHVEQP-DD5WahBX1Mmr-fRkcEBShKrGeZgG97XpxXPgnPnCguZlHYBejWr8X4iguiUM3uY7iD9s3sZFp0dCGU72nhiSns');
}

.avatar-4 {
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuC11YR1VLZZRmYOqQmNiSo9TT_XycH209PK_9TuoFAiuYZCE--i6EmYzaZQbBgS8ceI_OAzcZU0VbwvhmJAr_LgdFO1agkSteInhvRPyd42mwGrljLwAxLho4OHbTwfA2Y7Hxjd6X5Gt6c91AA7nI6FXrlu0kz2pBU5aY-7EMfkynWo4OAwF-HsGpv9WNox9nbV5JtHQtx0mb-a1vp8rW_Fv-OTB8iUQ9yy5hXqcDGW0-80Dw_JEZzlcHODhgNfwSCJbjFwH8mFcUE');
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dcb879;
  margin-bottom: 0.5rem;
}

.use-case-text {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.75;
}

/* ===== Portfolio Section ===== */
.portfolio {
  padding: 4rem 0;
  background: var(--slate-50);
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 2rem;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

@media (min-width: 768px) {
  .portfolio-title {
    font-size: 1.875rem;
  }
}

.portfolio-subtitle {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin-top: 0.5rem;
}

.portfolio-link {
  display: none;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .portfolio-link {
    display: flex;
  }
}

.portfolio-link:hover {
  color: var(--secondary);
}

.portfolio-link .material-symbols-outlined {
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--slate-200);
  transition: all 0.3s;
}

.portfolio-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%);
  transition: filter 0.5s;
}

.portfolio-card:hover .portfolio-card-image {
  filter: grayscale(0);
}

/* ===== What Can Do Section ===== */
.what-can-do {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

/* ===== Use Cases Section ===== */


.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.use-case-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
  /* Ensure/clip bg image */
  isolation: isolate;
  /* Create stacking context */
  transition: all 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

/* Transparent Background Images */
.use-case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  /* High transparency per request */
  z-index: -1;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.use-case-card:hover::before {
  transform: scale(1.05);
  /* Subtle zoom on hover */
}

/* Specific Images for each card */
.use-case-card:nth-child(1)::before {
  background-image: url('images/use-bg1.png');
}

.use-case-card:nth-child(2)::before {
  background-image: url('images/use-bg2.png');
}

.use-case-card:nth-child(3)::before {
  background-image: url('images/use-bg3.png');
}

.use-case-card:nth-child(4)::before {
  background-image: url('images/use-bg4.png');
}

.use-case-content {
  position: relative;
  z-index: 10;
  /* Ensure text is above bg */
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.use-case-text {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.what-can-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .what-can-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .what-can-do-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.what-can-do-card {
  padding: 2rem;
  background: var(--slate-50);
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.what-can-do-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.what-can-do-icon {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.what-can-do-icon .material-symbols-outlined {
  font-size: 2rem;
}

.what-can-do-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.what-can-do-text {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.what-can-do-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.img-1 {
  background-image: url('images/AIS1.jpg');
}

.img-2 {
  background-image: url('images/AIS2.jpg');
}

.img-3 {
  background-image: url('images/AIS3.jpg');
}

.img-4 {
  background-image: url('images/AIS5.jpg');
}

.portfolio-card-info {
  padding: 1rem;
  background: var(--white);
}

.portfolio-card-name {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 1rem;
}

.portfolio-card-category {
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-link-mobile {
  margin-top: 2rem;
}

/* ===== Process Section ===== */
.process {
  padding: 4rem 0;
  background: var(--slate-50);
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .process-title {
    font-size: 2.25rem;
  }
}

.process-subtitle {
  color: var(--slate-600);
  max-width: 42rem;
  text-align: center;
}

.process-nav {
  display: none;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .process-nav {
    display: flex;
  }
}

.process-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.process-nav-btn.prev {
  border: 1px solid var(--slate-300);
  color: var(--slate-500);
}

.process-nav-btn.prev:hover {
  background: var(--white);
}

.process-nav-btn.next.active {
  background: var(--primary);
  color: var(--white);
}

.process-nav-btn.next.active:hover {
  background: var(--secondary);
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
}

@media (min-width: 1024px) {
  .process-grid {
    flex-direction: column;
    height: auto;
  }
}

.process-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  height: 400px;
}

@media (min-width: 1024px) {
  .process-main {
    width: 58.333%;
    height: 100%;
  }
}

.process-main-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuB6iJ3wBUFEx5kJxaU3jKYideK3NuUOzI6OhaZWz0LJK3xLAMESobAjumicplcMY3BLyXW-5uHaGe0cdfT034wnHk0TDxizTRkabTCPNPNOw_NX7zm8K8PX1AqPVJ4jEZFtrkTZSaJ0j5QPCd5chLGPSxYbuq2To3kwyke4k8oeASNelfLkze7nNbSc12tbGQ6kpyEbNPtGreV6HWMbQFux-8f2m0wtyrm4-wH-wFiQX1yKf6n9JNC41dweS_33WdD9L0Hp3V4mOuI');
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}

.process-main:hover .process-main-bg {
  transform: scale(1.05);
}

.process-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #001a33, rgba(0, 26, 51, 0.6), transparent);
  opacity: 0.9;
}

.process-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .process-main-content {
    padding: 2.5rem;
  }
}

.process-main-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.process-step-badge {
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
}

.process-step-line {
  height: 1px;
  width: 3rem;
  background: rgba(255, 255, 255, 0.5);
}

.process-step-label {
  color: var(--blue-200);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-main-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .process-main-title {
    font-size: 2.25rem;
  }
}

.process-main-text {
  color: var(--blue-100);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.process-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .process-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.process-step-card {
  flex: 1;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 1.25rem;
  border: 1px solid var(--slate-200);
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.process-step-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.process-step-card:hover .process-step-title {
  color: var(--primary);
}

.process-step-card-img {
  width: 6rem;
  border-radius: 0.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .process-step-card-img {
    width: 8rem;
  }
}

.step-img-1 {
  background-image: url('images/flow1.png');
}

.step-img-2 {
  background-image: url('images/flow2.png');
}

.step-img-3 {
  background-image: url('images/flow3.png');
}

.step-img-4 {
  background-image: url('images/flow4.png');
  background-position: top;
}

.process-step-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
  position: relative;
  z-index: 10;
}

.process-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.process-step-text {
  font-size: 0.75rem;
  color: var(--slate-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 4rem 0;
  background: var(--navy-blue);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.pricing-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-card {
  background: var(--white);
  color: var(--slate-900);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.pricing-card-decorator {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: var(--blue-100);
  border-bottom-left-radius: 100%;
  margin-right: -2rem;
  margin-top: -2rem;
  z-index: 0;
}

.pricing-card-content {
  position: relative;
  z-index: 10;
}

.pricing-package-label {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-blue);
}

.pricing-tax {
  color: var(--slate-500);
  margin-bottom: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.pricing-features .material-symbols-outlined {
  color: var(--green-600);
  flex-shrink: 0;
}

.maintenance-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.maintenance-description {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.maintenance-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.maintenance-item {
  display: flex;
  gap: 1rem;
}

.maintenance-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maintenance-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--blue-200);
}

.maintenance-item-text {
  font-size: 0.875rem;
  color: var(--white);
}

/* ===== Deliverables Section ===== */
.deliverables {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-card {
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.5rem;
  background: var(--slate-50);
  transition: border-color 0.2s;
}

.deliverable-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.deliverable-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.deliverable-card-header .material-symbols-outlined {
  color: var(--primary);
}

.deliverable-title {
  font-weight: 700;
  color: var(--slate-900);
}

.deliverable-text {
  font-size: 0.875rem;
  color: var(--slate-600);
}

/* ===== Consultation Section ===== */
.consultation {
  padding: 4rem 0;
  background: #F5F7FA;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.consultation-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(203, 213, 225, 0.5);
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .consultation-card {
    padding: 3.5rem;
  }
}

.consultation-decorator-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: var(--blue-50);
  border-radius: 50%;
  margin-right: -4rem;
  margin-top: -4rem;
  pointer-events: none;
}

.consultation-decorator-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: #fefce8;
  border-radius: 50%;
  margin-left: -3rem;
  margin-bottom: -3rem;
  pointer-events: none;
}

.consultation-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .consultation-inner {
    flex-direction: row;
    gap: 4rem;
  }
}

.consultation-content {
  flex: 1;
  text-align: left;
}

.consultation-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: var(--amber-100);
  color: var(--amber-800);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.consultation-badge .material-symbols-outlined {
  font-size: 0.875rem;
}

.consultation-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: center;
}

.consultation-title-sub {
  font-size: 1.25rem;
  color: var(--slate-500);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .consultation-title-sub {
    font-size: 1.5rem;
  }
}

.consultation-description {
  color: var(--slate-600);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1.125rem;
}

.consultation-expectations {
  background: var(--slate-50);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-100);
  margin-bottom: 2rem;
}

.consultation-expectations-title {
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.consultation-expectations-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consultation-expectations-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.consultation-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.consultation-check-icon .material-symbols-outlined {
  font-size: 0.875rem;
  font-weight: 700;
}

.consultation-expectations-list li span:last-child {
  color: var(--slate-700);
  font-weight: 500;
}

.consultation-cta {
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.2);
  transition: all 0.2s;
  display: flex;
  margin: 0 auto;
  width: fit-content;
  justify-content: center;
}

.consultation-cta:hover {
  box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.3);
  transform: translateY(-2px);
}

.consultation-profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .consultation-profile {
    width: auto;
  }
}

.consultation-profile-image-wrapper {
  position: relative;
  cursor: pointer;
}

.consultation-profile-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--slate-300);
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.consultation-p.hero-main-image {
  position: relative;
  width: 100%;
  height: 340px;
  /* Increased to match wrapper */
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.consultation-profile-image-container {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.consultation-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-online-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 4px solid var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.consultation-online-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.consultation-profile-info {
  text-align: center;
  margin-top: 1.5rem;
}

.consultation-profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}

.consultation-profile-title {
  color: var(--primary);
  font-weight: 500;
}

.consultation-profile-specialty {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.5rem;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 4rem 0;
  background: var(--slate-50);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--slate-200);
}

.faq-item[open] {
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  padding: 1.5rem;
  color: var(--slate-900);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  transition: transform 0.2s;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--slate-600);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.75;
}

/* ===== Bottom CTA Section ===== */
.bottom-cta {
  padding: 0 0 2.5rem;
  background: var(--white);
  margin-top: 5rem;
}

.bottom-cta-card {
  background: var(--primary);
  border-radius: 0.5rem;
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bottom-cta-card {
    padding: 4rem;
  }
}

.bottom-cta-decorator-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translateY(-50%) translateX(25%);
}

.bottom-cta-decorator-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: translateY(50%) translateX(-25%);
}

.bottom-cta-content {
  position: relative;
  z-index: 10;
}

.bottom-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .bottom-cta-title {
    font-size: 2.25rem;
  }
}

.bottom-cta-text {
  color: var(--blue-100);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--slate-200);
  padding: 3rem 0;
  background: var(--navy-blue);
  color: var(--slate-400);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-800);
  color: var(--white);
  border-radius: 0.25rem;
}

.footer-logo-icon .material-symbols-outlined {
  font-size: 1.125rem;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1;
}

.footer-brand-location {
  font-size: 0.625rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
}

.footer-link {
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--slate-400);
}



/* ===== Why Now Expandable Animation ===== */
.why-now-expandable {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
}

.why-now-expandable.open {
  grid-template-rows: 1fr;
}

.why-now-expandable-inner {
  overflow: hidden;
}

#why-now-read-more-btn-container {
  transition: opacity 0.3s ease, margin 0.3s ease;
}

#why-now-read-more-btn-container.hidden {
  opacity: 0;
  pointer-events: none;
  margin: 0 !important;
  height: 0;
  overflow: hidden;
}

.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}