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

/* ==========================================
   DESIGN SYSTEM & VARIABLES (FLAT DESIGN)
   ========================================== */
:root {
  /* Colors */
  --primary: #0059D2; /* Yale Blue */
  --primary-hover: #0045A6;
  --secondary: #009dd1; /* Blue Green */
  --accent: #7ed348; /* SGBUS green */
  --accent-hover: #67b03a;
  --info: #97e7f5; /* Non Photo blue */
  --success: #26b170; /* Jade */

  /* Monday Status Colors (Soft Flat) */
  --status-done: #00c875;
  /* Soft Green */
  --status-working: #fdab3d;
  /* Soft Orange */
  --status-waiting: #78909c;
  /* Grey */
  --status-stuck: #e2445c;
  /* Soft Red */
  --status-text: #ffffff;

  --dark-bg: #0F172A;
  /* Monday Dark Theme Gray/Black -> now Biru Dongker */
  --dark-panel: #1e293b;
  /* Slightly lighter panel background */
  --light-bg: #F0F4FA;
  /* Clean, airy gray background */
  --white: #ffffff;
  --border-light: #E6F0FF;
  /* Subtle, soft border gray */

  --text-dark: #0F172A;
  /* Soft near-black for perfect readability */
  --text-muted-dark: #475569;
  /* Soft slate gray for descriptions */
  --text-light: #F0F4FA;
  --text-muted-light: #94a3b8;

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-max-width: 1200px;
  --border-radius-sm: 4px;
  /* Crisp, modern corners like Monday.com */
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.1s ease;
  --transition-normal: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Heading Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  color: var(--text-muted-dark);
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

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

/* ==========================================
   LAYOUT UTILITIES (FLAT DESIGN)
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--text-muted-light);
}

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

.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

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

/* Flex alignments */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* ==========================================
   BUTTONS (FLAT DESIGN)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  /* Pill-shaped button like Monday.com */
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 0.5rem;
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

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

.btn-secondary:hover {
  background-color: #e6f0fd;
  /* Soft blue tint */
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-accent-outline {
  background-color: var(--white);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-accent-outline:hover {
  background-color: #eafaf1;
  /* Soft green tint */
  border-color: var(--accent-hover);
  color: var(--accent-hover);
}

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

.btn-white:hover {
  background-color: #e6f0fd;
  /* Soft blue tint */
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.btn-dark {
  background-color: var(--dark-bg);
  color: var(--white);
  border: 1px solid var(--dark-bg);
}

.btn-dark:hover {
  background-color: #000000;
  color: var(--white);
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 0.75rem 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity var(--transition-fast);
}

.logo-container:hover {
  opacity: 0.85;
}

.logo-img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--primary);
}

.navbar {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-muted-dark);
  font-size: 0.85rem;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.01em;
}

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

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
}

.menu-toggle:hover span {
  background-color: var(--primary);
}

/* ==========================================
   HERO SECTION (FLAT)
   ========================================== */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: var(--white);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.hero-subtitle {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  background-color: #E6F0FD;
  /* Flat tint */
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.hero-title {
  margin-bottom: 1.25rem;
  font-size: 2.85rem;
  color: var(--text-dark);
}

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

.hero-description {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-visual-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  padding: 0.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
}

.hero-visual-card img {
  border-radius: var(--border-radius-sm);
  display: block;
  width: 100%;
}

/* ==========================================
   TRUST BAR
   ========================================== */
/* ==========================================
   LOGOS SECTION (UNIVERSITY & COMPANY)
   ========================================== */
.logos-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background-color: #fafbfc;
  overflow: hidden;
}

.logos-section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos-track-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.logos-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.logos-marquee-reverse {
  animation: marquee-scroll-reverse 40s linear infinite;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Calculate width so EXACTLY 5 items fit in the container (100% wrapper) */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Container is 100vw minus 3rem padding. We want 5 items to fit. */
  width: calc((100vw - 3rem) / 5);
  height: 60px;
  flex-shrink: 0;
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  .logo-item {
    /* Max container width is 1200px minus 3rem (48px) = 1152px. 1152 / 5 = 230.4px */
    width: 230.4px;
  }
}

.logo-item img {
  max-width: 150px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.35s ease;
  display: block;
}

.logos-marquee-wrapper:hover .logo-item img {
  filter: grayscale(0%) opacity(1);
}

.logos-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Keep old trust-bar hidden */
.trust-bar {
  display: none;
}




/* ==========================================
   CARDS (FLAT DESIGN & MONDAY STYLE)
   ========================================== */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

/* ==========================================
   PREMIUM SERVICES CARDS
   ========================================== */
.service-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-pro-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 82, 204, 0.08);
}

.service-pro-img {
  width: 100%;
  height: 220px;
  background-color: var(--primary);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: 2rem;
}

.service-pro-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.service-pro-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-pro-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-pro-body p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-pro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.service-pro-features li {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.95rem;
}

.card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 115, 234, 0.06);
  transform: translateY(-2px);
}

.card:hover .card-link {
  color: var(--primary-hover);
}

.card:hover h3,
.card:hover h4 {
  color: var(--primary);
}

.card.accent:hover h3,
.card.accent:hover h4 {
  color: var(--accent);
}

.card-icon-wrapper {
  height: 48px;
  width: 48px;
  border-radius: var(--border-radius-sm);
  background-color: var(--light-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.card-icon-wrapper.accent {
  color: var(--accent);
}

.card-icon-wrapper.step-number {
  height: 40px;
  width: 40px;
  font-weight: bold;
}

.card:hover .card-icon-wrapper {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.card:hover .card-icon-wrapper.accent {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.card:hover .card-icon-wrapper.step-number {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Card Accent (Green Theme) */
.card.accent:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 200, 117, 0.06);
}

.card.accent .card-link {
  color: var(--accent);
}

.card.accent:hover .card-link {
  color: var(--accent-hover);
}

.card.accent .card-icon-wrapper {
  color: var(--accent);
}

.card.accent:hover .card-icon-wrapper {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.flat-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.2px;
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card-link {
  margin-top: 1.25rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

/* ==========================================
   MONDAY STYLE TABS
   ========================================== */
.tabs-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  color: var(--text-muted-dark);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-visual img {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   STATISTICS (FLAT)
   ========================================== */
.stats-bar {
  padding: 4.5rem 0;
  background-color: var(--light-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  color: var(--text-dark);
  padding: 2.25rem 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-item:nth-child(2) .stat-number {
  color: var(--accent);
}

.stat-item:nth-child(3) .stat-number {
  color: var(--secondary);
}

.stat-item:nth-child(4) .stat-number {
  color: var(--status-working);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  font-weight: 600;
}

/* ==========================================
   PORTFOLIO FILTER GRID
   ========================================== */
.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-muted-dark);
  padding: 0.4rem 1.1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.filter-btn:hover {
  background-color: #e6f0fd;
  /* Soft blue tint */
  color: var(--primary);
  border-color: var(--primary);
}

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

.filter-btn.active:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  border-color: var(--primary-hover);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.portfolio-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.portfolio-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 115, 234, 0.08);
  transform: translateY(-2px);
}

.portfolio-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1;
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border-light);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  padding: 1.25rem;
  text-align: center;
  color: var(--white);
}

.portfolio-overlay p {
  color: var(--white);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 1.25rem;
  flex-grow: 1;
}

.portfolio-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: block;
}

.portfolio-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* ==========================================
   TESTIMONIALS SLIDER
   ========================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  border: 1.5px solid var(--primary);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary);
}

/* ==========================================
   MONDAY-BOARD PRICING SYSTEM (CUSTOM FLAT)
   ========================================== */
.board-container {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  background-color: var(--white);
  margin-bottom: 2rem;
}

.monday-board {
  min-width: 800px;
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}

.monday-board th {
  background-color: var(--light-bg);
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  border-bottom: 1px solid var(--border-light);
}

.monday-board td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-dark);
  vertical-align: middle;
}

.monday-board tbody tr:hover {
  background-color: var(--light-bg);
}

.board-item-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.board-indicator {
  width: 4px;
  height: 24px;
  border-radius: 2px;
  display: inline-block;
}

.board-indicator.creative {
  background-color: var(--secondary);
}

.board-indicator.ats {
  background-color: var(--primary);
}

.board-indicator.all-in-one {
  background-color: var(--accent);
}

.board-indicator.linkedin {
  background-color: #0077B5;
}

.board-status {
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-sm);
  color: var(--status-text);
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  display: inline-block;
  min-width: 100px;
}

.board-status.status-ready {
  background-color: var(--status-done);
}

.board-status.status-popular {
  background-color: var(--status-working);
}

.board-status.status-smm {
  background-color: var(--status-waiting);
}

.board-price {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}

.btn-board {
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  background-color: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.btn-board:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* ==========================================
   FAQ ACCORDION (FLAT)
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--text-muted-dark);
}

/* ==========================================
   CONTACT FORM & LABELS (FLAT)
   ========================================== */
.form-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--light-bg);
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--primary);
}

.form-label {
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Floating Label Animation */
.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
  top: -0.55rem;
  left: 0.75rem;
  font-size: 0.75rem;
  color: var(--primary);
  background-color: var(--white);
  padding: 0 0.35rem;
  font-weight: 600;
}

.error-message {
  color: var(--status-stuck);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--dark-bg);
  color: var(--text-muted-light);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-info-logo {
  margin-bottom: 1.25rem;
}

.footer-info-logo .logo-text {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  height: 32px;
  width: 32px;
  border-radius: var(--border-radius-sm);
  background-color: var(--dark-panel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 0.8rem;
}

.social-icon:hover {
  color: var(--white);
}

.social-icon[aria-label*="Instagram"]:hover {
  background-color: #E1306C;
}

.social-icon[aria-label*="TikTok"]:hover {
  background-color: #010101;
}

.social-icon[aria-label*="LinkedIn"]:hover {
  background-color: #0A66C2;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: var(--text-muted-light);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 2px;
}

.footer-contact li {
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom a:hover {
  color: var(--white) !important;
}

/* ==========================================
   MODALS & POPUPS
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  border: 1px solid var(--border-light);
  transform: scale(0.95);
  transition: var(--transition-fast);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background-color: rgba(0, 200, 117, 0.1);
  color: var(--status-done);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  font-weight: bold;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 38px;
  width: 38px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  font-weight: bold;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
}

/* ==========================================
   GO GROWTH ECOSYSTEM SECTION (DARK MODE)
   ========================================== */
.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.growth-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.growth-card {
  background: var(--dark-panel);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.growth-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.growth-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.growth-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.growth-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.growth-pricing-card {
  background: var(--dark-panel);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.growth-pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(126, 211, 72, 0.1);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark-bg);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.growth-pricing-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pricing-focus {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.growth-pricing-card p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pricing-features .check-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.steps-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
  z-index: 2;
}

.step-item h5 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 100px;
  margin-top: -60px; /* align with number */
}

/* ==========================================
   FORM ORDER SECTION
   ========================================== */
.form-group-card {
  margin-bottom: 2rem;
}

.form-group-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background-color: #f8fafc;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 89, 210, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

.grid-2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.radio-group-inline {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.date-range-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ==========================================
   MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

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

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem 1.5rem;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.05);
    transition: right var(--transition-normal);
    z-index: 999;
    border-left: 1px solid var(--border-light);
  }

  .navbar.active {
    right: 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

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

  .grid-2-form {
    grid-template-columns: 1fr !important;
  }

  .date-range-group {
    flex-direction: column;
    align-items: stretch;
  }

  .date-range-group span {
    align-self: center;
    margin: 0.25rem 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

  .form-card {
    padding: 1.5rem;
  }

  .grid-2-form {
    grid-template-columns: 1fr !important;
  }

  .date-range-group {
    flex-direction: column;
    align-items: stretch;
  }

  .date-range-group span {
    align-self: center;
    margin: 0.25rem 0;
  }
}