/*
Theme Name: Vectorr
Theme URI: https://vectorr.com.au
Author: Vectorr
Author URI: https://vectorr.com.au
Description: A premium dark block theme for Vectorr - design on demand, built for your business.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vectorr
*/

/* ============================================
   CUSTOM EASING CURVES
   ============================================ */

:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.wp-site-blocks > footer {
  margin-block-start: 0;
}

body {
  background-color: #0c2f29;
  color: #a7bcb9;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */

.text-accent {
  color: #c7f553;
}

.text-accent-italic {
  color: #c7f553;
  font-style: italic;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #6b908a;
}

.text-subtle {
  color: #4a6a62;
}

.uppercase-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4a6a62;
}

/* ============================================
   NAVBAR
   ============================================ */

.vectorr-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 47, 41, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 74, 64, 0.5);
  padding: 0 clamp(20px, 5vw, 180px);
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 300ms var(--ease-out);
}

/* Push navbar below WP admin bar when logged in */
.admin-bar .vectorr-navbar {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .vectorr-navbar {
    top: 46px;
  }
}

.vectorr-navbar.scrolled {
  background: rgba(12, 47, 41, 0.95);
}

.vectorr-navbar .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.vectorr-navbar .brand-logo {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #c7f553;
  text-decoration: none;
}

.vectorr-navbar .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vectorr-navbar .nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #a7bcb9;
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .vectorr-navbar .nav-links a:hover {
    color: #ffffff;
  }
}

.vectorr-navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.vectorr-navbar .login-link {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vectorr-navbar .login-link:hover {
  color: #c7f553;
}

.vectorr-navbar .cta-btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #0c2f29;
  background: #c7f553;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .vectorr-navbar .cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(199, 245, 83, 0.3);
  }
}

.vectorr-navbar .cta-btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* Mobile nav toggle */
.vectorr-navbar .mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vectorr-navbar .mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c7f553;
  margin: 5px 0;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

@media (max-width: 1024px) {
  .vectorr-navbar .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12, 47, 41, 0.98);
    flex-direction: column;
    padding: 20px 30px;
    gap: 16px;
    border-bottom: 1px solid rgba(26, 74, 64, 0.5);
  }
  .vectorr-navbar .nav-links.open {
    display: flex;
  }
  .vectorr-navbar .login-link {
    display: none;
  }
}

@media (max-width: 640px) {
  .vectorr-navbar .mobile-toggle {
    display: none;
  }

  .vectorr-navbar .nav-inner {
    grid-template-columns: auto 1fr;
  }

  .vectorr-navbar .nav-links {
    display: none !important;
  }

  .vectorr-navbar .nav-actions {
    justify-self: end;
  }

  .vectorr-navbar .login-link {
    display: inline-flex;
  }
}

/* ============================================
   SECTION BADGES
   ============================================ */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.12);
  border: 1px solid rgba(199, 245, 83, 0.2);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #c7f553;
  line-height: 18px;
}

.section-badge svg,
.section-badge .badge-icon {
  width: 12px;
  height: 12px;
  fill: #c7f553;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px 0;
  overflow: hidden;
  background: #000000;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 752px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}

.hero-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1.28px;
  margin: 0;
}

.hero-heading em {
  color: #c7f553;
  font-style: italic;
}

.hero-subtext {
  font-size: 18px;
  color: #a7bcb9;
  line-height: 1.6;
  max-width: 552px;
  margin: 0;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #0c2f29;
  background: #c7f553;
  border: none;
  border-radius: 999px;
  padding: 10px 27px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199, 245, 83, 0.3);
    color: #0c2f29;
  }
}

.btn-primary:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.btn-ghost {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  background: none;
  border: none;
  padding: 10px 1px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-ghost:hover {
  color: #c7f553;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #c7f553;
  background: transparent;
  border: 1px solid rgba(199, 245, 83, 0.3);
  border-radius: 999px;
  padding: 10px 27px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: rgba(199, 245, 83, 0.1);
    border-color: rgba(199, 245, 83, 0.5);
  }
}

.btn-outline:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* Social proof */
.social-proof {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.social-proof-title {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
}

.social-proof-title em {
  font-weight: 600;
  font-style: italic;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Hide duplicate logos on desktop — only needed for mobile marquee */
.brand-logo-dupe {
  display: none;
}

.brand-logos span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #6b908a;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 180px);
}

/* Tab switcher — mobile only */
.comparison-tabs {
  display: none;
}

@media (max-width: 640px) {
  .comparison-tabs {
    display: flex;
    align-items: center;
    background: #111f1c;
    border: 1px solid #1a3a34;
    border-radius: 14px;
    padding: 5px;
    gap: 0;
    margin: 0 0 24px;
    width: 100%;
  }

  .comp-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .comp-tab.active {
    background: #1a3a34;
  }

  .comp-tab span {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #6b908a;
    text-align: center;
    line-height: 1.3;
  }

  .comp-tab.active span {
    color: #ffffff;
    font-weight: 600;
  }

  .comp-tab img {
    opacity: 0.5;
  }

  .comp-tab.active img {
    opacity: 1;
  }
}

.comparison-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-section .section-header h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.comparison-section .section-header h2 em {
  color: #c7f553;
  font-style: italic;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.comparison-card {
  background: #111f1c;
  border: 1px solid rgba(199, 245, 83, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}

.comparison-card.highlighted {
  border-color: rgba(199, 245, 83, 0.3);
  background: linear-gradient(135deg, #154434 0%, #0f3028 100%);
  position: relative;
}

.comparison-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.comparison-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(199, 245, 83, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7f553;
  font-size: 20px;
  flex-shrink: 0;
}

.icon-box--card {
  background: #1a3a34 !important;
}

.icon-box--lime {
  background: rgba(199, 245, 83, 0.15) !important;
}

/* Best Value badge */
.best-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #c7f553;
  color: #0c2f29;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}

/* Cost section with top + bottom borders */
.cost-section {
  border-top: 1px solid #1a3a34;
  border-bottom: 1px solid #1a3a34;
  padding: 21px 0;
  margin-bottom: 20px;
}

.cost-section--lime {
  border-color: rgba(199, 245, 83, 0.15);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.72px;
  line-height: 1;
}

.price-amount--lime {
  color: #c7f553;
}

.currency {
  font-size: 14px;
  font-weight: 400;
  color: #6b908a;
  vertical-align: top;
  margin-top: 6px;
}

.currency--lime {
  color: #c7f553;
}

.period {
  font-size: 14px;
  font-weight: 400;
  color: #6b908a;
}

.price-note--bright {
  color: #a7bcb9 !important;
}

/* Performance section */
.performance-section {
  padding-top: 25px;
  margin-bottom: 20px;
}

.performance-section--lime {
  /* no border needed — cost-section bottom border acts as divider */
}

/* Drawbacks / Why It Works section */
.drawbacks-section {
  border-top: 1px solid #1a3a34;
  padding-top: 25px;
  margin-bottom: 20px;
}

.drawbacks-section--lime {
  border-color: rgba(199, 245, 83, 0.15);
}

/* Best for section */
.best-for-section {
  border-top: 1px solid #1a3a34;
  padding-top: 21px;
  margin-top: auto;
}

.best-for-box--lime {
  background: rgba(199, 245, 83, 0.06) !important;
  border: 1px solid rgba(199, 245, 83, 0.15) !important;
}

.best-for-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.best-for-label--lime {
  color: #4a6a62 !important;
  margin-bottom: 6px;
}

/* List icon boxes — rounded containers for drawback/benefit icons */
.list-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 7px;
  background: rgba(107, 144, 138, 0.08);
  flex-shrink: 0;
}

.list-icon-box--lime {
  background: rgba(199, 245, 83, 0.1);
}

.comparison-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.comparison-card .card-subtitle {
  font-size: 12px;
  color: #6b908a;
  margin: 2px 0 0;
}

.comparison-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.comparison-card .price .currency {
  font-size: 14px;
  font-weight: 400;
  color: #6b908a;
  vertical-align: top;
  margin-right: 4px;
}

.comparison-card .price .period {
  font-size: 14px;
  font-weight: 400;
  color: #6b908a;
}

.comparison-card .price-note {
  font-size: 12px;
  color: #4a6a62;
  margin: 0 0 24px;
}

.card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4a6a62;
  margin: 0 0 16px;
}

.performance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 12px;
}

.performance-row .label {
  color: #6b908a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.performance-row .value {
  font-weight: 600;
  color: #a7bcb9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meter-dots {
  display: inline-flex;
  gap: 3px;
}

.meter-dots .dot {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #1a3a34;
}

/* Dark cards: dim teal for active segments */
.comparison-card:not(.highlighted) .meter-dots .dot.active {
  background: #3a5a52;
}

/* Higher-score metrics on dark cards get brighter teal */
.comparison-card:not(.highlighted) .meter-dots .dot.dot--mid {
  background: #4a7a70;
}

/* Vectorr card: lime green segments */
.meter-dots--lime .dot {
  background: rgba(199, 245, 83, 0.15);
}

.meter-dots--lime .dot.active {
  background: #c7f553;
}

/* Value label colours for highlighted card */
.value--white {
  color: #ffffff !important;
}

.value--mid {
  color: #a7bcb9;
}

.drawback-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawback-list li {
  font-size: 13px;
  color: #6b908a;
  padding: 0;
  height: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawback-list li .icon {
  color: #6b908a;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  font-size: 13px;
  color: #ffffff;
  padding: 0;
  height: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-list li .icon {
  color: #c7f553;
  flex-shrink: 0;
  margin-top: 2px;
}

.best-for-box {
  margin-top: auto;
  background: rgba(26, 58, 52, 0.5);
  border-radius: 12px;
  padding: 16px;
}

.best-for-box.highlighted {
  background: rgba(199, 245, 83, 0.08);
  border: 1px solid rgba(199, 245, 83, 0.15);
}

.best-for-box .best-for-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4a6a62;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.best-for-box p {
  font-size: 13px;
  color: #a7bcb9;
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SERVICES / WHAT'S INCLUDED
   ============================================ */

/* ============================================
   WHAT'S INCLUDED DIVIDER HEADER
   ============================================ */

.whats-included-header {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto 48px;
}

.wi-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #0c2f29, #1a3a34);
}

.wi-divider:last-child {
  background: linear-gradient(90deg, #1a3a34, #0c2f29);
}

.wi-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #6b908a;
  white-space: nowrap;
  padding: 0 4px;
}

.services-section {
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 180px);
}

.services-section .section-header h2 em {
  color: #c7f553;
  font-style: italic;
}

/* Accordion — hidden on desktop */
.services-accordion {
  display: none;
}

.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-tab {
  padding: 12px 16px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b908a;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  height: 45px;
}

.service-tab:hover {
  color: #a7bcb9;
}

.service-tab.active {
  color: #ffffff;
  font-weight: 600;
  background: rgba(199, 245, 83, 0.06);
  border-left-color: #c7f553;
  border-radius: 10px;
}

/* Tab marker icon — visible only on active tab */
.tab-marker {
  display: none;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

.service-tab.active .tab-marker {
  display: inline-block;
}

.service-content-item {
  animation: fadeInTab 300ms var(--ease-out) both;
}

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

.service-content {
  background: linear-gradient(158deg, rgb(21, 68, 60) 0%, rgb(18, 57, 47) 100%);
  border: 1px solid #1a4a40;
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
}

.service-content .service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(199, 245, 83, 0.12);
  font-weight: 600;
  font-size: 12px;
  color: #c7f553;
  margin-right: 12px;
  vertical-align: middle;
}

.service-content h3 {
  display: inline;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  vertical-align: middle;
}

.service-content .service-desc {
  font-size: 14px;
  color: #a7bcb9;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.08);
  border: 1px solid rgba(199, 245, 83, 0.15);
  font-size: 12px;
  font-weight: 500;
  color: #c7f553;
}

.service-cta {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #c7f553;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-cta:hover {
    gap: 10px;
  }
}

/* ============================================
   PORTFOLIO / OUR WORK
   ============================================ */

.portfolio-section {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 180px);
}

.portfolio-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-section .section-header h2 {
  margin-top: 20px;
}

.portfolio-section .section-header h2 em {
  color: #c7f553;
  font-style: italic;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 0 40px;
}

.portfolio-card {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  background: #111f1c;
  border: 1px solid rgba(199, 245, 83, 0.08);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(199, 245, 83, 0.15);
  }
}

.portfolio-card:active {
  transform: scale(0.98);
  transition-duration: 100ms;
}

.portfolio-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-card:hover .card-image img {
    transform: scale(1.03);
  }
}

.portfolio-card .card-image .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(12, 47, 41, 0.7);
  border: 1px solid rgba(199, 245, 83, 0.2);
  font-size: 10px;
  font-weight: 600;
  color: #c7f553;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card .card-body {
  padding: 20px;
}

.portfolio-card .project-label {
  font-size: 11px;
  font-weight: 600;
  color: #c7f553;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.portfolio-card .project-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.portfolio-card .project-services {
  font-size: 12px;
  color: #6b908a;
  margin-bottom: 14px;
}

.portfolio-card .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-card .project-tags .tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.06);
  border: 1px solid rgba(199, 245, 83, 0.12);
  font-size: 11px;
  font-weight: 500;
  color: #c7f553;
}

.portfolio-card .project-tags .tag-more {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(26, 58, 52, 0.5);
  font-size: 11px;
  font-weight: 500;
  color: #6b908a;
}

/* Portfolio slider wrapper */
.portfolio-slider-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Card page transition */
.portfolio-card {
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out);
}

.portfolio-card.card-fade-out {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.portfolio-card.card-fade-in {
  animation: cardFadeIn 450ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* Slider navigation bar */
.portfolio-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 400px;
  margin: 32px auto 40px;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(199, 245, 83, 0.2);
  background: rgba(17, 31, 28, 0.8);
  color: #c7f553;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out), transform 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .slider-arrow:hover {
    background: rgba(199, 245, 83, 0.12);
    border-color: rgba(199, 245, 83, 0.35);
  }
}

.slider-arrow:active {
  transform: scale(0.93);
  transition-duration: 100ms;
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.slider-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.1);
  position: relative;
  overflow: hidden;
}

.slider-progress {
  height: 100%;
  border-radius: 999px;
  background: #c7f553;
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1), transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  left: 0;
  top: 0;
}

.slider-page-indicator {
  font-size: 12px;
  font-weight: 600;
  color: #6b908a;
  white-space: nowrap;
  min-width: 36px;
  text-align: center;
}

/* Your project CTA */
.your-project-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto 50px;
  padding: 24px 29px;
  background: transparent;
  border: 1px dashed #1f5a4e;
  border-radius: 18px;
}

.your-project-banner .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.your-project-banner .sparkle-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(199, 245, 83, 0.08);
  border: 1px solid rgba(199, 245, 83, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.your-project-banner h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.your-project-banner p {
  font-size: 12px;
  color: #6b908a;
  margin: 4px 0 0;
}

.cta-link-lime {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #c7f553;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.cta-link-lime:hover {
  opacity: 0.8;
}

/* Testimonial */
.testimonial-card {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(179deg, rgb(26, 85, 72) 1.6%, rgb(21, 68, 60) 98.5%);
  border: 1px solid rgba(199, 245, 83, 0.15);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  gap: 36px;
  align-items: center;
  overflow: hidden;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 200px;
  flex-shrink: 0;
}

.quote-icon {
  display: block;
  flex-shrink: 0;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a3a34;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.t-role {
  font-size: 13px;
  color: #6b908a;
  margin: 0;
}

.t-company {
  font-size: 13px;
  font-weight: 500;
  color: #c7f553;
  margin: 0;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonial-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, rgba(199, 245, 83, 0.15), rgba(199, 245, 83, 0));
  flex-shrink: 0;
}

.testimonial-quote {
  flex: 1;
  font-size: 18px;
  font-style: italic;
  color: #a7bcb9;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   PROCESS & FAQ SECTION
   ============================================ */

.process-faq-section {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 180px);
  background: transparent;
}

.process-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.process-side h2 {
  margin-top: 20px;
  margin-bottom: 40px;
}

.process-side h2 em {
  color: #c7f553;
  font-style: italic;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.process-step {
  background: rgba(17, 31, 28, 0.6);
  border: 1px solid rgba(26, 58, 52, 0.5);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(199, 245, 83, 0.1);
  border: 1px solid rgba(199, 245, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #c7f553;
  flex-shrink: 0;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.process-step p {
  font-size: 13px;
  color: #a7bcb9;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.faq-side h2 {
  margin-top: 20px;
  margin-bottom: 40px;
}

.faq-side h2 em {
  color: #c7f553;
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(17, 31, 28, 0.6);
  border: 1px solid rgba(26, 58, 52, 0.5);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms var(--ease-out);
}

.faq-item.open {
  border-color: rgba(199, 245, 83, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #c7f553;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(199, 245, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7f553;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 250ms var(--ease-out), background 250ms var(--ease-out), color 250ms var(--ease-out);
}

.faq-item.open .faq-toggle {
  background: #c7f553;
  color: #0c2f29;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out), padding 300ms var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 13px;
  color: #a7bcb9;
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 180px);
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section .section-header h2 {
  margin-top: 20px;
}

.pricing-section .section-header h2 em {
  color: #c7f553;
  font-style: italic;
}

/* Toggle + save badge wrapper */
/* Pricing tier tabs — mobile only */
.pricing-tier-tabs {
  display: none;
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

/* The pill toggle itself */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: #111f1c;
  border: 1px solid #1a3a34;
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  position: relative;
}

/* Sliding pill indicator */
.pricing-toggle .toggle-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: #c7f553;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), width 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}

.pricing-toggle button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 9px 22px;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: color 250ms var(--ease-out), font-weight 0ms;
  background: transparent;
  color: #6b908a;
}

.pricing-toggle button.active {
  color: #0c2f29;
  font-weight: 600;
}

/* Separate save badge pill */
.save-badge {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid rgba(107, 144, 138, 0.25);
  border-radius: 999px;
  background: rgba(107, 144, 138, 0.08);
  color: #4a6a62;
  white-space: nowrap;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), color 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.save-badge.active {
  border-color: rgba(199, 245, 83, 0.3) !important;
  background: rgba(199, 245, 83, 0.1) !important;
  color: #c7f553 !important;
  transform: scale(1.05);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto 40px;
  align-items: stretch;
}

.pricing-card {
  background: #111f1c;
  border: 1px solid rgba(199, 245, 83, 0.08);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(199, 245, 83, 0.3);
  background: linear-gradient(135deg, #154434 0%, #0f3028 100%);
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(199, 245, 83, 0.08);
}

/* Plan header: icon + name/desc side by side */
.pricing-card .plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
}

.pricing-card .plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card .plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1a3a34;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card .plan-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.pricing-card .plan-desc {
  font-size: 12px;
  color: #6b908a;
  margin: 0;
}

/* Price block with top/bottom border */
.pricing-card .price-block {
  padding: 15px 0;
  border-top: 1px solid #1a3a34;
  border-bottom: 1px solid #1a3a34;
  width: 100%;
  margin-bottom: 20px;
}

.pricing-card.featured .price-block {
  border-top-color: rgba(199, 245, 83, 0.15);
  border-bottom-color: rgba(199, 245, 83, 0.15);
}

.pricing-card .plan-price {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Price swap animation */
.pricing-card .plan-price.price-out {
  opacity: 0;
  transform: translateY(-10px);
}

.pricing-card .plan-price.price-in {
  animation: priceSlideIn 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.pricing-card .plan-price .small,
.pricing-card .plan-price .price-suffix {
  font-size: 13px;
  font-weight: 400;
  color: #6b908a;
}

.pricing-card .plan-note {
  font-size: 12px;
  color: #4a6a62;
  margin: 0 0 24px;
}

.pricing-card .hours-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
}

.pricing-card .hours-bar .hours-label {
  color: #a7bcb9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card .hours-bar .hours-value {
  color: #4a6a62;
  font-style: italic;
}

.pricing-card .hours-progress {
  height: 4px;
  background: rgba(26, 58, 52, 0.5);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.pricing-card .hours-progress .fill {
  height: 100%;
  background: #4a6a62;
  border-radius: 2px;
}

.pricing-card.featured .hours-progress .fill {
  background: #c7f553;
}

.pricing-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-card .feature-list li {
  font-size: 13px;
  color: #a7bcb9;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card .feature-list li .check {
  color: #c7f553;
  flex-shrink: 0;
}

/* Core feature list: rounded check containers */
.pricing-card .core-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

/* Divider between Core and Includes sections */
.pricing-card .card-section-divider {
  width: 100%;
  height: 1px;
  background: #1a3a34;
  margin: 20px 0 16px;
}

.pricing-card.featured .card-section-divider {
  background: rgba(199, 245, 83, 0.15);
}

.pricing-card .core-list li {
  padding: 0;
  gap: 10px;
  color: #ffffff;
  font-weight: 500;
}

.check-container {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 6px;
  background: rgba(107, 144, 138, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-core .check-container {
  background: rgba(199, 245, 83, 0.10);
}

.pricing-card .plan-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out);
}

.pricing-card .plan-cta:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

.pricing-card .plan-cta.primary {
  background: #c7f553;
  color: #0c2f29;
  border: none;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card .plan-cta.primary:hover {
    box-shadow: 0 8px 30px rgba(199, 245, 83, 0.3);
    transform: translateY(-1px);
  }
}

.pricing-card .plan-cta.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #1a3a34;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card .plan-cta.secondary:hover {
    background: rgba(26, 58, 52, 0.4);
  }
}

/* OR divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1240px;
  margin: 40px auto;
}

.or-line {
  flex: 1;
  height: 1px;
  min-width: 0;
}

.or-line-left {
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(26,58,52,0.6));
}

.or-line-right {
  background: linear-gradient(to right, rgba(26,58,52,0.6), rgba(255,255,255,0));
}

.or-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 24px;
  background: #111f1c;
  border: 1px solid #1a3a34;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #6b908a;
}

/* One-off project */
.one-off-section {
  max-width: 1240px;
  margin: 40px auto 0;
  background: #111f1c;
  border: 1px solid #1a3a34;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
}

.one-off-left {
  flex: 1;
  min-width: 0;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.one-off-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.one-off-badge span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b908a;
  letter-spacing: 0.8px;
}

.one-off-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 16px 0 12px;
  line-height: normal;
}

.one-off-desc {
  font-size: 14px;
  color: #6b908a;
  line-height: 1.5;
  margin: 0;
  max-width: 514px;
}

.one-off-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(199, 245, 83, 0.04);
  border-radius: 14px;
  padding: 10px 16px;
  margin-top: 28px;
}

.one-off-from {
  font-size: 11px;
  font-weight: 400;
  color: #6b908a;
}

.one-off-amount {
  font-size: 36px;
  font-weight: 700;
  color: #c7f553;
  line-height: 1;
}

.one-off-gst {
  font-size: 12px;
  color: #4a6a62;
}

.one-off-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  border: 1px solid #1a3a34;
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .one-off-cta:hover {
    background: rgba(26, 58, 52, 0.4);
  }
}

.one-off-cta:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}

/* Vertical gradient divider */
.one-off-divider {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  background: linear-gradient(180deg,
    rgba(74, 106, 98, 0) 0%,
    rgba(74, 106, 98, 0.5) 30%,
    rgba(74, 106, 98, 0.5) 70%,
    rgba(74, 106, 98, 0) 100%
  );
}

/* Right panel */
.one-off-right {
  padding-left: 36px;
  width: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.one-off-included-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4a6a62;
  letter-spacing: 1px;
  margin: 0;
}

.one-off-features-grid {
  display: flex;
  gap: 32px;
}

.one-off-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.one-off-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a7bcb9;
}

/* Pricing disclaimer */
.pricing-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #4a6a62;
  max-width: 800px;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */

.contact-section {
  padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 180px);
  background: #111f1c;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section .section-header h2 {
  margin-top: 20px;
}

.contact-section .section-header h2 em {
  color: #c7f553;
  font-style: italic;
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  background: #0c2f29;
  border-radius: 16px;
  padding: 21px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-info-card:hover {
  background: #0f3830;
}

.contact-info-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(199, 245, 83, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4a6a62;
  margin: 0 0 2px;
}

.contact-info-card .card-value {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

.contact-info-card .card-note {
  font-size: 12px;
  color: #4a6a62;
  margin: 2px 0 0;
}

.contact-info-card .arrow {
  margin-left: auto;
  color: #4a6a62;
  font-size: 16px;
}

/* Social links */
.social-section {
  margin-top: 16px;
}

.social-section .social-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a6a62;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0c2f29;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b908a;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    background: #0f3830;
    transform: translateY(-2px);
  }
}

.social-link:active {
  transform: scale(0.95);
  transition-duration: 100ms;
}

/* Contact form */
.contact-form-wrapper {
  background: #0c2f29;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}

.contact-form-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.contact-form-header p {
  font-size: 12px;
  color: #4a6a62;
  margin: 4px 0 0;
}

.form-header-divider {
  width: 100%;
  height: 1px;
  background: rgba(74, 106, 98, 0.2);
  flex-shrink: 0;
}

.accepting-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.08);
  border: 1px solid rgba(199, 245, 83, 0.15);
  font-size: 12px;
  font-weight: 500;
  color: #c7f553;
}

.accepting-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7f553;
}

/* Forminator styling overrides */

/* Strip Forminator's default chrome */
/* Hide the Forminator AJAX placeholder div (contains only <br>), show the real form */
.contact-form-wrapper div.forminator-custom-form {
  display: none !important;
}
.contact-form-wrapper form.forminator-custom-form {
  display: block !important;
}

.contact-form-wrapper .forminator-ui,
.contact-form-wrapper .forminator-custom-form {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 20px 32px 0 !important;
}

/* Row layout: Forminator renders cols inside rows — need flex + gap */
.contact-form-wrapper .forminator-row {
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  margin-top: 0 !important;
}

/* Col widths — all cols flex-grow equally; col-12 forces full width */
.contact-form-wrapper .forminator-col,
.contact-form-wrapper .forminator-col-6 {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  width: auto !important;
}
.contact-form-wrapper .forminator-col-12 {
  flex: 0 0 100% !important;
  width: 100% !important;
}

/* Field inner — full width */
.contact-form-wrapper .forminator-field {
  margin-bottom: 0 !important;
  width: 100% !important;
}

/* Submit row — extra top gap, no bottom */
.contact-form-wrapper .forminator-row-last,
.contact-form-wrapper .forminator-row:last-child {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

/* Labels — Forminator uses .forminator-label on the <label> element */
.contact-form-wrapper .forminator-label,
.contact-form-wrapper label.forminator-label,
.contact-form-wrapper .forminator-field label,
.contact-form-wrapper .forminator-field-text label,
.contact-form-wrapper .forminator-field-email label,
.contact-form-wrapper .forminator-field-textarea label,
.contact-form-wrapper .forminator-field-phone label,
.contact-form-wrapper .forminator-field-select label {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #4a6a62 !important;
  margin-bottom: 8px !important;
  display: block !important;
}

/* Inputs, selects, textareas */
.contact-form-wrapper .forminator-input,
.contact-form-wrapper .forminator-textarea,
.contact-form-wrapper .forminator-select select,
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="number"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100% !important;
  height: 48px !important;
  padding: 0 16px !important;
  background: #091e1a !important;
  border: none !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 14px !important;
  transition: box-shadow 0.2s ease !important;
  box-shadow: none !important;
}

/* Placeholders */
.contact-form-wrapper .forminator-input::placeholder,
.contact-form-wrapper .forminator-textarea::placeholder,
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Focus states */
.contact-form-wrapper .forminator-input:focus,
.contact-form-wrapper .forminator-textarea:focus,
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px rgba(199, 245, 83, 0.3) !important;
}

/* Textarea — taller and scrollable */
.contact-form-wrapper .forminator-textarea,
.contact-form-wrapper textarea {
  height: 120px !important;
  padding: 14px 16px !important;
  resize: vertical !important;
}

/* Submit button — Forminator outputs .forminator-button.forminator-button-submit */
.contact-form-wrapper .forminator-button-submit,
.contact-form-wrapper .forminator-button.forminator-button-submit,
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
  width: 100% !important;
  padding: 15px 24px !important;
  background: #c7f553 !important;
  color: #091e1a !important;
  border: none !important;
  border-radius: 12px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  height: auto !important;
  line-height: 1.4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* vectorr-submit-btn — custom class added via Forminator backend, sits directly on <button> */
button.vectorr-submit-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* Send icon — URL injected via vectorr_inline_css in functions.php */
button.vectorr-submit-btn::after {
  content: '' !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-image: var(--vectorr-send-icon) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  flex-shrink: 0 !important;
}

button.vectorr-submit-btn:hover {
  box-shadow: 0 8px 30px rgba(199, 245, 83, 0.25) !important;
  transform: translateY(-1px) !important;
  background: #c7f553 !important;
}

/* Mobile: stack form fields vertically */
@media (max-width: 640px) {
  .contact-form-wrapper .forminator-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .contact-form-wrapper .forminator-col,
  .contact-form-wrapper .forminator-col-6 {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-bottom: 14px !important;
  }
}

/* Error messages */
.contact-form-wrapper .forminator-error-message,
.contact-form-wrapper .forminator-field--error .forminator-error-message {
  color: #f87171 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}

/* Success message */
.contact-form-wrapper .forminator-response-output,
.contact-form-wrapper .forminator-success {
  background: rgba(199, 245, 83, 0.08) !important;
  border: 1px solid rgba(199, 245, 83, 0.2) !important;
  border-radius: 10px !important;
  color: #c7f553 !important;
  padding: 16px !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 14px !important;
}

/* ── Select2 custom dropdown ── */

/* Outer container — match input height/shape */
.contact-form-wrapper .select2-container {
  width: 100% !important;
  display: block !important;
}

.contact-form-wrapper .select2-container .select2-selection--single {
  height: 48px !important;
  background: #091e1a !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 16px !important;
  transition: box-shadow 0.2s ease !important;
}

.contact-form-wrapper .select2-container .select2-selection--single:focus,
.contact-form-wrapper .select2-container.select2-container--open .select2-selection--single {
  outline: none !important;
  box-shadow: 0 0 0 1px rgba(199, 245, 83, 0.3) !important;
}

/* Rendered text */
.contact-form-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  padding: 0 !important;
  flex: 1 !important;
}

/* Placeholder text */
.contact-form-wrapper .select2-container .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Custom arrow */
.contact-form-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  width: 28px !important;
  top: 0 !important;
  right: 10px !important;
  position: absolute !important;
}

.contact-form-wrapper .select2-container .select2-selection__arrow b {
  border-color: rgba(167, 188, 185, 0.7) transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
}

.contact-form-wrapper .select2-container--open .select2-selection__arrow b {
  border-color: transparent transparent rgba(167, 188, 185, 0.7) transparent !important;
  border-width: 0 4px 5px 4px !important;
}

/* Dropdown panel — appended to <body> by Select2, must be global */
.select2-dropdown {
  background: #0c2f29 !important;
  border: 1px solid rgba(26, 74, 64, 0.6) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
  overflow: hidden !important;
}

/* Option items */
.select2-results__option {
  font-family: 'Work Sans', sans-serif !important;
  font-size: 14px !important;
  color: #a7bcb9 !important;
  padding: 10px 16px !important;
  background: transparent !important;
}

.select2-results__option--highlighted,
.select2-results__option--highlighted.select2-results__option--selectable {
  background: rgba(199, 245, 83, 0.08) !important;
  color: #ffffff !important;
}

.select2-results__option--selected {
  background: rgba(199, 245, 83, 0.12) !important;
  color: #c7f553 !important;
}

/* Search box inside dropdown (if enabled) */
.select2-search--dropdown .select2-search__field {
  background: #091e1a !important;
  border: 1px solid rgba(26, 74, 64, 0.6) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 13px !important;
  padding: 8px 12px !important;
}

.select2-search--dropdown .select2-search__field:focus {
  outline: none !important;
  box-shadow: 0 0 0 1px rgba(199, 245, 83, 0.3) !important;
}

/* Radio & checkbox labels */
.contact-form-wrapper .forminator-radio label,
.contact-form-wrapper .forminator-checkbox label {
  color: #a7bcb9 !important;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}

.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 12px;
  color: #4a6a62;
}

.form-trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */

.vectorr-footer {
  background: #071613;
}

.footer-separator {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(74, 106, 98, 0.5) 30%, rgba(74, 106, 98, 0.5) 70%, transparent 100%);
}

.footer-copyright-border {
  height: 1px;
  width: 100%;
  background: rgba(74, 106, 98, 0.15);
}

/* ── Footer Main row ── */
.footer-main {
  display: flex;
  align-items: flex-start;
  padding: 60px 200px;
}

/* ── Brand column (477px fixed) ── */
.footer-brand {
  width: 477px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: block;
  line-height: 0;
}

.footer-taglines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-taglines p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #6b908a;
  line-height: normal;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(199, 245, 83, 0.04);
  align-self: flex-start;
}

.status-dot-outer {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c7f553;
}

.footer-status-badge span {
  font-size: 12px;
  font-weight: 500;
  color: #a7bcb9;
  white-space: nowrap;
}

/* ── Quick Links column (flex 1) ── */
.footer-links {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-label {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4a6a62;
  line-height: normal;
  white-space: nowrap;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links-row a {
  font-size: 13px;
  font-weight: 400;
  color: #6b908a;
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms var(--ease-out);
}

.footer-links-row a:hover {
  color: #c7f553;
}

/* ── Back to top column (167px fixed, right-aligned) ── */
.footer-back-to-top {
  width: 167px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-scroll-top {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0c2f29;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-scroll-top:hover {
  background: #0f3830;
  transform: translateY(-2px);
}

/* ── Copyright section ── */
.footer-copyright-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer-bar {
  padding: 21px 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 400;
  color: #3a5a52;
  line-height: normal;
  white-space: nowrap;
}

.footer-bar > span {
  color: #3a5a52;
}

.footer-credit-name {
  font-weight: 600;
  color: #c7f553;
}

/* ============================================
   PORTFOLIO MODAL
   ============================================ */

/* ============================================================
   PORTFOLIO MODAL v2 — stacked layout
   hero image → thumbnail strip → content panel
   ============================================================ */

/* Overlay */
.portfolio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 47, 41, 0.88);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms var(--ease-out), visibility 250ms var(--ease-out);
}

.portfolio-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal shell */
.portfolio-modal {
  background: #111f1c;
  border: 1px solid rgba(199, 245, 83, 0.15);
  border-radius: 20px;
  width: 920px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 24px 60px -8px rgba(0, 0, 0, 0.45);
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 300ms var(--ease-out), opacity 250ms var(--ease-out);
}

.portfolio-modal-overlay.active .portfolio-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ── Hero image ─────────────────────────────────────── */
.modal-hero {
  position: relative;
  height: 552px;
  flex-shrink: 0;
  overflow: hidden;
  background: #0c2f29; /* fallback until image loads */
}

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

/* Category badge — top left */
.modal-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12, 47, 41, 0.8);
  border: 1px solid rgba(199, 245, 83, 0.25);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #c7f553;
  text-transform: uppercase;
}

/* Close button — top right */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 47, 41, 0.8);
  border: 1px solid rgba(199, 245, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7bcb9;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
  background: rgba(12, 47, 41, 1);
}

/* Prev / Next arrows — centred on hero sides */
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(12, 47, 41, 0.75);
  border: 1px solid rgba(199, 245, 83, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7f553;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-arrow:hover {
  background: rgba(12, 47, 41, 1);
}

.modal-arrow-prev { left: 12px; }
.modal-arrow-next { right: 12px; }

/* Progress dots — bottom centre of hero */
.modal-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  align-items: center;
}

.modal-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(12, 47, 41, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.modal-dot.active {
  width: 22px;
  background: #c7f553;
}

/* ── Divider lines ──────────────────────────────────── */
.modal-divider-line {
  height: 1px;
  background: rgba(199, 245, 83, 0.08);
  flex-shrink: 0;
}

/* ── Thumbnail strip ────────────────────────────────── */
.modal-thumb-strip-wrap {
  background: #0e342d;
  padding: 11px 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.modal-thumb-strip {
  display: flex;
  gap: 8px;
  align-items: center;
}

.modal-thumb {
  width: 152px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(199, 245, 83, 0.12);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}

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

.modal-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.modal-thumb.active {
  border: 2px solid rgba(199, 245, 83, 0.75);
}

.modal-thumb.active .modal-thumb-overlay {
  display: none;
}

/* "+N more" tile */
.modal-thumb-more {
  background: #1a3a34;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(199, 245, 83, 0.6);
}

/* ── Content panel ──────────────────────────────────── */
.modal-content-panel {
  background: linear-gradient(180deg, #133730 0%, #0d2621 100%);
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

/* Title + tags row */
.modal-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* Tags */
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-shrink: 0;
}

.modal-tag-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(199, 245, 83, 0.1);
  border: 1px solid rgba(199, 245, 83, 0.2);
  font-size: 10px;
  font-weight: 500;
  color: #c7f553;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Services + description */
.modal-text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-services {
  font-size: 11px;
  color: #6b908a;
  letter-spacing: 0.1px;
  line-height: 1.45;
  margin: 0;
}

.modal-desc {
  font-size: 12px;
  color: #a7bcb9;
  line-height: 1.6;
  margin: 0;
}

/* CTA button */
.modal-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  margin-top: 8px;
  background: #c7f553;
  color: #0c2f29;
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.modal-cta-btn:hover {
  box-shadow: 0 8px 30px rgba(199, 245, 83, 0.3);
  transform: translateY(-1px);
}

/* ── Mobile overrides ───────────────────────────────── */
@media (max-width: 640px) {
  .portfolio-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .portfolio-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(40px);
  }

  .portfolio-modal-overlay.active .portfolio-modal {
    transform: translateY(0);
  }

  /* Shorter hero on mobile */
  .modal-hero { height: 200px; }

  /* Hide prev/next arrows on mobile — use swipe instead */
  .modal-arrow { display: none; }

  /* Smaller close button */
  .modal-close-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* Narrower thumbnails */
  .modal-thumb {
    width: 96px;
    height: 60px;
    border-radius: 8px;
  }

  .modal-thumb-strip-wrap {
    padding: 8px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-thumb-strip {
    flex-wrap: nowrap;
  }

  /* Content panel — title stacks above tags */
  .modal-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .modal-title { font-size: 20px; }

  .modal-content-panel {
    padding: 18px 20px 20px;
    gap: 12px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 300ms; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .comparison-cards,
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .process-faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  /* ── One-off project mobile ── */
  .one-off-section {
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
  }

  .one-off-left {
    width: 100%;
    padding: 36px 36px 32px;
  }

  .one-off-badge {
    margin-bottom: 12px;
  }

  .one-off-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .one-off-desc {
    font-size: 14px;
    margin-bottom: 0;
  }

  .one-off-price-box {
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .one-off-from {
    font-size: 11px;
    color: #6b908a;
  }

  .one-off-amount {
    font-size: 36px;
    font-weight: 700;
    color: #c7f553;
    line-height: 1;
  }

  .one-off-gst {
    font-size: 12px;
    color: #4a6a62;
  }

  .one-off-cta {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
  }

  .one-off-divider {
    display: none;
  }

  .one-off-right {
    width: 100%;
    padding: 28px 36px 36px;
    border-left: none;
    border-top: 1px solid rgba(74, 106, 98, 0.2);
  }

  .one-off-included-label {
    margin-bottom: 16px;
  }

  .one-off-features-grid {
    flex-direction: column;
    gap: 12px;
  }

  .one-off-col {
    gap: 12px;
  }

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

  .portfolio-modal {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-carousel {
    width: 100%;
  }

  .modal-main-image {
    height: 300px;
  }

  .modal-details {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .your-project-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-card {
    flex-direction: column;
    gap: 24px;
  }

  .testimonial-left {
    width: 100%;
  }

  .testimonial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(199, 245, 83, 0.15), rgba(199, 245, 83, 0));
    align-self: auto;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
    padding: 40px 24px;
  }

  .footer-bar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: normal;
  }

  /* ── Contact form header mobile ── */
  .contact-form-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 20px 16px;
  }

  .accepting-badge {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Trust badges stack vertically, centered ── */
  .form-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px 24px !important;
  }

  /* ── Footer nav stacks vertically, left aligned ── */
  .footer-main {
    align-items: flex-start;
    position: relative;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* ── Back to top: right aligned, bottom matches last nav item ── */
  .footer-back-to-top {
    position: absolute;
    bottom: 60px;
    right: 24px;
    width: auto;
    align-items: flex-end;
  }

  .one-off-features {
    grid-template-columns: 1fr;
  }

  /* ── Mobile Hero ── */
  .hero-section {
    height: 90vh;
    padding: 20px 20px 0;
    justify-content: center;
  }

  .hero-content {
    gap: 16px;
  }

  .hero-heading {
    font-size: 34px;
    letter-spacing: -0.5px;
    line-height: 1.1;
  }

  .hero-subtext {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ── Social proof pinned bottom ── */
  .social-proof {
    bottom: 32px;
  }

  .social-proof-title {
    font-size: 12px;
    margin-bottom: 12px;
  }

  /* ── Brand logos marquee ── */
  .brand-logos {
    width: 100vw;
    justify-content: flex-start;
  }

  .brand-logos-track {
    flex-wrap: nowrap;
    gap: 36px;
    padding: 0 20px;
    animation: logo-marquee 20s linear infinite;
    width: max-content;
  }

  .brand-logo-dupe {
    display: block;
  }

  /* ── Services accordion ── */
  .services-layout {
    display: none !important;
  }

  .services-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .svc-acc-item {
    border: 1px solid #1a3a34;
    border-radius: 16px;
    background: #0e1e1b;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  .svc-acc-item.open {
    background: linear-gradient(133deg, #15443c 0%, #12392f 100%);
    border-color: #1a4a40;
  }

  .svc-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 12px;
  }

  .svc-acc-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .svc-acc-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(107, 144, 138, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #6b908a;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .svc-acc-item.open .svc-acc-num {
    background: rgba(199, 245, 83, 0.12);
    color: #c7f553;
  }

  .svc-acc-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #6b908a;
    text-align: left;
    line-height: 1.3;
    transition: color 0.25s ease;
  }

  .svc-acc-item.open .svc-acc-title {
    color: #ffffff;
  }

  .svc-acc-chevron {
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
  }

  .svc-acc-item.open .svc-acc-chevron {
    transform: rotate(0deg);
  }

  .svc-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 16px;
  }

  .svc-acc-item.open .svc-acc-body {
    padding: 0 16px 16px;
  }

  .svc-acc-body .service-desc {
    font-size: 14px;
    color: #a7bcb9;
    line-height: 1.6;
    margin: 0 0 16px;
  }

  .svc-acc-body .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .svc-acc-body .service-tag {
    background: rgba(199, 245, 83, 0.08);
    border: 1px solid rgba(199, 245, 83, 0.12);
    border-radius: 999px;
    color: #c7f553;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
  }

  .svc-acc-body .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #c7f553;
    text-decoration: none;
  }

  /* ── Pricing tier tabs ── */
  .pricing-tier-tabs {
    display: flex;
    align-items: center;
    background: #111f1c;
    border: 1px solid #1a3a34;
    border-radius: 14px;
    padding: 5px;
    gap: 0;
    margin: 0 0 20px;
    width: 100%;
  }

  .pricing-tier-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 9px 8px;
    border-radius: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b908a;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
  }

  .pricing-tier-tab.active {
    background: #1a3a34;
    color: #ffffff;
    font-weight: 600;
  }

  /* Hide monthly/yearly toggle on mobile — tabs handle it */
  .pricing-toggle-wrapper {
    display: none;
  }

  /* ── Pricing card slider ── */
  .pricing-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .pricing-cards .pricing-card {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0;
    transform: translateX(-100%); /* default to Growth (index 1) */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ── Comparison card slider ── */
  .comparison-cards {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    max-width: 100% !important;
    gap: 0 !important;
    transition: none;
  }

  .comparison-card {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

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

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  /* Keep opacity fades for comprehension — remove movement only */
  .animate-on-scroll,
  .stagger-children > * {
    transform: none !important;
    transition: opacity 200ms ease !important;
  }
}
