/* Plus Jakarta Display (variable) */
@font-face {
  font-family: 'Plus Jakarta Display';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/plus-jakarta-sans:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Display';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/plus-jakarta-sans:vf@latest/latin-wght-italic.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Design variables — brand dark green: #193330 */
:root {
  --font-sans: 'Plus Jakarta Display', 'Plus Jakarta Sans', system-ui, sans-serif;
  --color-brand-dark: #193330;
  --color-brand-light: #F8FBF3;
  /* Sea green / lime accent */
  --color-brand-lime: #CFF940;
  --color-brand-sea-green: #CFF940;
  --color-brand-lime-hover: #b8e636;
  --color-brand-lime-rgb: 207, 249, 64;
  --color-brand-green: #193330;
  --color-brand-green-light: #2d524f;
  --color-brand-green-border: #254844;
  --color-brand-card: #193330;
  --color-brand-text-gray: #A2B2A9;
  --color-brand-green-rgb: 25, 51, 48;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-brand-light);
  color: var(--color-brand-dark);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
.navbar,
.btn,
.form-control,
input,
textarea,
button,
select {
  font-family: var(--font-sans);
}

/* Helper utilities */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom layout styling */
.text-brand-lime,
.text-brand-sea-green {
  color: var(--color-brand-lime) !important;
}
.bg-brand-lime,
.bg-brand-sea-green {
  background-color: var(--color-brand-lime) !important;
}
.text-brand-dark {
  color: var(--color-brand-dark) !important;
}
.bg-brand-dark {
  background-color: var(--color-brand-dark) !important;
}
.bg-brand-green {
  background-color: var(--color-brand-green) !important;
}
.text-brand-text-gray {
  color: var(--color-brand-text-gray) !important;
}
.bg-brand-card {
  background-color: var(--color-brand-card) !important;
}

/* Logo */
.site-logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-logo-footer {
  height: 36px;
  filter: brightness(1.15);
}

/* Navbar styles */
.navbar-custom {
  background-color: white;
  border-bottom: 1px solid #f1f3f2;
}
.nav-link-custom {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brand-dark) !important;
  transition: color 0.3s ease;
}
.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--color-brand-lime) !important;
}

/* Button Custom */
.btn-brand {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.btn-brand:hover {
  background-color: var(--color-brand-lime-hover);
  color: var(--color-brand-dark);
  transform: translateY(-1px);
}

.btn-brand-dark {
  background-color: var(--color-brand-dark);
  color: white;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  font-size: 15px;
}
.btn-brand-dark:hover {
  background-color: black;
  color: white;
  transform: translateY(-1px);
}

/* Hero section */
.hero-section {
  background-color: #000000;
  color: white;
  margin-top: 72px; /* Navbar height */
}

/* Services slider section */
.services-slider-section {
  background: #ffffff;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.services-swiper {
  width: 100%;
  overflow: visible;
  padding-left: max(1.5rem, calc((100vw - 80rem) / 2 + 1.5rem));
  padding-right: 0;
}

.services-swiper .swiper-wrapper {
  align-items: stretch;
}

.services-swiper .swiper-slide {
  width: 290px;
  height: auto;
}

@media (min-width: 576px) {
  .services-swiper .swiper-slide {
    width: 320px;
  }
}

@media (min-width: 768px) {
  .services-swiper .swiper-slide {
    width: 345px;
  }
}

.service-card-custom {
  background-color: var(--color-brand-card);
  border: 1px solid var(--color-brand-green-border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
  cursor: grab;
  user-select: none;
}

.service-card-custom:active {
  cursor: grabbing;
}

.service-card-custom:hover {
  border-color: rgba(var(--color-brand-lime-rgb), 0.35);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(var(--color-brand-lime-rgb), 0.55) 0%,
    rgba(var(--color-brand-lime-rgb), 0.28) 28%,
    rgba(var(--color-brand-lime-rgb), 0.08) 48%,
    transparent 68%
  );
  opacity: 0;
  transform: scale(0.75);
  transform-origin: 100% 100%;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.service-card-custom:hover .service-card-glow {
  opacity: 1;
  transform: scale(1);
}

.service-card-body,
.service-card-footer,
.service-card-accent-line {
  position: relative;
  z-index: 1;
}

.service-card-body {
  flex-grow: 1;
}

.service-card-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.35s ease;
}

.service-card-custom:hover .service-card-title {
  color: var(--color-brand-lime);
}

.service-card-subtitle {
  color: var(--color-brand-text-gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  transition: color 0.35s ease;
}

.service-card-accent-line {
  width: 48px;
  height: 1px;
  background-color: rgba(var(--color-brand-green-rgb), 0.45);
  margin-bottom: 32px;
}

.service-card-btn {
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card-btn:hover {
  background-color: var(--color-brand-lime);
  color: #000000;
}

/* Legacy scroll slider (services page) */
.services-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  cursor: grab;
  scroll-snap-type: x mandatory;
}

.services-slider-container:active {
  cursor: grabbing;
}

.services-slider-container .service-card-custom {
  width: 345px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* Floating animation stats badges */
.floating-stat-badge {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  z-index: 20;
}

/* Service Tiers Pricing card */
.pricing-card-custom {
  background: linear-gradient(180deg, white 0%, white 70%, rgba(var(--color-brand-lime-rgb), 0.1) 100%);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Testimonial card */
.testimonial-card-light {
  background-color: rgba(var(--color-brand-lime-rgb), 0.05);
  border: 1px solid rgba(var(--color-brand-lime-rgb), 0.15);
  color: var(--color-brand-dark);
}
.testimonial-card-dark {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-dark) 100%);
  border: 1px solid var(--color-brand-green-light);
  color: white;
}

/* Tools badges */
.tool-icon-box {
  width: 64px;
  height: 64px;
  background-color: #f8fbf3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  transition: all 0.3s ease;
}
.tool-item-box:hover .tool-icon-box {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
  box-shadow: 0 10px 25px rgba(var(--color-brand-lime-rgb), 0.3);
  transform: translateY(-4px);
}
.tool-item-box span {
  color: #6c757d;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.tool-item-box:hover span {
  color: var(--color-brand-dark);
}

/* Layout utilities */
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-padding-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-brand-green-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Hero */
.hero-section {
  padding-top: 7rem !important;
  padding-bottom: 4rem !important;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle {
  font-size: 1.1rem;
  max-width: 44rem;
  line-height: 1.7;
}
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-brand-lime);
  color: black;
  padding: 8px 24px 8px 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.hero-cta-btn:hover {
  background-color: var(--color-brand-lime-hover);
  color: black;
}
.hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: black;
  color: var(--color-brand-lime);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Platform logos */
.platform-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}
.hero-platform-logos .platform-logo {
  height: 30px;
}
.platform-logo-box {
  height: 22px;
}
.platform-logo-dark-bg {
  height: 24px;
  border-radius: 6px;
}
.platform-icon-box:has(.platform-logo) {
  padding: 10px 16px;
}

/* Avatar stack */
.avatar-stack {
  display: flex;
  margin-left: 12px;
}
.avatar-stack-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid black;
  overflow: hidden;
  margin-left: -12px;
  background: #6c757d;
}
.avatar-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-stack-count {
  background: white;
  color: var(--color-brand-dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-stack-sm .avatar-stack-item {
  width: 40px;
  height: 40px;
}

/* Slider nav */
.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  background: transparent;
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-nav-btn:hover {
  background: var(--color-brand-dark);
  color: white;
  border-color: var(--color-brand-dark);
}

/* Client logos */
.client-logos-section {
  background: #ffffff;
  padding: 4rem 0 4.5rem;
  border-bottom: 1px solid rgba(25, 51, 48, 0.06);
}

.client-logos-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-dark);
  letter-spacing: normal;
  line-height: 1.5;
  margin-bottom: 2.75rem;
}

.client-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
  width: 100%;
}

.client-logo-img {
  height: auto;
  max-height: 52px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .client-logos-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .client-logo-img {
    max-height: 56px;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .client-logos-label {
    font-size: 19px;
  }

  .client-logo-img {
    max-height: 60px;
  }
}

/* About intro */
.about-intro-section {
  background: #FCFFF2;
  padding: 5rem 0 5.5rem;
}

.about-intro-heading {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--color-brand-dark);
  line-height: 1.35;
  text-align: center;
  max-width: 92%;
  margin: 0 auto 3.5rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-side-text {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5653;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.about-portrait-card {
  width: 100%;
  max-width: 340px;
}

.about-portrait-stylized {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.about-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-studio-card {
  width: 100%;
  max-width: 375px;
}

.about-studio-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 375 / 320;
}

.about-center-caption {
  font-size: 14px;
  line-height: 1.65;
  color: #4a5653;
  text-align: center;
  max-width: 340px;
  margin: 1.25rem auto 0;
}

.about-wall-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.about-wall-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid #d8ded9;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-dark);
}

.about-fame-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 1rem;
  align-items: start;
}

.about-fame-stat {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-fame-number {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-brand-dark);
  letter-spacing: -0.02em;
}

.about-fame-label {
  font-size: 14px;
  font-weight: 500;
  color: #5f6b68;
  line-height: 1.3;
}

.about-fame-tags {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.about-fame-tags-bottom {
  grid-column: 1;
  grid-row: 2;
}

.about-fame-stat-bottom {
  grid-column: 2;
  grid-row: 2;
  align-items: flex-start;
}

.about-skill-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-skill-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

.about-skill-dot-ux {
  background: var(--color-brand-lime);
}

.about-skill-dot-dev {
  background: #f0a89e;
}

.about-skill-dot-brand {
  background: var(--color-brand-dark);
}

.about-skill-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.about-skill-tag-ux {
  background: var(--color-brand-lime);
  color: var(--color-brand-dark);
}

.about-skill-tag-dev {
  background: #f0a89e;
  color: #ffffff;
}

.about-skill-tag-brand {
  background: var(--color-brand-dark);
  color: #ffffff;
}

@media (min-width: 992px) {
  .about-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2rem 2.5rem;
  }

  .about-col-center {
    margin-top: -1.5rem;
  }

  .about-col-right {
    padding-top: 0.25rem;
  }
}

@media (max-width: 991px) {
  .about-wall-wrap {
    justify-content: center;
  }

  .about-fame-board {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-portrait-card {
    margin: 0 auto;
  }
}

/* Tools */
.tools-section {
  background: white;
  border-top: 1px solid #f1f3f2;
  border-bottom: 1px solid #f1f3f2;
}
.tools-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 2.5rem;
}
.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.tool-item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Portfolio */
.portfolio-subtitle {
  max-width: 42rem;
  font-size: 1.05rem;
}
.portfolio-feature-card {
  background: var(--color-brand-lime);
  border-radius: 40px;
  padding: 2rem;
  border: 1px solid rgba(var(--color-brand-lime-rgb), 0.5);
  box-shadow: 0 20px 50px rgba(var(--color-brand-lime-rgb), 0.2);
}
@media (min-width: 768px) {
  .portfolio-feature-card { padding: 4rem; }
}
.portfolio-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(var(--color-brand-green-rgb), 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.portfolio-image {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}
.portfolio-image-wrap:hover .portfolio-image {
  transform: scale(1.05);
}
.portfolio-badge {
  display: inline-block;
  background: var(--color-brand-dark);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.portfolio-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-brand-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.portfolio-desc {
  color: rgba(var(--color-brand-green-rgb), 0.85);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.portfolio-tag {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(var(--color-brand-green-rgb), 0.18);
  color: var(--color-brand-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 50px;
}

/* Service tiers */
.service-tiers-section {
  background: white;
  border-top: 1px solid #f1f3f2;
}
.service-tiers-subtitle {
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.service-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .service-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-card-custom:not(:last-child) {
    border-right: 1px solid #e9ecef;
  }
}
.tier-badge {
  background: var(--color-brand-lime);
  color: var(--color-brand-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.tier-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-brand-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.tier-desc {
  color: #6c757d;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}
.tier-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-brand-green);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}
.tier-cta-pill:hover {
  background: var(--color-brand-dark);
  color: white;
}
.tier-cta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-lime);
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: #f0f4e3;
  padding: 5rem 0 5rem;
}

.testimonials-main-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a2e1f;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.testi-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .testi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testi-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Base card ── */
.testi-card {
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-card--light {
  background: #dde8a8;
}

.testi-card--featured {
  background: radial-gradient(ellipse at 75% 15%, #7dc95e 0%, #1e4d2b 45%, #0c2616 100%);
}

/* ── Headline ── */
.testi-headline {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.testi-card--light .testi-headline    { color: #1a2e1f; }
.testi-card--featured .testi-headline { color: #c8f04a; }

/* ── Quote ── */
.testi-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}

.testi-card--light .testi-quote          { color: #3d5240; }
.testi-card--light .testi-quote strong   { color: #1a2e1f; font-weight: 700; }
.testi-card--featured .testi-quote       { color: rgba(255,255,255,0.9); }
.testi-card--featured .testi-quote strong { color: #fff; font-weight: 700; }

/* ── Author ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: auto;
}

.testi-card--featured .testi-author {
  border-top-color: rgba(255,255,255,0.12);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c5d48a;
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.testi-role {
  font-size: 0.75rem;
  margin-top: 2px;
}

.testi-card--light .testi-name   { color: #1a2e1f; }
.testi-card--light .testi-role   { color: #6a7f6e; }
.testi-card--featured .testi-name { color: #fff; }
.testi-card--featured .testi-role { color: rgba(255,255,255,0.55); }





/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: #ffffff;
}

.cta-subtitle {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

/* Buttons */
.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a2e24;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  transition: opacity 0.2s ease;
}
.btn-cta-dark:hover {
  opacity: 0.88;
  color: #ffffff;
}

.btn-cta-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3ab549;   /* WhatsApp green */
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  transition: opacity 0.2s ease;
}
.btn-cta-green:hover {
  opacity: 0.88;
  color: #ffffff;
}

/* ── CTA platform icons ── */
.platform-icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 12px 14px;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.platform-icon-box:hover {
  border-color: #b0c8b8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* LinkedIn gradient border highlight */
.platform-icon-box--highlight {
  position: relative;
  border: none;
  background: white;
  isolation: isolate;
}

.platform-icon-box--highlight::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(160deg, #a8d878 0%, #4caf70 40%, #f5fce8 100%);
  z-index: -1;
}

.platform-icon-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-section {
  background: #0f2318;  /* deep dark green from Figma */
  color: white;
  overflow: hidden;
}

/* Replace these two rules in your contact CSS */

.contact-image-col {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 90%, rgba(74,180,100,0.25) 0%, transparent 70%),
              #0f2318;
}

.contact-profile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: absolute;
  inset: 0;
}
/* Right form column */
.contact-form-col {
  padding: 3.5rem 2.5rem;
}

@media (min-width: 992px) {
  .contact-form-col {
    padding: 4rem 4rem 4rem 3rem;
  }
  .contact-image-col {
    min-height: 600px;
  }
}

.contact-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* ── Contact inputs ── */
.contact-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-input:focus {
  outline: none;
  border-color: rgba(200, 240, 74, 0.6);   /* lime tint on focus */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.contact-textarea {
  resize: none;
  min-height: 110px;
}

/* ── Services checkboxes ── */
.contact-services-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.85rem;
}

.contact-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-bottom: 0.5rem;
}

@media (max-width: 575px) {
  .contact-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  line-height: 1.3;
}

.contact-checkbox-label:hover {
  color: #ffffff;
}

/* Custom styled checkbox to match Figma */
.contact-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-checkbox:hover {
  border-color: rgba(200, 240, 74, 0.7);
}

.contact-checkbox:checked {
  background: #c8f04a;
  border-color: #c8f04a;
}

.contact-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #0f2318;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
/* Buttons */
.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c8f04a;   /* bright lime-yellow from Figma */
  color: #0f2318;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-contact-submit:hover {
  background: #b8e03a;
}

.btn-contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-contact-whatsapp:hover {
  background: #1db954;
  color: #ffffff;
}
/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
#services,
#about,
#portfolio,
#testimonials,
#contact {
  scroll-margin-top: 88px;
}
