/* =============================================
   AKADEMIA JUTRA - PREMIUM DESIGN 2026
   ============================================= */

/* Fonts loaded via <link> in HTML — no @import needed */

:root {
  --navy: #0D2344;
  --navy-light: #162d50;
  --orange: #F39200;
  --orange-bright: #FFa726;
  --orange-dark: #e68a00;
  --gold: #F39200;
  --white: #ffffff;
  --bg-cream: #F8FAFC;
  --bg-light: #F8FAFC;
  --text-dark: #2D3436;
  --text-body: #4A5568;
  --text-muted: #718096;
  --gradient-warm: linear-gradient(135deg, #F39200 0%, #FFa726 100%);
  --gradient-dark: linear-gradient(135deg, #0D2344 0%, #1a3a6a 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 15px 45px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 50px 100px rgba(13, 35, 68, 0.12);
  --shadow-orange: 0 15px 30px rgba(243, 146, 0, 0.3);
  --radius: 15px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

.highlight {
  color: var(--orange);
}

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
}

/* === UKRYJ CURSOR GLOW === */
/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

/* =============================================
   HEADER
   ============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  height: 90px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 14px 8%;
  height: 75px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo-box img {
  height: 70px;
  width: auto;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(13, 35, 68, 0.15), 0 4px 8px rgba(13, 35, 68, 0.06);
}

.logo-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  text-shadow: 0 1px 3px rgba(243, 146, 0, 0.2);
}

nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a:not(.cta-btn) {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

nav a:not(.cta-btn):hover {
  color: var(--orange);
}

nav a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  transition: width 0.3s;
}

nav a:not(.cta-btn):hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   BUTTONS
   ============================================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 50px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cta-btn.primary {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-orange);
}

.cta-btn.primary:hover {
  background: var(--orange-dark);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(243, 146, 0, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--orange);
}

.cta-btn.full-width {
  width: 100%;
}

/* Przycisk Aplikuj w NAV - desktop */
nav .cta-btn {
  padding: 14px 30px;
  font-size: 0.78rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(243, 146, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  transition: var(--transition);
}

nav .cta-btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(243, 146, 0, 0.4);
  transform: translateY(-3px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 8% 100px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 146, 0, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  display: none;
}

/* =============================================
   FLOATING CTA
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--orange);
  color: white;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(243, 146, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(243, 146, 0, 0.5);
}

.floating-cta.visible:hover {
  transform: translateY(-3px);
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 50px;
}

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

.section-header.light h2 {
  color: white;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 8px;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

[data-aos].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

[data-aos-delay="400"] {
  transition-delay: 0.4s;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.philosophy-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative;
}

.philosophy-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: center;
}

.philosophy-intro h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  line-height: 1.15;
}

.philosophy-desc p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.philosophy-card.featured {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}

.philosophy-card .card-glow {
  display: none;
}

.philosophy-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.philosophy-card .card-icon-box {
  width: 52px;
  height: 52px;
  background: var(--gradient-warm);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.philosophy-card:hover h3 {
  color: var(--orange-bright);
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.philosophy-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   REPORTS SECTION
   ============================================= */
.reports-section {
  padding: 100px 0;
  background: white;
}

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

.reports-left h2 {
  font-size: 2.2rem;
  margin: 10px 0 18px;
}

.reports-left>p {
  color: var(--text-body);
  font-size: 1rem;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-box {
  background: white;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.feature-box .feature-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-box strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Report Card */
.report-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 50px 100px rgba(13, 35, 68, 0.12);
  border-top: 4px solid var(--orange);
}

.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.report-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.report-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.report-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg-light);
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.report-tab-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.report-tab-btn:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}

.report-tab-btn.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

#inner-report {
  transition: opacity 0.3s, transform 0.3s;
}

.progress-section {
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-header span:first-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.progress-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--orange);
}

.progress-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-warm);
  border-radius: 10px;
  transition: width 0.8s ease;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.report-box {
  padding: 14px;
  border-radius: var(--radius);
}

.report-box.box-done {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.03));
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.report-box.box-future {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.03));
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.report-box small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--navy);
  margin-bottom: 10px;
}

.report-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.report-item .item-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.report-item.done .item-icon {
  background: #dcfce7;
  color: #16a34a;
}

.report-item.future .item-icon {
  background: #ffedd5;
  color: #ea580c;
}

.insight-box {
  background: var(--gradient-dark);
  border-radius: var(--radius);
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.insight-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.insight-header .insight-icon {
  font-size: 1rem;
}

.insight-header span:last-child {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.insight-box>p {
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.9;
  font-style: italic;
  margin-bottom: 14px;
}

.insight-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-footer p {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.insight-footer .highlight {
  color: var(--orange-bright);
  font-weight: 700;
}

.insight-watermark {
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.06;
  pointer-events: none;
}

/* =============================================
   PROCESS SECTION - NAPRAWIONE
   ============================================= */
.process-section {
  padding: 100px 0;
  background: var(--bg-light);
}

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

.process-step {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.process-step:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 50px rgba(13, 35, 68, 0.1);
  transform: translateY(-8px);
}

.process-step.highlight {
  background: var(--navy);
  border: none;
}

.process-step .step-number {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.process-step.highlight .step-number {
  background: var(--orange);
  color: white;
}

.process-step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step.highlight h4 {
  color: white;
}

.process-step p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
}

.process-step.highlight p {
  color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   DEPARTMENTS SECTION
   ============================================= */
.departments-section {
  padding: 100px 0;
  background: var(--gradient-dark);
}

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

.dept-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dept-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.dept-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.dept-item h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.25);
}

.dept-item ul {
  list-style: none;
}

.dept-item li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  padding: 6px 0 6px 22px;
  position: relative;
}

.dept-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0 20px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  min-width: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 35, 68, 0.1);
  border-color: rgba(243, 146, 0, 0.3);
}

.testimonial-card.featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(13, 35, 68, 0.15);
}

.testimonial-card.featured:hover {
  box-shadow: 0 25px 60px rgba(13, 35, 68, 0.25);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-card.featured .testimonial-avatar {
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-card.featured .testimonial-author strong {
  color: white;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: white;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 8px 25px rgba(243, 146, 0, 0.3);
}

.carousel-btn svg {
  stroke: currentColor;
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--orange-bright);
}

/* Testimonials Stats Bar */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(13, 35, 68, 0.15);
}

.tstat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.tstat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.tstat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.tstat-small {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.tstat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 100px 8%;
  background: white;
}

.faq-grid {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(243, 146, 0, 0.3);
}

.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(243, 146, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--orange);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
  padding: 100px 8%;
  background: var(--bg-light);
}

.pricing-section .section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 50px auto 0;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(13, 35, 68, 0.12);
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-card.featured .pricing-badge {
  background: var(--navy);
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
  margin-top: 10px;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.pricing-current {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .cta-btn {
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* Guarantee bar */
.guarantee-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.guarantee-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.guarantee-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.guarantee-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

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

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 12px 0 18px;
  line-height: 1.1;
}

.contact-info>p {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 28px;
}

.contact-details-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.contact-item:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.contact-icon {
  font-size: 1.3rem;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.contact-item span {
  color: var(--text-body);
  font-size: 0.88rem;
}

.bonus-text {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Form Card */
.contact-form-card {
  background: white;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 30px 70px rgba(13, 35, 68, 0.08);
  border-top: 4px solid var(--orange);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  margin-top: 10px;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 18px;
  border: 2px solid #F0F4F8;
  border-radius: 10px;
  background: var(--bg-light);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  color: var(--text-dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.12);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.checkbox-group label a,
.policy-link {
  color: var(--orange);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  display: inline;
}

#success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-warm);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

#success-message h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

#success-message p {
  color: var(--text-muted);
}

/* =============================================
   MODAL
   ============================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  padding: 40px 20px;
  overflow: auto;
}

.modal.active {
  display: block;
}

.modal-body {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 650px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--orange);
}

.modal-body h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-right: 36px;
}

.modal-content {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.7;
  max-height: 380px;
  overflow-y: auto;
}

.modal-content p {
  margin-bottom: 14px;
}

.policy-highlight {
  background: var(--bg-light);
  padding: 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  margin: 18px 0;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy);
  color: white;
  padding: 70px 6% 36px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(243, 146, 0, 0.3);
}

.footer-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 146, 0, 0.4);
}

footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}

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

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

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

  .testimonial-card {
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 900px) {
  .philosophy-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reports-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  header {
    padding: 10px 4%;
    height: 70px;
  }

  .logo-box {
    gap: 10px;
  }

  .logo-box img {
    height: 44px;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .logo-subtext {
    font-size: 0.5rem;
    letter-spacing: 1px;
    margin-top: 2px;
  }

  /* Buttons mobile */
  .cta-btn {
    padding: 14px 24px;
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .cta-btn.primary {
    box-shadow: 0 8px 20px rgba(243, 146, 0, 0.25);
  }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }

  /* MOBILE MENU */
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 999;
  }

  body.nav-open nav {
    max-height: 400px;
    padding: 20px;
  }

  nav a:not(.cta-btn) {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--navy);
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
  }

  nav a:not(.cta-btn):last-of-type {
    border-bottom: none;
  }

  nav a:not(.cta-btn)::after {
    display: none;
  }

  nav .cta-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 16px 24px;
    text-align: center;
    background: var(--gradient-warm);
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  /* Hamburger animation */
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero {
    padding: 90px 5% 50px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    padding: 16px 0;
  }

  .hero-stat {
    padding: 0;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 14px 22px;
    font-size: 0.78rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* Sections */
  .section-container {
    padding: 0 16px;
  }

  .section-header h2,
  .reports-left h2,
  .philosophy-intro h2,
  .contact-info h2 {
    font-size: 1.6rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .philosophy-section,
  .reports-section,
  .process-section,
  .departments-section,
  .contact-section {
    padding: 50px 0;
  }

  .philosophy-cards,
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: -4px;
  }

  .carousel-next {
    right: -4px;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 28px 20px;
  }

  .tstat:not(:last-child)::after {
    display: none;
  }

  .tstat-number {
    font-size: 1.8rem;
  }

  .testimonials-section {
    padding: 50px 0;
  }

  .faq-section {
    padding: 60px 5%;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .guarantee-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .pricing-section {
    padding: 60px 5%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step {
    padding: 24px 20px;
  }

  .feature-grid,
  .report-grid,
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .report-card {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-form-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .contact-details-card {
    padding: 18px;
  }

  .philosophy-card {
    padding: 24px 18px;
  }

  .dept-item {
    padding: 24px 18px;
  }

  input,
  select,
  textarea {
    padding: 14px;
    font-size: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 50px 5% 30px;
  }
}

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

  .section-header h2,
  .reports-left h2,
  .philosophy-intro h2,
  .contact-info h2 {
    font-size: 1.4rem;
  }

  .report-tabs {
    overflow-x: auto;
  }

  .report-tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}