/* ============================================================
   WebShot Landing Page — Light Theme (Professional)
   ERP Cloud - WebDeal
   ============================================================ */

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

/* --- Design Tokens — Light Theme --- */
:root {
  --color-primary: #008cbf;
  --color-primary-dark: #006a94;
  --color-primary-light: #33a3cc;
  --color-primary-bg: #e8f4fa;
  --color-accent: #c10306;
  --color-accent-dark: #9a0205;
  --color-accent-light: #e53538;
  --color-accent-bg: #fce8e8;

  --color-white: #ffffff;
  --color-bg: #f0f2f5;
  --color-bg-alt: #e4e7eb;
  --color-bg-hero: linear-gradient(145deg, #e4e7eb 0%, #f0f2f5 50%, #fef2f2 100%);

  --color-text-primary: #1a202c;
  --color-text-secondary: #4a5568;
  --color-text-muted: #8896a6;

  --color-border: #e2e8f0;
  --color-border-light: #edf2f7;
  --color-glass: rgba(255, 255, 255, 0.85);
  --color-glass-border: rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-glow-primary: 0 2px 6px rgba(0, 140, 191, 0.1);
  --shadow-glow-accent: 0 2px 6px rgba(193, 3, 6, 0.1);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--color-text-primary);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 6vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-mixed {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 140, 191, 0.3);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(193, 3, 6, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-icon {
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ============================================================
   NAVBAR — Pill + Floating Logo (Light)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1002;
}

.navbar-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  background: var(--color-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}

.navbar-pill-link {
  position: relative;
  z-index: 1;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: var(--radius-pill);
  transition: none;
  white-space: nowrap;
}

.navbar-pill-link:not(.active):hover {
  color: var(--color-primary);
  background: var(--color-primary-bg);
}

.navbar-pill-link.active {
  color: var(--color-white);
}

.navbar-pill-indicator {
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  background: var(--color-primary);
  border-radius: var(--radius-pill);
  transition: none;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.navbar-cta {
  padding: 0.55rem 1.3rem !important;
  font-size: 0.82rem !important;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-actions {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.navbar-floating-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 4s ease-in-out infinite;
}

.navbar-floating-logo img {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(0, 140, 191, 0.25));
  transition: all var(--transition-base);
}

.navbar-floating-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(0, 140, 191, 0.4));
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Mobile menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  z-index: 1002;
  position: relative;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 1001;
}

.navbar-mobile-menu.active {
  display: flex;
}

.navbar-mobile-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

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

.navbar-mobile-cta {
  margin-top: 1rem;
}

/* ============================================================
   HERO — Light gradient background
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: var(--color-bg-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 1;
}

.hero-bg-overlay {
  display: none;
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 3;
}

.hero-bg .orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 140, 191, 0.08);
  top: -15%;
  right: -5%;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-bg .orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(193, 3, 6, 0.06);
  bottom: -10%;
  left: -5%;
  animation: orbFloat 16s ease-in-out infinite reverse;
}

.hero-bg .orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(0, 140, 191, 0.05);
  top: 40%;
  left: 45%;
  animation: orbFloat 12s ease-in-out infinite 1s;
}



@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(25px, -15px) scale(1.04);
  }

  66% {
    transform: translate(-15px, 10px) scale(0.96);
  }
}

.hero .container {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 900px;
}

.hero-text {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--color-primary-bg);
  border: 1px solid rgba(0, 140, 191, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--color-white);
}

.hero-description strong {
  color: var(--color-accent);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-light);
}

.hero-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}

.hero-stat .stat-number .stat-accent {
  color: var(--color-primary);
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* Removed hero-visual styles as they are no longer used */

/* ============================================================
   ABOUT — Light cards
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card p {
  flex-grow: 1;
}

.value-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  z-index: 1;
}

.value-card .value-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-bg);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.value-card .value-icon.icon-accent {
  background: var(--color-accent-bg);
  color: var(--color-accent);
}

.value-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SERVICES — Alt background
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--color-bg-alt);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-light);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.service-card {
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card.image-card {
  padding: 0;
  overflow: hidden;
}

.service-image-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.service-card.image-card:hover .service-image-container img {
  transform: scale(1.05);
}

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

.service-content p {
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  z-index: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-icon.icon-blue {
  background: var(--color-primary-bg);
  color: var(--color-primary);
}

.service-icon.icon-red {
  background: var(--color-accent-bg);
  color: var(--color-accent);
}

.service-icon.icon-mixed {
  background: linear-gradient(135deg, var(--color-primary-bg), var(--color-accent-bg));
  color: var(--color-primary);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.service-tag {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-bg);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   TARGET SECTION — Clean with slight bg tint
   ============================================================ */
.target-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--color-bg);
}

.target-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-light);
}

.target-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.target-text-top {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-text-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.target-container {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.3);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.target-svg.visible {
  opacity: 1;
  transform: scale(1);
}

.target-ring {
  transform-origin: center;
}


/* Impact */
.impact-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-accent);
  opacity: 0;
  pointer-events: none;
}

.impact-ring.animate {
  animation: impactRipple 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes impactRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

.impact-ring-2 {
  animation-delay: 0.15s !important;
}

.impact-ring-3 {
  animation-delay: 0.3s !important;
}

.target-container.shake {
  animation: targetShake 0.5s ease-out;
}

@keyframes targetShake {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-6px, -3px);
  }

  20% {
    transform: translate(5px, 2px);
  }

  30% {
    transform: translate(-4px, -2px);
  }

  40% {
    transform: translate(3px, 1px);
  }
}

.target-text-bottom {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.target-text-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.target-text-bottom h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 0.6rem;
}

.target-text-bottom .highlight-accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   RESULTS — Alt background
   ============================================================ */
.results {
  padding: 6rem 0;
  background: var(--color-bg-alt);
  position: relative;
}

.results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-light);
}

.results-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.result-card {
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.result-card p {
  flex-grow: 1;
}

.result-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.result-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.result-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.result-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-white);
}

.testimonial-author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.testimonial-author-info .role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================================
   INVESTMENT MODEL SECTION
   ============================================================ */
.investment {
  padding: 6rem 0;
  background: var(--color-bg);
  position: relative;
}

.investment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-light);
}

.investment-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.investment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.investment-card {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.investment-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  z-index: 1;
}

.investment-card-highlight {
  background: linear-gradient(145deg, #e8f4fa, #f0f8ff);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(0, 140, 191, 0.15);
}

.investment-card-highlight:hover {
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0, 140, 191, 0.2);
}

.investment-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.25rem;
}

.investment-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-bg);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.investment-card-highlight .investment-icon {
  background: rgba(0, 140, 191, 0.15);
}

.investment-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.investment-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.investment-cta {
  text-align: center;
  margin-top: 1rem;
}

.investment-cta .btn {
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
}

/* ============================================================
   CTA — Gradient dark section
   ============================================================ */
.cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a3d5c 0%, #0d1b2a 40%, #0d1b2a 60%, #3a0a0b 100%);
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 140, 191, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(193, 3, 6, 0.12), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-content .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.cta-content .section-label::before {
  background: rgba(255, 255, 255, 0.3);
}

.cta-content .highlight {
  background: linear-gradient(135deg, #33a3cc, #66c4e0);
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: transparent;
}

.cta .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   FOOTER — Clean light
   ============================================================ */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.footer-logo-img {
  width: 64px;
  height: auto;
}

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

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

.footer-socials {
  flex: 1;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.04s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.08s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.12s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.16s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.24s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.28s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

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

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

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

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

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

  .investment-cards {
    grid-template-columns: 1fr;
  }

  .target-container {
    width: 300px;
    height: 300px;
  }

  .navbar-pill-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .navbar-pill {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-floating-logo {
    display: flex;
    animation: none;
    width: 40px;
    height: 40px;
  }

  .navbar-container {
    justify-content: space-between;
    background: var(--color-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 1.2rem;
    margin: 0.5rem 1rem;
    width: auto;
  }

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

  .investment-cards {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .about,
  .services,
  .investment,
  .results,
  .cta {
    padding: 4rem 0;
  }

  .target-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .target-container {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }

  .target-container {
    width: 210px;
    height: 210px;
  }

  .hero-logo-showcase {
    max-width: 240px;
  }
}