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

:root {
  --green-light: #9ACA3C;
  --green-dark: #6FA02C;
  --green-soft: #EEF6DC;
  --green-tint: #F6FAEB;
  --charcoal: #2C2C2C;
  --ink: #1A1A1A;
  --gray: #4A4A4A;
  --gray-muted: #6B6B6B;
  --gray-light: #F5F5F5;
  --line: #ECECE8;
  --white: #FFFFFF;
  --cream: #FAF8F4;
  --cream-deep: #F4F1EA;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(154, 202, 60, 0.25);
  --shadow-xs: 0 1px 2px rgba(20, 20, 20, 0.04);
  --shadow-sm: 0 2px 10px rgba(20, 20, 20, 0.05);
  --shadow-md: 0 10px 30px rgba(20, 20, 20, 0.07);
  --shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.10);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --gradient-cream: linear-gradient(180deg, #FAF8F4 0%, #F4F1EA 100%);
  --gradient-green-soft: linear-gradient(135deg, #F6FAEB 0%, #EEF6DC 100%);
  --gradient-hero: radial-gradient(1200px 600px at 85% -10%, rgba(154,202,60,0.10), transparent 60%),
                   radial-gradient(900px 500px at 10% 110%, rgba(154,202,60,0.07), transparent 60%),
                   linear-gradient(180deg, #FAF8F4 0%, #F7F4ED 100%);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Anchor offset so sticky navbar doesn't cover the target heading */
#argaman, #nesziona, #madatech, #nirgalim, #sanandres { scroll-margin-top: 100px; }
@media (max-width: 800px) {
  #argaman, #nesziona, #madatech, #nirgalim, #sanandres { scroll-margin-top: 80px; }
}

body {
  font-family: 'Google Sans', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  direction: rtl;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:where(h1, h2, h3, h4) {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  z-index: 100;
}

/* Dark navbar overlay — only on homepage (where .hero exists) */
body:has(.hero) .navbar {
  background: linear-gradient(135deg, rgba(5, 11, 7, 0.92) 0%, rgba(10, 31, 18, 0.94) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(154, 202, 60, 0.18);
}
body:has(.hero) .nav-links a {
  color: rgba(244, 248, 236, 0.88);
}
body:has(.hero) .nav-links a:hover,
body:has(.hero) .nav-links a.active {
  color: var(--green-light);
}
body:has(.hero) .nav-toggle span {
  background: #FFFFFF;
}
body:has(.hero) .nav-toggle:hover,
body:has(.hero) .nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
body:has(.hero) .nav-dropdown-menu {
  background: linear-gradient(160deg, #0d2a18 0%, #091a10 100%);
  border: 1px solid rgba(154, 202, 60, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}
body:has(.hero) .nav-dropdown-menu a {
  color: rgba(244, 248, 236, 0.88);
}
body:has(.hero) .nav-dropdown-menu a:hover,
body:has(.hero) .nav-dropdown-menu a:focus-visible {
  background-color: rgba(154, 202, 60, 0.12);
  color: var(--green-light);
}
@media (max-width: 800px) {
  body:has(.hero) .nav-links {
    background: linear-gradient(135deg, rgba(5, 11, 7, 0.97) 0%, rgba(10, 31, 18, 0.97) 100%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(154, 202, 60, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  }
  body:has(.hero) .nav-links a {
    border-bottom-color: rgba(154, 202, 60, 0.12);
  }
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--gray-light);
  outline: none;
}
.nav-toggle:focus-visible { box-shadow: 0 0 0 2px var(--green-light); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
@media (min-width: 801px) {
  .nav-links > li {
    display: flex;
    align-items: center;
  }
}
.nav-links a {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 100%;
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  min-height: 106vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 25% 50%, rgba(154,202,60,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(154,202,60,0.10) 0%, transparent 65%),
    radial-gradient(ellipse at top right, rgba(154,202,60,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #050B07 0%, #0A1F12 50%, #0E2818 100%);
  color: #F4F8EC;
  padding: 86px 32px 140px;
  position: relative;
  overflow: hidden;
}

.hero-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154,202,60,0.35) 0%, rgba(154,202,60,0.08) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 15%;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(154,202,60,0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(48px, 7.2vw, 86px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 29px;
  color: #FFFFFF;
}
.hero-title .accent { color: var(--green-light); }
.hero-period {
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.15s;
}
.hero-period.visible { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-period { opacity: 1; }
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--green-light);
  margin-inline-start: 6px;
  vertical-align: baseline;
  position: relative;
  top: 0.1em;
  animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor { animation: none; opacity: 1; }
}
br.m-break { display: none; }
.hero-subtitle {
  font-size: clamp(21px, 2.4vw, 26px);
  color: rgba(244,248,236,0.85);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 48px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-light);
  color: var(--white);
  padding: 19px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(154, 202, 60, 0.4);
}
.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(111, 160, 44, 0.5);
}
.hero-cta.secondary {
  background: transparent;
  color: #FFFFFF;
  box-shadow: none;
  border: 2px solid rgba(255,255,255,0.7);
  margin-right: 12px;
}
.hero-cta.secondary:hover {
  background: #FFFFFF;
  color: var(--charcoal);
  border-color: #FFFFFF;
}

/* ===== Sections ===== */
.section {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 60px;
}
.title-line {
  width: 60px;
  height: 4px;
  background: var(--green-light);
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ===== Services Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #ffffff;
  padding: 40px 32px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: auto 32px 24px 32px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--line), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 202, 60, 0.45);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--green-dark);
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.service-card p {
  color: var(--gray-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ===== Projects Gallery ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.project-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-light);
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-cover img { transform: scale(1.05); }
.project-info { padding: 24px 28px; }
.project-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.project-info p { color: var(--gray); font-size: 14px; margin-bottom: 16px; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--gray-light);
  color: var(--gray);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.tag.green { background: rgba(154, 202, 60, 0.15); color: var(--green-dark); }

/* ===== Project Detail Gallery ===== */
.project-header {
  text-align: center;
  margin-bottom: 60px;
}
.project-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
}
.project-header p { color: var(--gray); font-size: 18px; max-width: 700px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-light);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Contact ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
}
.contact-info p { color: var(--gray); font-size: 17px; margin-bottom: 32px; }
.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-list a:hover { color: var(--green-dark); }
.contact-form {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.submit-btn:hover { background: var(--green-dark); }

/* ===== CTA Section ===== */
.cta-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 90px 32px;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(154,202,60,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(154,202,60,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.15;
}
.cta-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.72);
  margin: 0 0 44px;
  line-height: 1.6;
  font-weight: 400;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}
.cta-btn--primary {
  background: var(--green-light);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(154,202,60,0.35);
}
.cta-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(154,202,60,0.5);
  background: #aad946;
}
.cta-btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.cta-btn--outline:hover {
  transform: translateY(-3px);
  border-color: var(--white);
  box-shadow: 0 6px 24px rgba(255,255,255,0.1);
}
@media (max-width: 480px) {
  .cta-section { padding: 70px 24px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; padding: 14px 28px; }
}

/* ===== Status Phones Section ===== */
.sp-section {
  background: #0a1a0a;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.sp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(154,202,60,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(154,202,60,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sp-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
  position: relative;
}
.sp-tag {
  display: inline-block;
  background: rgba(154,202,60,0.12);
  color: #9ACA3C;
  border: 1px solid rgba(154,202,60,0.28);
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.sp-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.sp-divider {
  width: 48px;
  height: 3px;
  background: #9ACA3C;
  border-radius: 2px;
  margin: 0 auto 18px;
}
.sp-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}

/* Carousel layout */
.sp-carousel-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  position: relative;
}

/* Stage: fixed height, clips overflow so side phones don't show fully */
.sp-stage {
  position: relative;
  height: 530px;
  width: 100%;
  max-width: 820px;
  overflow: hidden;
}

/* Each phone item absolutely centered in stage */
.sp-item {
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transition:
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.58s cubic-bezier(0.22, 1, 0.36, 1),
    filter    0.58s ease;
}

/* Active: centered, full scale */
.sp-item.sp-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  filter: none;
}

/* Next item (higher index) → LEFT side in RTL */
.sp-item.sp-adj-next {
  transform: translate(calc(-50% - 290px), calc(-50% + 28px)) scale(0.81);
  opacity: 0.50;
  z-index: 2;
  pointer-events: auto;
  filter: brightness(0.65);
}

/* Prev item (lower index) → RIGHT side in RTL */
.sp-item.sp-adj-prev {
  transform: translate(calc(-50% + 290px), calc(-50% + 28px)) scale(0.81);
  opacity: 0.50;
  z-index: 2;
  pointer-events: auto;
  filter: brightness(0.65);
}

/* Far items: hidden behind active */
.sp-item.sp-far {
  transform: translate(-50%, calc(-50% + 50px)) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.3);
}

/* ---- iPhone 15 Pro frame ---- */
.sp-iphone {
  width: 232px;
  height: 472px;
  background: linear-gradient(148deg, #3d3d3f 0%, #2a2a2c 30%, #1e1e20 65%, #111113 100%);
  border-radius: 46px;
  position: relative;
  /* outer ring highlight + deep shadow */
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 50px 100px rgba(0,0,0,0.85),
    0 20px 40px rgba(0,0,0,0.6);
}

/* Active phone: green ambient glow */
.sp-item.sp-active .sp-iphone {
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 3px rgba(0,0,0,0.5),
    0 60px 120px rgba(0,0,0,0.9),
    0 25px 50px rgba(0,0,0,0.65),
    0 0 70px rgba(154,202,60,0.18),
    0 0 140px rgba(154,202,60,0.08);
}

/* Screen bezel + video */
.sp-screen {
  position: absolute;
  inset: 11px;
  border-radius: 37px;
  overflow: hidden;
  background: #000;
}
.sp-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dynamic Island */
.sp-dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 30px;
  background: #08080a;
  border-radius: 22px;
  z-index: 10;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.9);
}

/* Home indicator */
.sp-home-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 4px;
  background: rgba(255,255,255,0.38);
  border-radius: 4px;
  z-index: 10;
}

/* Physical side buttons */
.sp-btn-action,
.sp-btn-vol-up,
.sp-btn-vol-down {
  position: absolute;
  left: -4px;
  width: 4px;
  background: linear-gradient(180deg, #3d3d3f, #252527);
  border-radius: 3px 0 0 3px;
}
.sp-btn-action    { top: 92px;  height: 28px; }
.sp-btn-vol-up    { top: 144px; height: 62px; }
.sp-btn-vol-down  { top: 218px; height: 62px; }

.sp-btn-power {
  position: absolute;
  right: -4px;
  top: 168px;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, #3d3d3f, #252527);
  border-radius: 0 3px 3px 0;
}

/* Nav buttons */
.sp-nav-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(154,202,60,0.32);
  background: rgba(154,202,60,0.08);
  color: #9ACA3C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  z-index: 5;
}
.sp-nav-btn svg { width: 22px; height: 22px; display: block; }
.sp-nav-btn:hover {
  background: rgba(154,202,60,0.18);
  border-color: #9ACA3C;
  transform: scale(1.08);
}
.sp-nav-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .sp-nav-btn:hover { transform: none; }
}

/* Dots */
.sp-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.28s ease, width 0.28s ease, border-radius 0.28s ease;
}
.sp-dot.sp-dot-active {
  background: #9ACA3C;
  width: 26px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 767px) {
  .sp-section { padding: 60px 0 70px; }
  .sp-header { margin-bottom: 44px; }
  .sp-carousel-area { gap: 10px; padding: 0 8px; }

  .sp-stage { height: 430px; max-width: 100%; }

  .sp-iphone {
    width: 182px;
    height: 370px;
    border-radius: 36px;
  }
  .sp-screen { inset: 9px; border-radius: 29px; }
  .sp-dynamic-island { width: 70px; height: 24px; top: 11px; border-radius: 17px; }
  .sp-home-bar { width: 88px; height: 3px; bottom: 8px; }

  .sp-btn-action   { top: 72px;  height: 22px; }
  .sp-btn-vol-up   { top: 112px; height: 48px; }
  .sp-btn-vol-down { top: 170px; height: 48px; }
  .sp-btn-power    { top: 130px; height: 62px; }

  .sp-item.sp-adj-next {
    transform: translate(calc(-50% - 175px), calc(-50% + 22px)) scale(0.79);
    opacity: 0.38;
  }
  .sp-item.sp-adj-prev {
    transform: translate(calc(-50% + 175px), calc(-50% + 22px)) scale(0.79);
    opacity: 0.38;
  }

  .sp-nav-btn { width: 44px; height: 44px; }
  .sp-nav-btn svg { width: 18px; height: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-item { transition: none; }
  .sp-dot  { transition: none; }
}

/* ===== Footer ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 50px 32px 30px;
  text-align: center;
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer img { height: 50px; margin: 0 auto 20px; filter: brightness(0) invert(1); }
.footer p { opacity: 0.7; font-size: 14px; margin-top: 20px; }
.footer-tagline { font-size: 16px; opacity: 0.9; margin-bottom: 20px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--green-light);
  border-bottom-color: var(--green-light);
}

/* ===== Legal pages ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}
.legal-content h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
}
.legal-content .legal-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-light);
}
.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--charcoal);
}
.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}
.legal-content ul {
  padding-right: 24px;
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--green-dark);
  border-bottom: 1px solid var(--green-light);
}
.legal-content a:hover { color: var(--charcoal); }

/* ===== Responsive ===== */
@media (max-width: 800px) {
  .nav-container { padding: 14px 20px; position: relative; }
  .nav-logo img { height: 40px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 8px 24px;
    gap: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--gray-light);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid var(--gray-light);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.active { color: var(--green-dark); }
  .nav-links a.active::after { display: none; }

  .section { padding: 60px 20px; }
  .hero { padding: 36px 18px 44px; min-height: auto; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  /* Smaller hero title on mobile so the typewriter cursor stays on the same line */
  .hero-title { font-size: clamp(36px, 9vw, 44px); }
  .cursor { width: 2px; height: 0.8em; margin-inline-start: 4px; }
  /* Smaller subtitle on mobile */
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  br.m-break { display: block; }
  .nowrap-m { white-space: nowrap; }
  /* Smaller CTA buttons on mobile + stacked vertically */
  .hero-cta {
    padding: 13px 28px;
    font-size: 16px;
    display: flex;
    width: fit-content;
  }
  .hero-cta.secondary { margin: 12px 0 0 0; }
  /* Smaller WhatsApp floating button */
  .whatsapp-float { width: 52px; height: 52px; bottom: 14px; left: 14px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  /* Smaller WhatsApp bubble */
  .wa-bubble { bottom: 22px; left: 74px; font-size: 12px; padding: 7px 12px 7px 26px; }
  .wa-bubble-close { width: 18px; height: 18px; font-size: 12px; }
  /* Smaller accessibility button */
  .a11y-toggle { width: 40px; height: 40px; bottom: 82px; left: 18px; }
  .a11y-toggle svg { width: 22px; height: 22px; }
  /* Calmer hero on mobile — no animated orbs */
  .hero::before, .hero::after { animation: none !important; }
  .hero::before { width: 320px; height: 320px; filter: blur(80px); opacity: 0.6; }
  .hero::after  { width: 240px; height: 140px; filter: blur(70px); opacity: 0.5; }
  /* Calmer testimonials transition on mobile (pure fade, no slide) */
  .t-card { transform: none !important; transition: opacity 0.5s ease; }
  .t-card--out, .t-card--in { opacity: 0; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-links, .nav-toggle span { transition: none !important; }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 4.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(29, 168, 81, 0.5);
}
.whatsapp-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #fff, 0 0 0 7px #25D366;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@keyframes wa-pulse {
  0%, 88%, 100% { transform: scale(1); }
  92%          { transform: scale(1.05); }
  96%          { transform: scale(1); }
}
@media (max-width: 800px) {
  .whatsapp-float { bottom: 16px; left: 16px; width: 64px; height: 64px; }
  .whatsapp-float svg { width: 34px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
  .whatsapp-float:hover { transform: none; }
}

/* ===== Fade-in (animation-based for stagger support) ===== */
.fade-in {
  opacity: 0;
}
.fade-in.visible {
  animation: ccdFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes ccdFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible { opacity: 1; animation: none; transform: none; }
}

/* Staggered entrance delays for grid children */
.projects-grid > .fade-in.visible:nth-child(2)  { animation-delay: 0.10s; }
.projects-grid > .fade-in.visible:nth-child(3)  { animation-delay: 0.20s; }
.projects-grid > .fade-in.visible:nth-child(4)  { animation-delay: 0.30s; }
.projects-grid > .fade-in.visible:nth-child(5)  { animation-delay: 0.40s; }
.projects-grid > .fade-in.visible:nth-child(6)  { animation-delay: 0.50s; }

.services-grid > .fade-in.visible:nth-child(2)  { animation-delay: 0.10s; }
.services-grid > .fade-in.visible:nth-child(3)  { animation-delay: 0.20s; }
.services-grid > .fade-in.visible:nth-child(4)  { animation-delay: 0.30s; }

/* Stagger — campaign cards */
.campaigns-carousel > .fade-in.visible:nth-child(2) { animation-delay: 0.07s; }
.campaigns-carousel > .fade-in.visible:nth-child(3) { animation-delay: 0.14s; }
.campaigns-carousel > .fade-in.visible:nth-child(4) { animation-delay: 0.21s; }
.campaigns-carousel > .fade-in.visible:nth-child(5) { animation-delay: 0.28s; }

/* Stagger — video cards */
.videos-grid > .fade-in.visible:nth-child(2) { animation-delay: 0.07s; }
.videos-grid > .fade-in.visible:nth-child(3) { animation-delay: 0.14s; }
.videos-grid > .fade-in.visible:nth-child(4) { animation-delay: 0.21s; }

/* ===== Entrance animations — section headers ===== */
.campaigns-section .section-header h2,
.campaigns-section .section-divider,
.videos-header h2,
.videos-tag,
.videos-subtitle,
.videos-divider {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.campaigns-section .section-header h2.visible { opacity: 1; transform: translateY(0); }
.campaigns-section .section-divider.visible   { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.videos-header h2.visible   { opacity: 1; transform: translateY(0); }
.videos-tag.visible         { opacity: 1; transform: translateY(0); }
.videos-subtitle.visible    { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.videos-divider.visible     { opacity: 1; transform: translateY(0); transition-delay: 0.06s; }

@media (prefers-reduced-motion: reduce) {
  .campaigns-section .section-header h2,
  .campaigns-section .section-divider,
  .videos-header h2, .videos-tag, .videos-subtitle, .videos-divider {
    opacity: 1; transform: none; transition: none;
  }
}

/* ===== ccd-fade-up — sections (e.g. CTA) ===== */
.ccd-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.ccd-fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .ccd-fade-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================ */
/* HERO ENTRANCE ANIMATIONS                     */
/* ============================================ */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title,
.hero-subtitle,
.hero-cta {
  opacity: 0;
  animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title          { animation-delay: 0.10s; }
.hero-subtitle       { animation-delay: 0.45s; }
.hero-cta            { animation-delay: 0.70s; }
.hero-cta.secondary  { animation-delay: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  .hero-title, .hero-subtitle, .hero-cta {
    opacity: 1;
    animation: none;
  }
}

/* ============================================ */
/* HERO BACKGROUND - FLOATING ORBS              */
/* ============================================ */

@keyframes orbFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes orbFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -40px) scale(1.06); }
}
.hero::before { animation: orbFloatA 14s ease-in-out infinite; }
.hero::after  { animation: orbFloatB 18s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

/* ============================================ */
/* TITLE-LINE GROW ON SCROLL                    */
/* ============================================ */

.title-line {
  width: 0;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.title-line.visible { width: 60px; }
@media (prefers-reduced-motion: reduce) {
  .title-line, .title-line.visible { width: 60px; transition: none; }
}

/* ============================================ */
/* SECTION TITLE / SUBTITLE SLIDE-UP            */
/* ============================================ */

.section-title,
.section-subtitle {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-title.visible,
.section-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-subtitle.visible { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  .section-title, .section-subtitle {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================ */
/* SERVICE ICON HOVER POP                       */
/* ============================================ */

.service-icon {
  transition: background 0.4s var(--ease-out),
              color 0.4s var(--ease-out);
}
.service-card:hover .service-icon {
  background: var(--green-light);
  color: #ffffff;
}
@media (prefers-reduced-motion: reduce) {
  .service-card:hover .service-icon { background: var(--green-soft); color: var(--green-dark); }
}

/* ============================================ */
/* CTA BUTTON SHINE                             */
/* ============================================ */

.hero-cta:not(.secondary) {
  position: relative;
  overflow: hidden;
}
.hero-cta:not(.secondary)::before {
  content: '';
  position: absolute;
  top: 0;
  right: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}
.hero-cta:not(.secondary):hover::before {
  animation: ctaShine 0.85s ease;
}
@keyframes ctaShine {
  from { right: -120%; }
  to   { right: 120%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cta:not(.secondary)::before { display: none; }
}

/* ============================================ */
/* HERO TESTIMONIALS CAROUSEL                   */
/* ============================================ */

/* Two-column hero layout */
.hero-content {
  display: flex;
  align-items: center;
  gap: 67px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

/* Testimonials column */
.hero-testimonials {
  flex: 0 0 480px;
  width: 480px;
  outline: none;
  animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
  background:
    linear-gradient(160deg, rgba(20, 50, 30, 0.55) 0%, rgba(10, 25, 18, 0.65) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(154, 202, 60, 0.35);
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(154, 202, 60, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(154, 202, 60, 0.08);
  padding: 43px 36px 36px;
  position: relative;
}
.hero-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(154,202,60,0.18) 0%, transparent 40%, transparent 60%, rgba(154,202,60,0.08) 100%);
  pointer-events: none;
  opacity: 0.9;
}


/* Hero proof line (small categories under CTAs) */
.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-muted);
  letter-spacing: 0.04em;
}
.hero-proof span { white-space: nowrap; }
.hero-proof .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.7;
  display: inline-block;
}
@media (max-width: 768px) {
  .hero-proof { justify-content: center; font-size: 12.5px; }
}

/* Section label */
.t-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 11px 14px 11px 28px;
  background: var(--green-dark);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(111, 160, 44, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 2;
}

.t-label-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding-bottom: 2px;
  flex-shrink: 0;
  text-shadow: none;
  letter-spacing: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Carousel track – grid so all cards overlap */
.t-track {
  display: grid;
  position: relative;
  z-index: 2;
}

/* Individual card */
.t-card {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--t-fade, 0.45s) ease,
              transform var(--t-fade, 0.45s) cubic-bezier(0.22, 1, 0.36, 1);
}

.t-card--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.t-card--out {
  opacity: 0;
  transform: translateY(-8px);
}

.t-card--in {
  opacity: 0;
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  .t-card {
    transition: opacity 0.2s ease;
    transform: none !important;
  }
  .t-card--out { opacity: 0; }
  .t-card--in  { opacity: 0; }
}

/* Sender row (avatar + name) */
.t-sender {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 2.5px var(--green-light),
    0 0 20px rgba(154, 202, 60, 0.55);
}

.t-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-name {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.t-role {
  font-size: 12.5px;
  color: rgba(244, 248, 236, 0.65);
  font-weight: 400;
}

/* Speech bubble */
.t-bubble {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(154, 202, 60, 0.18);
  border-radius: 20px 4px 20px 20px;
  padding: 22px 22px 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

/* Tail pointing upward toward the avatar (top-right corner in RTL) */
.t-bubble::before {
  content: '';
  position: absolute;
  top: -9px;
  right: 14px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.08);
}

.t-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(244, 248, 236, 0.92);
  margin: 0 0 12px;
}

/* WhatsApp-style double tick */
.t-tick {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  opacity: 0.65;
}

/* Pagination dots */
.t-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(154, 202, 60, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.t-dot--active {
  background: var(--green-light);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(154, 202, 60, 0.7);
}

.t-dot:hover { background: var(--green-dark); }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero-content { gap: 40px; }
  .hero-testimonials { flex: 0 0 420px; width: 420px; }
}

@media (max-width: 900px) {
  .hero-content { gap: 28px; }
  .hero-testimonials { flex: 0 0 360px; width: 360px; padding: 26px 22px 22px; }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-testimonials {
    flex: none;
    width: 100%;
    max-width: 480px;
    margin: 32px auto 0;
    border-radius: 20px;
  }
  .t-bubble { border-radius: 20px; }
  .t-bubble::before { display: none; }
}

/* ============================================ */
/* LIGHTBOX                                     */
/* ============================================ */

@media (hover: hover) {
  .gallery-item img {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
}
.gallery-item img:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox-stage {
  position: relative;
  width: 90vw;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-img.is-loaded { opacity: 1; }

.lightbox-spinner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: lightbox-spin 0.8s linear infinite;
}
@keyframes lightbox-spin {
  to { transform: rotate(360deg); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(154, 202, 60, 0.9);
}
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 3px;
}

.lightbox-close {
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  font-size: 32px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 24px;
}
.lightbox-prev { right: 24px; }
.lightbox-next { left: 24px; }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .lightbox-close {
    top: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .lightbox-prev { right: 8px; }
  .lightbox-next { left: 8px; }
  .lightbox-counter {
    bottom: 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-img,
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next,
  .gallery-item img {
    transition: none !important;
  }
  .lightbox-spinner { animation: none; }
}

/* ============================================ */
/* WHATSAPP SPEECH BUBBLE                       */
/* ============================================ */

.wa-bubble {
  position: fixed;
  bottom: 38px;
  left: 100px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 16px 10px 36px;
  border-radius: 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.wa-bubble.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.wa-bubble.is-dismissed {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}
.wa-bubble::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -6px;
  width: 14px;
  height: 14px;
  background: #25D366;
  transform: rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}
.wa-bubble-text {
  white-space: nowrap;
}
.wa-bubble-close {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #2C2C2C;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 0;
  font-family: inherit;
}
.wa-bubble-close:hover { background: #fff; }
.wa-bubble-close:focus-visible,
.wa-bubble:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .wa-bubble {
    bottom: 32px;
    left: 86px;
    font-size: 13px;
    padding: 8px 14px 8px 30px;
  }
  .wa-bubble-close {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/* ============================================ */
/* PROMOTIONAL POPUP                            */
/* ============================================ */

html.popup-open,
body.popup-open {
  overflow: hidden;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 60px 20px 20px;
}
.promo-popup[hidden] { display: none; }
.promo-popup.is-open { opacity: 1; }

.promo-popup-frame {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.promo-popup-link {
  display: block;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.promo-popup.is-open .promo-popup-link { transform: scale(1); }

.promo-popup-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.promo-popup-close {
  position: absolute;
  top: -52px;
  left: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #2C2C2C;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  font-family: inherit;
  padding: 0;
  z-index: 2;
}
.promo-popup-close:hover {
  transform: scale(1.08);
  background: #f4f4f4;
}
.promo-popup-close:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .promo-popup-frame { width: 80vw; }
}
@media (max-width: 640px) {
  .promo-popup { padding: 60px 16px 16px; }
  .promo-popup-frame { width: 90vw; }
  .promo-popup-close {
    width: 38px;
    height: 38px;
    font-size: 22px;
    top: -48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-bubble,
  .promo-popup,
  .promo-popup-link,
  .promo-popup-close {
    transition: none !important;
  }
  .promo-popup-link { transform: none !important; }
}

/* === CAMPAIGN SUB-PAGE === */
.campaign-back {
  margin-bottom: 24px;
}
.campaign-back a {
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.campaign-back a:hover {
  color: var(--green-dark);
}

.campaign-description {
  margin: 24px 0 40px;
}
.description-container {
  background: #f9fafb;
  border-right: 4px solid var(--green-light);
  padding: 24px 28px;
  border-radius: 8px;
  max-width: 900px;
}
.description-placeholder {
  color: var(--gray);
  font-style: italic;
  margin: 0;
  font-size: 15px;
}

.campaign-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}
.campaign-nav-prev,
.campaign-nav-next {
  color: #1f2937;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  background: #f3f4f6;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.campaign-nav-prev:hover,
.campaign-nav-next:hover {
  background: var(--green-light);
  color: #fff;
  transform: translateY(-2px);
}
.campaign-nav-next:only-child {
  margin-right: auto;
}
.campaign-nav-prev:only-child {
  margin-left: auto;
}
@media (max-width: 640px) {
  .campaign-nav { gap: 12px; }
  .campaign-nav-prev,
  .campaign-nav-next { font-size: 14px; padding: 10px 16px; flex: 1; text-align: center; }
}

/* Anchor offset for sticky navbar when jumping to #campaigns */
#campaigns { scroll-margin-top: 100px; }
@media (max-width: 800px) {
  #campaigns { scroll-margin-top: 80px; }
}

/* === PROJECTS DROPDOWN NAV === */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1.5;
}
.nav-dropdown-arrow {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
  transition: transform 0.2s ease;
  transform-origin: center;
  position: relative;
  top: -1px;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: right;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background-color: #F4F8EC;
  color: var(--green-dark);
  outline: none;
}
/* Suppress the underline pseudo-element on dropdown items */
.nav-dropdown-menu a::after { display: none !important; }

/* Mobile: accordion */
@media (max-width: 800px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    min-width: 0;
    padding: 0;
    transform: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    border-top: 1px solid var(--gray-light);
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }
  .nav-dropdown-menu a {
    padding: 12px 24px 12px 4px;
    font-size: 15px;
    color: var(--gray);
    border-bottom: 1px solid var(--gray-light);
  }
  .nav-dropdown-menu li:last-child a { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-arrow,
  .nav-dropdown-menu { transition: none !important; }
}

/* ============================================ */
/* PRICING PAGE                                 */
/* ============================================ */

.pricing-hero {
  padding: 80px 32px 40px;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #f0f7e8 100%);
  position: relative;
  overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: var(--green-light);
  opacity: 0.08;
  border-radius: 50%;
  animation: orbFloatA 14s ease-in-out infinite;
  pointer-events: none;
}
.pricing-hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: var(--green-dark);
  opacity: 0.06;
  border-radius: 50%;
  animation: orbFloatB 18s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-hero::before, .pricing-hero::after { animation: none; }
}
.pricing-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.pricing-hero h1 .accent { color: var(--green-light); }
.pricing-hero-tagline {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pricing-hero-tagline .accent { color: var(--green-dark); }
.pricing-hero-text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-section {
  padding: 60px 32px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 80px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  text-align: right;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}
.pricing-card:hover,
.pricing-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(154, 202, 60, 0.25);
  border-color: var(--green-light);
  outline: none;
}

.pricing-card-featured {
  background: linear-gradient(160deg, #ffffff 0%, #fafff0 100%);
  border-color: var(--green-light);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 40px rgba(154, 202, 60, 0.22);
  z-index: 2;
}
.pricing-card-featured:hover,
.pricing-card-featured:focus-visible {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 24px 56px rgba(154, 202, 60, 0.32);
}

.pricing-card-badge {
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(154, 202, 60, 0.4);
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eef0ea;
}
.pricing-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pricing-card-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.2;
}
.pricing-card-featured .pricing-card-title {
  color: var(--green-dark);
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  direction: ltr;
}
.pricing-card-price .price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.pricing-card-featured .pricing-card-price .price-amount {
  color: var(--charcoal);
}
.pricing-card-price .price-currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--gray);
}
.pricing-card-price-suffix {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}
.pricing-card-features li {
  position: relative;
  padding: 10px 32px 10px 0;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
  border-bottom: 1px dashed #eef0ea;
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li strong {
  font-weight: 900;
  color: var(--charcoal);
  background: linear-gradient(180deg, transparent 62%, rgba(154, 202, 60, 0.35) 62%, rgba(154, 202, 60, 0.35) 95%, transparent 95%);
  padding: 0 3px;
  border-radius: 2px;
}
.pricing-card-features li::before {
  content: '';
  position: absolute;
  top: 14px;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.5L3 8l1.5-1.5L6.5 8.5l5-5L13 5z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}

.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
}
.pricing-card:hover .pricing-card-cta {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(111, 160, 44, 0.35);
}
.pricing-card-featured .pricing-card-cta {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  box-shadow: 0 6px 18px rgba(154, 202, 60, 0.4);
}
.pricing-card-featured:hover .pricing-card-cta {
  background: linear-gradient(135deg, var(--green-dark), #5a8722);
  box-shadow: 0 12px 28px rgba(111, 160, 44, 0.5);
}
.pricing-card-cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.pricing-card:hover .pricing-card-cta-arrow {
  transform: translateX(-4px);
}

/* ── Pricing card: line-by-line reveal (mobile only, li items only) ── */
@media (max-width: 768px) {
  .pricing-card .pricing-card-features li {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .pricing-card.lines-visible .pricing-card-features li {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .pricing-card .pricing-card-features li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Bottom CTA section */
.pricing-cta-section {
  background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
  color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--green-light);
  opacity: 0.12;
  border-radius: 50%;
  animation: orbFloatA 14s ease-in-out infinite;
  pointer-events: none;
}
.pricing-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: var(--green-dark);
  opacity: 0.10;
  border-radius: 50%;
  animation: orbFloatB 18s ease-in-out infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .pricing-cta-section::before,
  .pricing-cta-section::after { animation: none; }
}
.pricing-cta-section > * { position: relative; z-index: 1; }

.pricing-cta-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
  color: #fff;
}
.pricing-cta-text { color: #fff; }
.pricing-cta-title .accent { color: var(--green-light); }
.pricing-cta-text {
  font-size: clamp(15px, 1.6vw, 18px);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.pricing-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}
.pricing-cta-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Pricing card stagger entrance */
.pricing-grid > .fade-in.visible:nth-child(1) { animation-delay: 0.05s; }
.pricing-grid > .fade-in.visible:nth-child(2) { animation-delay: 0.20s; }
.pricing-grid > .fade-in.visible:nth-child(3) { animation-delay: 0.35s; }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    gap: 24px;
  }
  .pricing-card-featured {
    transform: translateY(0) scale(1);
  }
  .pricing-card-featured:hover,
  .pricing-card-featured:focus-visible {
    transform: translateY(-8px) scale(1);
  }
}
@media (max-width: 640px) {
  .pricing-hero { padding: 50px 20px 30px; }
  .pricing-section { padding: 40px 20px 60px; }
  .pricing-card { padding: 36px 24px 28px; }
  .pricing-cta-section { padding: 44px 24px; border-radius: 20px; }
  .pricing-card-price .price-amount { font-size: 44px; }
}

/* ===== CLIENTS MARQUEE ===== */

.clients-section {
  background: linear-gradient(180deg, #F4F8EC 0%, #E8F0D9 100%);
  padding: 70px 0;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.clients-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2C2C2A;
  margin: 0 0 16px 0;
  font-family: 'Google Sans', sans-serif;
}

.clients-divider {
  width: 60px;
  height: 3px;
  background: #9ACA3C;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

/* ===== CAMPAIGNS CAROUSEL ===== */

.campaigns-section {
  background:
    radial-gradient(ellipse 70% 50% at 70% 20%, rgba(154,202,60,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(154,202,60,0.08) 0%, transparent 65%),
    linear-gradient(180deg, #0E2818 0%, #0A1F12 50%, #050B07 88%, #1a3520 100%);
  padding: 128px 0 148px;
  overflow: hidden;
  position: relative;
}

.campaigns-section .section-header {
  text-align: center;
  margin-bottom: 64px;
  padding: 0 24px;
}

.campaigns-section .section-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 18px 0;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: -0.015em;
}

.campaigns-section .section-divider {
  width: 48px;
  height: 3px;
  background: var(--green-light);
  margin: 0 auto 18px auto;
  border-radius: 2px;
  opacity: 1;
  box-shadow: 0 0 12px rgba(154, 202, 60, 0.6);
}

.campaigns-section .section-subtitle {
  font-size: 17px;
  color: rgba(244, 248, 236, 0.75);
  margin: 0;
  font-family: 'Google Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}


.campaigns-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.campaigns-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.campaigns-carousel::-webkit-scrollbar {
  display: none;
}

/* --- Campaign Card: full-image with gradient overlay --- */
.campaign-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 19px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  min-height: 350px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.campaign-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bottom gradient overlay — always visible so text is readable */
.campaign-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.30) 45%,
    transparent 72%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 34px;
  direction: rtl;
  transition: background 0.45s var(--ease-out);
}

.campaign-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  font-family: 'Google Sans', sans-serif;
  line-height: 1.25;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  letter-spacing: -0.005em;
}

.campaign-card-cta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s var(--ease-out);
  display: inline-block;
}

/* Hover state */
.campaign-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.campaign-card:hover > img {
  transform: scale(1.06);
}

.campaign-card:hover .campaign-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.44) 50%,
    transparent 76%
  );
}

.campaign-card:hover .campaign-card-cta {
  color: rgba(255, 255, 255, 1);
  transform: translateX(-4px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .campaign-card,
  .campaign-card > img,
  .campaign-card-overlay,
  .campaign-card-cta {
    transition: none;
  }
}

/* Carousel Buttons */
.carousel-btn {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: none;
  background: none;
  color: var(--green-light);
  font-size: 26px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out),
              opacity 0.25s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-btn:hover {
  background: none;
  color: #b6e05a;
  border-color: transparent;
  transform: scale(1.2);
  box-shadow: none;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  background: none;
  color: var(--green-light);
  border-color: transparent;
  box-shadow: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 44, 42, 0.18);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(44, 44, 42, 0.4);
}

.carousel-dot.active {
  background: var(--green-light);
  width: 26px;
  border-radius: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
  .campaign-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .campaigns-section {
    padding: 64px 0;
  }
  .campaigns-section .section-header h2 {
    font-size: 28px;
  }
  .campaigns-carousel-wrapper {
    padding: 0 10px;
    gap: 4px;
  }
  .campaign-card {
    flex: 0 0 100%;
    aspect-ratio: 4 / 3.2;
    min-height: unset;
  }
  .carousel-btn {
    width: 26px;
    height: 26px;
    font-size: 22px;
  }
  .campaign-card-overlay {
    padding: 20px 20px;
  }
  .campaign-card-title {
    font-size: 18px;
  }
}

/* ===== END CAMPAIGNS CAROUSEL ===== */

/* ===== "NEW!" badge for pricing features ===== */
.badge-new {
  display: inline-block;
  background: #9ACA3C;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-inline-end: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(154, 202, 60, 0.45);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  vertical-align: middle;
  line-height: 1.3;
}



.clients-subtitle {
  font-size: 16px;
  color: #5F5E5A;
  margin: 0;
  font-family: 'Google Sans', sans-serif;
}

/* העטיפה — direction: ltr קריטי לדף RTL */
.marquee-wrapper {
  overflow: hidden;
  direction: ltr;
  width: 100%;
  margin-bottom: 24px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.marquee-wrapper:last-of-type {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 8px 0;
  will-change: transform;
}

.track-left {
  animation: marquee-left 30s linear infinite;
}

.track-right {
  animation: marquee-right 30s linear infinite;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.client-logo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  display: block;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .clients-section { padding: 50px 0; }
  .clients-header h2 { font-size: 28px; }
  .client-logo {
    width: 110px;
    height: 110px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== END CLIENTS MARQUEE ===== */


/*
  CASE STUDY TEMPLATE - ניתן לשכפול
  לשימוש בקמפיינים אחרים:
  1. שנה את שמות התמונות
  2. שנה את הטקסט
  3. שנה את שם הקמפיין
*/
/* ===== CASE STUDY ===== */

/* ===== PHONE FLIP ANIMATION (project pages) ===== */

.phone-flip-wrapper {
  perspective: 800px;
  width: 300px;
  height: 620px;
  position: relative;
}

/* ===== Phone sticker badge (campaign pages) ===== */
.phone-flip-badge {
  position: absolute;
  bottom: 58px;
  left: -28px;
  width: 92px;
  height: 92px;
  background: #9ACA3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1e2c0a;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Google Sans', sans-serif;
  line-height: 1.4;
  padding: 10px;
  z-index: 5;
  pointer-events: none;
  transform: scale(0) rotate(-12deg);
  opacity: 0;
  box-shadow:
    0 4px 16px rgba(154,202,60,0.55),
    0 2px 6px rgba(0,0,0,0.35);
  will-change: transform, opacity;
}

@keyframes phone-flip-badge-pop {
  0%   { transform: scale(0)    rotate(-20deg); opacity: 0; }
  55%  { transform: scale(1.22) rotate(-6deg);  opacity: 1; }
  72%  { transform: scale(0.90) rotate(-14deg); opacity: 1; }
  85%  { transform: scale(1.07) rotate(-9deg);  opacity: 1; }
  100% { transform: scale(1)    rotate(-12deg); opacity: 1; }
}

.phone-flip-badge.is-visible {
  animation: phone-flip-badge-pop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .phone-flip-badge.is-visible {
    animation: none;
    transform: scale(1) rotate(-12deg);
    opacity: 1;
  }
}

.phone-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(180deg); /* show back on load — GSAP animates to 0 */
}

.phone-flip-front,
.phone-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.phone-flip-back {
  transform: rotateY(180deg);
  background: #1a1a1a;
  border-radius: 40px;
  border: 8px solid #333;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3), inset 0 0 0 2px #444;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-back-camera-area {
  position: absolute;
  top: 38px;
  left: 28px;
  background: #111;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.phone-back-camera-lens {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a3a, #080810);
  border: 3px solid #2a2a3a;
  box-shadow: 0 0 0 2px #3a3a4a, inset 0 0 10px rgba(80,120,255,0.2);
}

.phone-back-flash {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c8a84b;
  box-shadow: 0 0 8px rgba(200,168,75,0.5);
}

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

.phone-back-logo img {
  width: 120px;
  opacity: 0.82;
  filter: brightness(0) invert(1);
}

/* ===== END PHONE FLIP ANIMATION ===== */

.case-study-section {
  background: #FAF8F4;
  padding: 80px 40px;
}

.case-study-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  direction: rtl;
}

/* Phone-only variant (no text column) */
.case-study-section.is-phone-only .case-study-wrapper {
  grid-template-columns: 1fr;
  max-width: 600px;
}

/* ----- Phone mockup ----- */
.case-study-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 300px;
  height: 620px;
  background: #1a1a1a;
  border-radius: 40px;
  border: 8px solid #333;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.3),
    inset 0 0 0 2px #444;
  position: relative;
  padding: 0;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 20;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: 'Google Sans', sans-serif;
  direction: rtl;
}

/* Status bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 4px;
  background: rgba(0,0,0,0.8);
  direction: ltr;
  z-index: 15;
}

.status-time {
  color: white;
  font-size: 13px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
}

.status-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Story progress bars (13 — synced with images, 3s each, 39s cycle) */
.story-progress {
  display: flex;
  gap: 3px;
  padding: 6px 10px 4px;
  z-index: 15;
}

.story-progress .progress-bar {
  flex: 1;
  height: 2.5px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar .progress-fill {
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: right center;
  transform: scaleX(0);
}

.story-progress .progress-bar:nth-child(1)  .progress-fill { animation-delay: 0s;  }
.story-progress .progress-bar:nth-child(2)  .progress-fill { animation-delay: 3s;  }
.story-progress .progress-bar:nth-child(3)  .progress-fill { animation-delay: 6s;  }
.story-progress .progress-bar:nth-child(4)  .progress-fill { animation-delay: 9s;  }
.story-progress .progress-bar:nth-child(5)  .progress-fill { animation-delay: 12s; }
.story-progress .progress-bar:nth-child(6)  .progress-fill { animation-delay: 15s; }
.story-progress .progress-bar:nth-child(7)  .progress-fill { animation-delay: 18s; }
.story-progress .progress-bar:nth-child(8)  .progress-fill { animation-delay: 21s; }
.story-progress .progress-bar:nth-child(9)  .progress-fill { animation-delay: 24s; }
.story-progress .progress-bar:nth-child(10) .progress-fill { animation-delay: 27s; }
.story-progress .progress-bar:nth-child(11) .progress-fill { animation-delay: 30s; }
.story-progress .progress-bar:nth-child(12) .progress-fill { animation-delay: 33s; }
.story-progress .progress-bar:nth-child(13) .progress-fill { animation-delay: 36s; }
.story-progress .progress-bar:nth-child(14) .progress-fill { animation-delay: 39s; }

/* Per-count progress animations (cycle = N × 3s, visible 3s = 100/N %)
   Using longhand to preserve per-bar animation-delay set above. */
.case-study-section[data-count="7"]  .progress-fill { animation-name: progressFill7;  animation-duration: 21s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="8"]  .progress-fill { animation-name: progressFill8;  animation-duration: 24s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="9"]  .progress-fill { animation-name: progressFill9;  animation-duration: 27s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="13"] .progress-fill { animation-name: progressFill13; animation-duration: 39s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="14"] .progress-fill { animation-name: progressFill14; animation-duration: 42s; animation-timing-function: linear; animation-iteration-count: infinite; }

@keyframes progressFill7  { 0% { transform: scaleX(0); } 14.3% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
@keyframes progressFill8  { 0% { transform: scaleX(0); } 12.5% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
@keyframes progressFill9  { 0% { transform: scaleX(0); } 11.1% { transform: scaleX(1); } 100% { transform: scaleX(1); } }
@keyframes progressFill13 { 0% { transform: scaleX(0); } 7.7%  { transform: scaleX(1); } 100% { transform: scaleX(1); } }
@keyframes progressFill14 { 0% { transform: scaleX(0); } 7.1%  { transform: scaleX(1); } 100% { transform: scaleX(1); } }

/* Story header */
.story-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  z-index: 15;
}

.story-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid #fff;
  flex-shrink: 0;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.story-meta strong {
  font-size: 12px;
  font-weight: 700;
}

.story-meta span {
  font-size: 10px;
  opacity: 0.75;
}

.story-close {
  font-size: 16px;
  opacity: 0.9;
  padding-inline-start: 6px;
}

/* Story image stack with crossfade (13 images × 3s = 39s cycle) */
.story-stack {
  position: relative;
  flex: 1;
  overflow: hidden;
  margin: 4px 0 0;
  background: #000;
  cursor: zoom-in;
}

.story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

.story-img.s1  { animation-delay: 0s;  }
.story-img.s2  { animation-delay: 3s;  }
.story-img.s3  { animation-delay: 6s;  }
.story-img.s4  { animation-delay: 9s;  }
.story-img.s5  { animation-delay: 12s; }
.story-img.s6  { animation-delay: 15s; }
.story-img.s7  { animation-delay: 18s; }
.story-img.s8  { animation-delay: 21s; }
.story-img.s9  { animation-delay: 24s; }
.story-img.s10 { animation-delay: 27s; }
.story-img.s11 { animation-delay: 30s; }
.story-img.s12 { animation-delay: 33s; }
.story-img.s13 { animation-delay: 36s; }
.story-img.s14 { animation-delay: 39s; }

/* Per-count story animations (cycle = N × 3s, visibility ~= 3s)
   Using longhand to preserve per-image animation-delay set above. */
.case-study-section[data-count="7"]  .story-img { animation-name: storySwap7;  animation-duration: 21s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="8"]  .story-img { animation-name: storySwap8;  animation-duration: 24s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="9"]  .story-img { animation-name: storySwap9;  animation-duration: 27s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="13"] .story-img { animation-name: storySwap13; animation-duration: 39s; animation-timing-function: linear; animation-iteration-count: infinite; }
.case-study-section[data-count="14"] .story-img { animation-name: storySwap14; animation-duration: 42s; animation-timing-function: linear; animation-iteration-count: infinite; }

@keyframes storySwap7  { 0% { opacity: 0; } 1% { opacity: 1; } 13% { opacity: 1; } 14.3% { opacity: 0; } 100% { opacity: 0; } }
@keyframes storySwap8  { 0% { opacity: 0; } 1% { opacity: 1; } 11.5% { opacity: 1; } 12.5% { opacity: 0; } 100% { opacity: 0; } }
@keyframes storySwap9  { 0% { opacity: 0; } 1% { opacity: 1; } 10% { opacity: 1; } 11.1% { opacity: 0; } 100% { opacity: 0; } }
@keyframes storySwap13 { 0% { opacity: 0; } 1% { opacity: 1; } 7% { opacity: 1; } 8% { opacity: 0; } 100% { opacity: 0; } }
@keyframes storySwap14 { 0% { opacity: 0; } 1% { opacity: 1; } 6.5% { opacity: 1; } 7.1% { opacity: 0; } 100% { opacity: 0; } }

/* Pause animation on hover */
.phone-frame:hover .progress-fill,
.phone-frame:hover .story-img {
  animation-play-state: paused;
}

.phone-frame:hover { cursor: pointer; }

/* Story footer */
.story-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  position: relative;
  z-index: 15;
}

.story-input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 11px;
  opacity: 0.95;
}

.story-action {
  font-size: 18px;
  line-height: 1;
}

/* ----- Case Study text ----- */
.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
}

.case-study-tag {
  display: inline-block;
  background: #9ACA3C;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Google Sans', sans-serif;
  width: fit-content;
}

.case-study-title {
  font-size: 36px;
  font-weight: 800;
  color: #2C2C2A;
  margin: 0;
  line-height: 1.3;
  font-family: 'Google Sans', sans-serif;
}

.case-study-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: #9ACA3C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
  font-family: 'Google Sans', sans-serif;
}

.case-study-block p {
  font-size: 16px;
  color: #5F5E5A;
  line-height: 1.7;
  margin: 0;
  font-family: 'Google Sans', sans-serif;
}

.case-study-quote {
  background: white;
  border-right: 4px solid #9ACA3C;
  border-radius: 0 12px 12px 0;
  padding: 24px;
  position: relative;
}

.quote-mark {
  font-size: 48px;
  color: #9ACA3C;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.case-study-quote p {
  font-size: 16px;
  color: #2C2C2A;
  line-height: 1.7;
  margin: 0 0 12px 0;
  font-style: italic;
  font-family: 'Google Sans', sans-serif;
}

.quote-author {
  font-size: 14px;
  color: #9ACA3C;
  font-weight: 700;
  font-family: 'Google Sans', sans-serif;
}

.case-study-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9ACA3C;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Google Sans', sans-serif;
  transition: all 0.3s ease;
  width: fit-content;
}

.case-study-btn:hover {
  background: #7aaa2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154,202,60,0.3);
}

/* Mobile */
@media (max-width: 900px) {
  .case-study-section {
    padding: 60px 24px;
  }
  .case-study-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-study-content {
    order: 1;
  }
  .case-study-mockup {
    order: 0;
  }
  .case-study-title {
    font-size: 26px;
  }
  .phone-flip-wrapper {
    width: min(280px, 80vw);
    aspect-ratio: 300 / 620;
    height: auto;
  }
  .phone-flip-badge {
    width: 74px;
    height: 74px;
    left: -20px;
    bottom: 46px;
    font-size: 9.5px;
    padding: 8px;
  }
  .phone-flip-front .phone-frame {
    width: 100%;
    height: 100%;
  }
  .phone-frame {
    width: min(340px, 84vw);
    aspect-ratio: 340 / 700;
    height: auto;
  }
  .phone-frame::before {
    width: 30%;
    height: 24px;
  }
  .phone-status-bar {
    padding: 8px 18px 4px;
  }
  .status-time {
    font-size: 13px;
  }
  .status-icons {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-img,
  .progress-fill {
    animation: none;
  }
  .story-img.s1 { opacity: 1; }
  .story-progress .progress-bar:nth-child(1) .progress-fill { transform: scaleX(1); }
}

/* ===== END CASE STUDY ===== */


/* ===== VIDEOS SECTION ===== */

.videos-section {
  background: #111111;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(154,202,60,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(154,202,60,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.videos-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
  position: relative;
}

.videos-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid #9ACA3C;
  color: #9ACA3C;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.videos-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  font-family: 'Google Sans', sans-serif;
}

.videos-divider {
  width: 60px;
  height: 3px;
  background: #9ACA3C;
  margin: 0 auto 16px auto;
  border-radius: 2px;
}

.videos-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-family: 'Google Sans', sans-serif;
}

.videos-carousel-wrapper {
  position: relative;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.videos-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  direction: rtl;
  padding: 8px 0;
}

.videos-grid::-webkit-scrollbar { display: none; }

.video-card { scroll-snap-align: start; }

.video-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #1e1e1e;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(154,202,60,0.3);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85);
  display: block;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0,0,0,0.3);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #9ACA3C;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(154,202,60,0.4);
  animation: pulse-play 2s infinite;
}

.play-btn:hover {
  transform: scale(1.15);
  animation: none;
  box-shadow: 0 0 30px rgba(154,202,60,0.6);
}

@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0 rgba(154,202,60,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(154,202,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(154,202,60,0); }
}

.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(154,202,60,0.9);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Google Sans', sans-serif;
  backdrop-filter: blur(4px);
}

.video-info {
  padding: 18px 20px;
  direction: rtl;
}

.video-artist {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  font-family: 'Google Sans', sans-serif;
}

.video-song {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-family: 'Google Sans', sans-serif;
}

.video-carousel-btn {
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.6);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.video-carousel-prev { left: 4px; }
.video-carousel-next { right: 4px; }

.video-carousel-btn:hover {
  background: #9ACA3C;
  border-color: #9ACA3C;
  transform: translateY(-50%) scale(1.08);
}

.video-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}

/* Hover preview iframe — sits above the thumbnail, below overlay/badge */
.video-thumbnail .hover-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  z-index: 1;
  background: #000;
}

.video-overlay { z-index: 3; }
.video-badge { z-index: 4; }

.video-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.video-dot.active {
  background: #9ACA3C;
  width: 24px;
  border-radius: 4px;
}


@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .videos-section { padding: 60px 0; }
  .videos-header h2 { font-size: 28px; }
  .video-card { flex: 0 0 100%; }
  .videos-carousel-wrapper {
    padding: 0 12px;
    gap: 8px;
  }

}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal[aria-hidden="false"] {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.video-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 900px;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-light);
  gap: 12px;
}

.video-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.video-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--gray);
  transition: color 0.2s;
  flex-shrink: 0;
}

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

.video-modal-body {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

.video-modal-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-modal-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .video-modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .video-modal-header {
    padding: 12px 16px;
  }

  .video-modal-title {
    font-size: 16px;
  }

  .video-modal-body {
    padding: 12px;
  }
}

/* ===== END VIDEOS SECTION ===== */

/* ===== ACCESSIBILITY WIDGET ===== */

/* --- Effects applied to the whole page --- */
html.a11y-dark {
  filter: invert(1) hue-rotate(180deg);
  background: #fff;
}
/* Re-invert media so images/videos look normal in dark mode */
html.a11y-dark img,
html.a11y-dark video,
html.a11y-dark iframe,
html.a11y-dark .hero-animation,
html.a11y-dark .logo-animated,
html.a11y-dark [style*="background-image"] {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-contrast {
  filter: contrast(1.4);
}
html.a11y-dark.a11y-contrast {
  filter: invert(1) hue-rotate(180deg) contrast(1.4);
}
html.a11y-contrast a {
  text-decoration: underline;
}

html.a11y-no-anim *,
html.a11y-no-anim *::before,
html.a11y-no-anim *::after {
  animation: none !important;
  transition: none !important;
}
html.a11y-no-anim .hero-animation {
  display: none;
}

html.a11y-font-large {
  zoom: 1.18;
}

/* --- Floating toggle button --- */
.a11y-toggle {
  position: fixed;
  bottom: 100px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}
.a11y-toggle:hover {
  transform: scale(1.08);
  background: var(--green-dark);
}
.a11y-toggle svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* --- Panel --- */
.a11y-panel {
  position: fixed;
  bottom: 166px;
  left: 28px;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
  z-index: 1100;
  padding: 20px;
  direction: rtl;
  display: none;
}
.a11y-panel[aria-hidden="false"] {
  display: block;
  animation: a11ySlideIn 0.25s ease-out;
}
@keyframes a11ySlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.a11y-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.a11y-panel-header h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--charcoal);
}
.a11y-panel-close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray);
  padding: 4px;
}
.a11y-panel-close:hover { color: var(--charcoal); }

.a11y-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.a11y-option {
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.a11y-option:hover {
  background: #ecf3e0;
}
.a11y-option svg {
  width: 24px;
  height: 24px;
  fill: var(--green-dark);
}
.a11y-option.is-active {
  border-color: var(--green-light);
  background: #eaf3d8;
}

.a11y-reset {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  background: var(--charcoal);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.a11y-reset:hover {
  background: var(--green-dark);
}

@media (max-width: 768px) {
  .a11y-toggle { bottom: 96px; left: 18px; }
  .a11y-panel { bottom: 158px; left: 18px; width: calc(100vw - 36px); max-width: 300px; }
}
/* ===== END ACCESSIBILITY WIDGET ===== */

/* ============================================ */
/* HERO ANIMATED GRADIENT MESH                  */
/* שכבת רקע חיה: 3 כתמי צבע מטושטשים שנעים לאט */
/* ============================================ */

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

.hero-mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

/* כתם 1: ירוק-ליים גדול, פינה ימנית-עליונה */
.hero-mesh span:nth-child(1) {
  width: 55vw;
  height: 55vw;
  min-width: 480px;
  min-height: 480px;
  top: -22%;
  right: -14%;
  background: radial-gradient(circle, rgba(154,202,60,0.26) 0%, rgba(154,202,60,0.06) 45%, transparent 70%);
  animation: meshDriftA 26s ease-in-out infinite alternate;
}

/* כתם 2: ירוק כהה, פינה שמאלית-תחתונה */
.hero-mesh span:nth-child(2) {
  width: 44vw;
  height: 44vw;
  min-width: 380px;
  min-height: 380px;
  bottom: -20%;
  left: -12%;
  background: radial-gradient(circle, rgba(111,160,44,0.28) 0%, rgba(111,160,44,0.05) 50%, transparent 72%);
  animation: meshDriftB 32s ease-in-out infinite alternate;
}

/* כתם 3: הילה בהירה עדינה במרכז, "נושמת" */
.hero-mesh span:nth-child(3) {
  width: 34vw;
  height: 34vw;
  min-width: 300px;
  min-height: 300px;
  top: 28%;
  left: 38%;
  background: radial-gradient(circle, rgba(244,248,236,0.09) 0%, rgba(154,202,60,0.08) 40%, transparent 70%);
  animation: meshDriftC 22s ease-in-out infinite alternate;
}

@keyframes meshDriftA {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-6vw, 5vh) scale(1.12); }
  100% { transform: translate(3vw, -4vh) scale(0.95); }
}
@keyframes meshDriftB {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(5vw, -6vh) scale(1.10); }
  100% { transform: translate(-3vw, 3vh) scale(1.02); }
}
@keyframes meshDriftC {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate(4vw, 6vh) scale(1.18); opacity: 1; }
  100% { transform: translate(-5vw, -3vh) scale(0.92); opacity: 0.7; }
}

/* מובייל: טשטוש קל יותר (ביצועים) ובלי הכתם השלישי */
@media (max-width: 768px) {
  .hero-mesh span { filter: blur(60px); }
  .hero-mesh span:nth-child(3) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh span { animation: none; }
}
/* ===== END HERO ANIMATED GRADIENT MESH ===== */

/* ============================================ */
/* SERVICES BENTO GRID                          */
/* פריסה א-סימטרית: הכרטיס הראשון (קמפיינים)   */
/* גדול ובולט, השאר מסודרים סביבו               */
/* ============================================ */

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-auto-rows: 1fr;
  }

  /* כרטיס 1 — קמפיינים שלמים: גבוה, תופס 2 שורות */
  .services-grid .service-card:nth-child(1) {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    background: linear-gradient(160deg, #ffffff 0%, var(--green-tint) 55%, var(--green-soft) 100%);
    border-color: rgba(154, 202, 60, 0.35);
  }
  .services-grid .service-card:nth-child(1) .service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  .services-grid .service-card:nth-child(1) .service-icon svg {
    width: 34px;
    height: 34px;
  }
  .services-grid .service-card:nth-child(1) h3 {
    font-size: 26px;
  }
  .services-grid .service-card:nth-child(1) p {
    font-size: 17px;
    max-width: 320px;
    margin-inline: auto;
  }

  /* כרטיס 4 — מיתוג נקודתי: רחב, תופס 2 עמודות */
  .services-grid .service-card:nth-child(4) {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
/* ===== END SERVICES BENTO GRID ===== */

/* ============================================ */
/* FEATURED CAMPAIGN CARD                       */
/* כרטיס קמפיין מוביל רחב לפני קרוסלת הקמפיינים */
/* ============================================ */

.featured-campaign {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto 64px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(154, 202, 60, 0.22);
  text-decoration: none;
  transition: transform 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}

.featured-campaign:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 202, 60, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.featured-campaign-media {
  overflow: hidden;
  min-height: 340px;
}

.featured-campaign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.featured-campaign:hover .featured-campaign-media img {
  transform: scale(1.05);
}

.featured-campaign-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 48px 44px;
}

.featured-campaign-badge {
  display: inline-block;
  background: rgba(154, 202, 60, 0.15);
  color: var(--green-light);
  border: 1px solid rgba(154, 202, 60, 0.35);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.featured-campaign-info h3 {
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

.featured-campaign-info p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.featured-campaign-cta {
  color: var(--green-light);
  font-size: 17px;
  font-weight: 700;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-campaign:hover .featured-campaign-cta {
  gap: 14px;
}

/* מובייל: תמונה למעלה, טקסט מתחת */
@media (max-width: 800px) {
  .featured-campaign {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-bottom: 48px;
  }
  .featured-campaign-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .featured-campaign-info {
    padding: 28px 24px 32px;
    gap: 14px;
  }
  .featured-campaign-info p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-campaign,
  .featured-campaign-media img,
  .featured-campaign-cta {
    transition: none;
  }
  .featured-campaign:hover {
    transform: none;
  }
  .featured-campaign:hover .featured-campaign-media img {
    transform: none;
  }
}
/* ===== END FEATURED CAMPAIGN CARD ===== */

/* ============================================ */
/* CINEMATIC HERO EFFECTS                       */
/* זרקור עוקב עכבר + טקסטורת פילם + אותיות     */
/* ============================================ */

/* --- זרקור עוקב עכבר (מחשב בלבד) --- */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: radial-gradient(
    560px circle at var(--spot-x, 70%) var(--spot-y, 40%),
    rgba(154, 202, 60, 0.16) 0%,
    rgba(154, 202, 60, 0.05) 40%,
    transparent 65%
  );
}
.hero-spotlight.is-on { opacity: 1; }

@media (pointer: coarse) {
  .hero-spotlight { display: none; }
}

/* --- טקסטורת גרעין קולנועית --- */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

/* --- כותרת קינטית: כל אות עולה מלמטה בגל --- */
.kinetic-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(3deg);
  animation: kineticLetterUp 0.65s var(--ease-out) forwards;
}

@keyframes kineticLetterUp {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

html.a11y-no-anim .kinetic-letter {
  opacity: 1;
  transform: none;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .kinetic-letter { opacity: 1; transform: none; animation: none; }
}
/* ===== END CINEMATIC HERO EFFECTS ===== */

/* ============================================ */
/* 3D TILT CARDS                                */
/* כרטיסים שמטים את עצמם לעכבר + הבזק אור      */
/* ============================================ */

.tilt-enabled {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 62%
  );
  transform: translateX(var(--glare-x, -160%));
  opacity: 0;
}

.tilt-enabled:hover .tilt-glare { opacity: 1; }

@media (pointer: coarse) {
  .tilt-glare { display: none; }
}
/* ===== END 3D TILT CARDS ===== */

/* ============================================ */
/* PRELOADER - מסך פתיחה                        */
/* ============================================ */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, #050B07 0%, #0A1F12 60%, #0E2818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.preloader-welcome {
  color: #FFFFFF;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(16px);
  animation: preloaderLogoIn 0.7s 0.1s var(--ease-out) forwards;
}

.preloader-logo {
  width: min(52vw, 280px);
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.9);
  animation: preloaderLogoIn 0.9s 0.25s var(--ease-out) forwards;
}

@keyframes preloaderLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* חתיכות קונפטי לבנות — נוצרות ב-JS, מתפוצצות מהמרכז ונעלמות */
.confetti-piece {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
}

/* היציאה: הווילון עולה למעלה וחושף את האתר */
.preloader.is-done {
  transform: translateY(-101%);
}
/* ===== END PRELOADER ===== */

/* ============================================ */
/* CUSTOM CURSOR - נקודה + טבעת (מחשב בלבד)     */
/* ============================================ */

@media (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
  }
  .cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--green-light);
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(154, 202, 60, 0.55);
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
  }
  .cursor-ring.is-grown {
    width: 54px;
    height: 54px;
    border-color: rgba(154, 202, 60, 0.9);
  }
  .cursor-dot.is-active,
  .cursor-ring.is-active { opacity: 1; }

  html.a11y-no-anim .cursor-dot,
  html.a11y-no-anim .cursor-ring { display: none; }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
/* ===== END CUSTOM CURSOR ===== */

/* ============================================ */
/* STATUS PHONES - EDGE FADE                    */
/* פייד רך בקצוות במקום חיתוך חד של הטלפונים   */
/* ============================================ */

.sp-stage::before,
.sp-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.sp-stage::before {
  right: 0;
  background: linear-gradient(to left, #0a1a0a 0%, rgba(10, 26, 10, 0.65) 35%, transparent 100%);
}

.sp-stage::after {
  left: 0;
  background: linear-gradient(to right, #0a1a0a 0%, rgba(10, 26, 10, 0.65) 35%, transparent 100%);
}

@media (max-width: 640px) {
  .sp-stage::before,
  .sp-stage::after {
    width: 56px;
  }
}
/* ===== END STATUS PHONES EDGE FADE ===== */

/* ============================================ */
/* SERVICES STATIONS TIMELINE (מובייל)          */
/* קו תחנות שיורד עם הגלילה, כל שירות = תחנה   */
/* ============================================ */

.services-track,
.services-progress,
.station-dot {
  display: none;
}

@media (max-width: 899px) {
  .services-grid {
    position: relative;
    padding-right: 36px;
  }

  /* המסילה: קו אפרפר קבוע לכל האורך */
  .services-track {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 2px;
    border-radius: 2px;
    background: rgba(44, 44, 42, 0.12);
  }

  /* ההתקדמות: קו ירוק שגדל בזמן הגלילה */
  .services-progress {
    display: block;
    position: absolute;
    top: 0;
    right: 12px;
    width: 2px;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--green-light), var(--green-dark));
    box-shadow: 0 0 12px rgba(154, 202, 60, 0.5);
  }

  /* התחנה: עיגול על הקו ליד כל כרטיס */
  .station-dot {
    display: block;
    position: absolute;
    right: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid rgba(44, 44, 42, 0.25);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  .station-dot.is-reached {
    background: var(--green-light);
    border-color: var(--green-light);
    box-shadow: 0 0 0 5px rgba(154, 202, 60, 0.18);
  }

  /* הכרטיס "נדלק" כשהקו מגיע אליו */
  .service-card {
    transition: transform 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out),
                border-color 0.4s var(--ease-out),
                opacity 0.4s ease;
  }
  .service-card.station-waiting {
    opacity: 0.45;
  }
  .service-card.station-active {
    opacity: 1;
    border-color: rgba(154, 202, 60, 0.55);
    box-shadow: 0 8px 28px rgba(154, 202, 60, 0.16);
  }

  html.a11y-no-anim .service-card.station-waiting {
    opacity: 1;
  }
}
/* ===== END SERVICES STATIONS TIMELINE ===== */

