/* ── CSS Variables ─────────────────────────────────── */
:root {
   --green: #2E7D5A;
   --green-d: #1f5c41;
   --green-l: #3a9b6f;
   --yellow: #F2B632;
   --yellow-l: #fdd16a;
   --white: #FFFFFF;
   --off-white: #F9F7F4;
   --charcoal: #1A1A1A;
   --gray: #6b6b6b;
   --light-gray: #e8e4df;
   --card-bg: #fafaf8;
   --radius: 16px;
   --radius-sm: 8px;
   --shadow: 0 8px 40px rgba(26, 26, 26, .10);
   --shadow-lg: 0 20px 80px rgba(26, 26, 26, .15);
   --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ──────────────────────────────────── */
*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0
}

html {
   scroll-behavior: smooth;
   font-size: 16px;
   overflow-x: hidden;
   width: 100%;
}

body {
   font-family: 'DM Sans', sans-serif;
   color: var(--charcoal);
   background: var(--white);
   overflow-x: hidden;
   width: 100%;
   line-height: 1.65
}

img {
   max-width: 100%;
   display: block
}

a {
   text-decoration: none;
   color: inherit
}

ul {
   list-style: none
}

button {
   cursor: pointer;
   border: none;
   background: none;
   font-family: inherit
}

input,
select,
textarea {
   font-family: inherit
}

/* ── Typography ────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
   font-family: 'Cormorant Garamond', serif;
   line-height: 1.1;
   letter-spacing: -0.01em
}

h1 {
   font-size: clamp(3rem, 7vw, 6rem);
   font-weight: 600
}

h2 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   font-weight: 600
}

h3 {
   font-size: clamp(1.3rem, 2.5vw, 1.8rem);
   font-weight: 500
}

h4 {
   font-size: 1.15rem;
   font-weight: 600;
   font-family: 'DM Sans', sans-serif
}

p {
   font-size: clamp(.9rem, 1.2vw, 1rem);
   color: var(--gray);
   line-height: 1.75
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
   display: inline-flex;
   align-items: center;
   gap: .5rem;
   padding: .85rem 2rem;
   border-radius: 50px;
   font-size: .875rem;
   font-weight: 600;
   letter-spacing: .04em;
   text-transform: uppercase;
   transition: var(--transition)
}

.btn-primary {
   background: var(--green);
   color: #fff
}

.btn-primary:hover {
   background: var(--green-d);
   transform: translateY(-2px);
   box-shadow: 0 12px 30px rgba(46, 125, 90, .35)
}

.btn-outline {
   background: transparent;
   color: var(--charcoal);
   border: 1.5px solid var(--charcoal)
}

.btn-outline:hover {
   background: var(--charcoal);
   color: #fff;
   transform: translateY(-2px)
}

.btn-white {
   background: #fff;
   color: var(--charcoal)
}

.btn-white:hover {
   background: var(--yellow);
   color: var(--charcoal);
   transform: translateY(-2px)
}

.btn-yellow {
   background: var(--yellow);
   color: var(--charcoal)
}

.btn-yellow:hover {
   background: var(--yellow-l);
   transform: translateY(-2px);
   box-shadow: 0 12px 30px rgba(242, 182, 50, .4)
}

/* ── Shared Layout ─────────────────────────────────── */
.container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 2.5rem
}

.section {
   padding: 7rem 0
}

.section-label {
   font-size: .75rem;
   font-weight: 600;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--green);
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: .6rem
}

.section-label::before {
   content: '';
   display: inline-block;
   width: 2rem;
   height: 2px;
   background: var(--green)
}

.section-title {
   margin-bottom: 1.5rem;
   color: var(--charcoal)
}

.section-subtitle {
   font-size: 1.05rem;
   color: var(--gray);
   max-width: 560px;
   line-height: 1.75
}

/* ── Scroll Animations ─────────────────────────────── */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
   opacity: 1;
   transform: none
}

.reveal-left {
   opacity: 0;
   transform: translateX(-50px);
   transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal-left.visible {
   opacity: 1;
   transform: none
}

.reveal-right {
   opacity: 0;
   transform: translateX(50px);
   transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal-right.visible {
   opacity: 1;
   transform: none
}

/* ════════════════════════════════════════════════════
   MARQUEE / FLOWING ANIMATION
═══════════════════════════════════════════════════ */
.marquee-wrap {
   background: var(--green-d);
   padding: 14px 0;
   overflow: hidden;
   position: relative
}

.marquee-wrap::before,
.marquee-wrap::after {
   content: '';
   position: absolute;
   top: 0;
   bottom: 0;
   width: 60px;
   z-index: 2;
   pointer-events: none
}

.marquee-wrap::before {
   left: 0;
   background: linear-gradient(to right, var(--green-d), transparent)
}

.marquee-wrap::after {
   right: 0;
   background: linear-gradient(to left, var(--green-d), transparent)
}

.marquee-track {
   display: flex;
   gap: 0;
   animation: marqueeScroll 30s linear infinite;
   width: max-content
}

.marquee-item {
   display: inline-flex;
   align-items: center;
   gap: 1.4rem;
   padding: 0 1.8rem;
   font-size: .7rem;
   font-weight: 600;
   letter-spacing: .16em;
   text-transform: uppercase;
   color: var(--off-white);
   white-space: nowrap;
   flex-shrink: 0
}

.marquee-dot {
   width: 6px;
   height: 6px;
   background: var(--yellow);
   border-radius: 50%;
   flex-shrink: 0
}

@keyframes marqueeScroll {
   0% {
      transform: translateX(0)
   }

   100% {
      transform: translateX(-50%)
   }
}

/* ════════════════════════════════════════════════════
   1. NAVIGATION
═══════════════════════════════════════════════════ */
#navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 1.5rem 0;
   transition: background .4s ease, padding .4s ease, box-shadow .4s ease
}

#navbar.scrolled {
   background: rgba(255, 255, 255, .97);
   backdrop-filter: blur(20px);
   padding: .9rem 0;
   box-shadow: 0 2px 30px rgba(0, 0, 0, .08)
}

.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between
}

.logo {
   display: flex;
   align-items: center;
   gap: .7rem
}

.logo-mark {
   width: auto;
   display: flex;
   align-items: center;
   justify-content: center;
}

.logo-text {
   display: flex;
   flex-direction: column;
   line-height: 1
}

.logo-text span:first-child {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.25rem;
   font-weight: 700;
   color: var(--charcoal);
   letter-spacing: .02em
}

.logo-text span:last-child {
   font-size: .6rem;
   font-weight: 600;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: var(--green)
}

#navbar:not(.scrolled) .logo-text span:first-child {
   color: #fff
}

#navbar:not(.scrolled) .logo-text span:last-child {
   color: var(--yellow)
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 2.5rem
}

.nav-links a {
   font-size: .8rem;
   font-weight: 500;
   letter-spacing: .06em;
   text-transform: uppercase;
   color: var(--charcoal);
   position: relative;
   transition: color .3s
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   width: 0;
   height: 1.5px;
   background: var(--green);
   transition: width .35s cubic-bezier(.22, 1, .36, 1)
}

.nav-links a:hover {
   color: var(--green)
}

.nav-links a:hover::after {
   width: 100%
}

#navbar:not(.scrolled) .nav-links a {
   color: rgba(255, 255, 255, .85)
}

#navbar:not(.scrolled) .nav-links a:hover {
   color: #fff
}

#navbar:not(.scrolled) .nav-links a::after {
   background: #fff
}

.nav-cta {
   padding: .65rem 1.5rem;
   font-size: .75rem
}

#navbar:not(.scrolled) .nav-cta {
   background: rgba(255, 255, 255, .15);
   border: 1px solid rgba(255, 255, 255, .4);
   color: #fff
}

#navbar:not(.scrolled) .nav-cta:hover {
   background: var(--yellow);
   border-color: var(--yellow);
   color: var(--charcoal)
}

.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: .3rem
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--charcoal);
   transition: var(--transition);
   transform-origin: center
}

#navbar:not(.scrolled) .hamburger span {
   background: #fff
}

.hamburger.open span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.open span:nth-child(2) {
   opacity: 0
}

.hamburger.open span:nth-child(3) {
   transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-menu {
   display: none;
   position: fixed;
   inset: 0;
   background: var(--charcoal);
   z-index: 999;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   transform: translateX(100%);
   transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.mobile-menu.open {
   transform: none
}

.mobile-menu a:not(.btn) {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2.5rem;
   font-weight: 600;
   color: #fff;
   opacity: .8;
   transition: opacity .3s, color .3s
}

.mobile-menu a:hover {
   opacity: 1;
   color: var(--yellow)
}

/* ════════════════════════════════════════════════════
   2. HERO SECTION
═══════════════════════════════════════════════════ */
#hero {
   min-height: 100vh;
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden
}

.hero-bg {
   position: absolute;
   inset: 0;
   z-index: 0
}

.hero-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transform: scale(1.08);
   transition: transform 8s ease-out
}

.hero-bg.loaded img {
   transform: scale(1)
}

.hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(26, 26, 26, .75) 0%, rgba(26, 26, 26, .4) 50%, rgba(46, 125, 90, .25) 100%)
}

.hero-content {
   position: relative;
   z-index: 2;
   padding-top: 7rem
}

.hero-badge {
   display: inline-flex;
   align-items: center;
   gap: .6rem;
   background: rgba(255, 255, 255, .12);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, .2);
   border-radius: 50px;
   padding: .45rem 1.2rem;
   margin-bottom: 2rem
}

.hero-badge span {
   font-size: .72rem;
   font-weight: 600;
   letter-spacing: .15em;
   text-transform: uppercase;
   color: var(--yellow)
}

.hero-badge::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--yellow);
   animation: pulse 2s infinite
}

@keyframes pulse {

   0%,
   100% {
      opacity: 1;
      transform: scale(1)
   }

   50% {
      opacity: .5;
      transform: scale(.7)
   }
}

.hero-title {
   color: #fff;
   margin-bottom: 1.5rem;
   max-width: 800px;
   line-height: 1
}

.hero-title em {
   font-style: italic;
   color: var(--yellow);
   display: block
}

.hero-subtitle {
   font-size: clamp(1rem, 1.5vw, 1.2rem);
   color: rgba(255, 255, 255, .8);
   max-width: 520px;
   margin-bottom: 2.5rem;
   line-height: 1.7
}

.hero-actions {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap
}

.hero-scroll-indicator {
   position: absolute;
   bottom: 2.5rem;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: .5rem;
   z-index: 2;
   cursor: pointer
}

.scroll-line {
   width: 1px;
   height: 50px;
   background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .6));
   animation: scrollDown 2s ease-in-out infinite
}

@keyframes scrollDown {
   0% {
      transform: scaleY(0);
      transform-origin: top
   }

   50% {
      transform: scaleY(1);
      transform-origin: top
   }

   51% {
      transform-origin: bottom
   }

   100% {
      transform: scaleY(0);
      transform-origin: bottom
   }
}

.scroll-text {
   font-size: .65rem;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .5)
}

.hero-signup-card {
   position: absolute;
   top: 20%;
   right: 4%;
   z-index: 3;
   background: rgba(255, 255, 255, .96);
   backdrop-filter: blur(24px);
   border-radius: var(--radius);
   padding: 2rem 2.2rem 1.8rem;
   width: 350px;
   box-shadow: var(--shadow-lg);
   max-height: 85vh;
   overflow-y: auto;
}

.signup-header {
   margin-bottom: 1.2rem;
}

.signup-heading {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.15rem;
   font-weight: 700;
   font-style: italic;
   color: var(--green);
   letter-spacing: .02em;
}

.signup-sub {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.15rem;
   font-weight: 600;
   color: var(--charcoal);
   line-height: 1.3;
   margin-top: .2rem;
}

.signup-steps {
   display: flex;
   align-items: center;
   gap: 0;
   justify-content: center;
   margin-bottom: 1.4rem;
}

.signup-step {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   border: 2px solid var(--light-gray);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .8rem;
   font-weight: 700;
   color: var(--gray);
   background: var(--white);
   transition: var(--transition);
}

.signup-step.active {
   border-color: var(--charcoal);
   color: var(--charcoal);
   background: var(--white);
   box-shadow: 0 0 0 3px rgba(26, 26, 26, .08);
}

.signup-step-line {
   width: 40px;
   height: 2px;
   background: var(--light-gray);
}

.signup-form {
   display: flex;
   flex-direction: column;
   gap: .75rem;
}

.signup-field input,
.signup-field select {
   width: 100%;
   padding: .75rem 1rem;
   border: 1.5px solid var(--light-gray);
   border-radius: var(--radius-sm);
   font-size: .88rem;
   color: var(--charcoal);
   background: var(--white);
   transition: border-color .3s, box-shadow .3s;
   outline: none;
}

.signup-field input::placeholder {
   color: var(--gray);
   font-weight: 400;
}

.signup-field input:focus,
.signup-field select:focus {
   border-color: var(--green);
   box-shadow: 0 0 0 3px rgba(46, 125, 90, .1);
}

.signup-phone-row {
   display: flex;
   gap: .5rem;
   align-items: stretch;
}

.signup-country {
   display: flex;
   align-items: center;
   gap: .3rem;
   padding: 0 .75rem;
   border: 1.5px solid var(--light-gray);
   border-radius: var(--radius-sm);
   background: var(--white);
   font-size: .85rem;
   cursor: pointer;
   flex-shrink: 0;
}

.signup-flag {
   font-size: 1.2rem;
}

.signup-caret {
   font-size: .7rem;
   color: var(--gray);
}

.signup-phone-row input {
   flex: 1;
}

.signup-field select {
   appearance: none;
   -webkit-appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 1rem center;
   padding-right: 2.5rem;
   color: var(--gray);
}

.signup-field select:valid {
   color: var(--charcoal);
}

.signup-btn {
   width: 100%;
   padding: .85rem;
   background: var(--charcoal);
   color: var(--white);
   border: none;
   border-radius: 50px;
   font-size: .9rem;
   font-weight: 600;
   letter-spacing: .06em;
   text-transform: uppercase;
   cursor: pointer;
   transition: var(--transition);
   margin-top: .3rem;
}

.signup-btn:hover {
   background: var(--green);
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(46, 125, 90, .35);
}

/* Sign-up success state */
.signup-success {
   text-align: center;
   padding: 2rem 0;
}

.signup-success .success-icon {
   width: 56px;
   height: 56px;
   background: var(--green);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1rem;
   font-size: 1.6rem;
   color: #fff;
}

.signup-success h4 {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.3rem;
   font-weight: 600;
   color: var(--charcoal);
   margin-bottom: .5rem;
}

.signup-success p {
   font-size: .85rem;
   color: var(--gray);
}

/* Step 2 specific */
.signup-location-label {
   font-size: .82rem;
   font-weight: 500;
   color: var(--charcoal);
   line-height: 1.4;
   margin-top: .2rem;
}

.signup-btn-row {
   display: flex;
   gap: .6rem;
   margin-top: .3rem;
}

.signup-btn-row .signup-btn {
   flex: 1;
   margin-top: 0;
}

.signup-btn-back {
   background: var(--white);
   color: var(--charcoal);
   border: 2px solid var(--charcoal);
}

.signup-btn-back:hover {
   background: var(--charcoal);
   color: var(--white);
   box-shadow: none;
}

.signup-btn-submit {
   background: var(--charcoal);
   color: var(--white);
}

.signup-btn-submit:hover {
   background: var(--green);
}

/* ════════════════════════════════════════════════════
   3. TRUST / METRICS SECTION
═══════════════════════════════════════════════════ */
#metrics {
   padding: 5rem 0;
   background: var(--charcoal);
   position: relative;
   overflow: hidden
}

#metrics::before {
   content: '';
   position: absolute;
   top: -60px;
   left: 0;
   right: 0;
   height: 60px;
   background: var(--charcoal);
   clip-path: ellipse(60% 100% at 50% 0%)
}

.metrics-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 0;
   border-radius: 0
}

.metric-item {
   padding: 3rem 2.5rem;
   text-align: center;
   position: relative
}

.metric-item:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 25%;
   height: 50%;
   width: 1px;
   background: rgba(255, 255, 255, .1)
}

.metric-icon {
   width: 52px;
   height: 52px;
   background: rgba(46, 125, 90, .2);
   border: 1px solid rgba(46, 125, 90, .4);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.2rem
}

.metric-number {
   font-family: 'Bebas Neue', sans-serif;
   font-size: 3.5rem;
   color: #fff;
   line-height: 1;
   margin-bottom: .3rem;
   letter-spacing: .02em
}

.metric-number span {
   color: var(--yellow)
}

.metric-label {
   font-size: .8rem;
   font-weight: 500;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .5)
}

/* ════════════════════════════════════════════════════
   4. SERVICES SECTION
═══════════════════════════════════════════════════ */
#services {
   background: var(--off-white)
}

.services-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   margin-bottom: 4rem;
   flex-wrap: wrap;
   gap: 1.5rem
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem
}

.service-card {
   background: var(--white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
   transition: var(--transition);
   position: relative
}

.service-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg)
}

.service-card-img {
   height: 240px;
   overflow: hidden;
   position: relative
}

.service-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.service-card:hover .service-card-img img {
   transform: scale(1.08)
}

.service-card-img-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(26, 26, 26, .6) 0%, transparent 60%);
   opacity: 0;
   transition: opacity .4s
}

.service-card:hover .service-card-img-overlay {
   opacity: 1
}

.service-card-tag {
   position: absolute;
   top: 1rem;
   left: 1rem;
   background: var(--green);
   color: #fff;
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   padding: .3rem .8rem;
   border-radius: 50px
}

.service-card-body {
   padding: 1.6rem
}

.service-card-body h3 {
   margin-bottom: .6rem;
   font-size: 1.3rem;
   color: var(--charcoal)
}

.service-card-body p {
   font-size: .875rem;
   color: var(--gray);
   line-height: 1.65;
   margin-bottom: 1.2rem
}

.service-card-link {
   display: inline-flex;
   align-items: center;
   gap: .4rem;
   font-size: .8rem;
   font-weight: 600;
   color: var(--green);
   letter-spacing: .05em;
   text-transform: uppercase;
   transition: gap .3s
}

.service-card-link:hover {
   gap: .8rem
}

.service-card-link svg {
   transition: transform .3s
}

.service-card:hover .service-card-link svg {
   transform: translateX(4px)
}

/* ════════════════════════════════════════════════════
   5. PORTFOLIO SECTION
═══════════════════════════════════════════════════ */
#portfolio {
   background: var(--white)
}

.portfolio-header {
   text-align: center;
   margin-bottom: 3rem
}

.portfolio-filter {
   display: flex;
   justify-content: center;
   gap: .6rem;
   margin-bottom: 3.5rem;
   flex-wrap: wrap
}

.filter-btn {
   padding: .5rem 1.4rem;
   border-radius: 50px;
   font-size: .75rem;
   font-weight: 600;
   letter-spacing: .06em;
   text-transform: uppercase;
   transition: var(--transition);
   border: 1.5px solid var(--light-gray);
   color: var(--gray);
   background: transparent
}

.filter-btn:hover,
.filter-btn.active {
   background: var(--green);
   color: #fff;
   border-color: var(--green)
}

.portfolio-masonry {
   columns: 3;
   gap: 1.2rem
}

.portfolio-item {
   break-inside: avoid;
   margin-bottom: 1.2rem;
   position: relative;
   border-radius: var(--radius-sm);
   overflow: hidden;
   cursor: pointer
}

.portfolio-item img {
   width: 100%;
   display: block;
   transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.portfolio-item:hover img {
   transform: scale(1.06)
}

.portfolio-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(26, 26, 26, .85) 0%, transparent 60%);
   opacity: 0;
   transition: opacity .4s;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 1.5rem
}

.portfolio-item:hover .portfolio-overlay {
   opacity: 1
}

.portfolio-overlay h4 {
   color: #fff;
   font-size: 1rem;
   font-family: 'Cormorant Garamond', serif;
   margin-bottom: .2rem
}

.portfolio-overlay span {
   font-size: .75rem;
   color: rgba(255, 255, 255, .6);
   display: flex;
   align-items: center;
   gap: .3rem
}

/* ════════════════════════════════════════════════════
   6. PROCESS SECTION
═══════════════════════════════════════════════════ */
#process {
   background: var(--charcoal);
   padding: 8rem 0;
   position: relative;
   overflow: hidden
}

#process::before {
   content: 'PROCESS';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-family: 'Bebas Neue', sans-serif;
   font-size: 20vw;
   color: rgba(255, 255, 255, .02);
   white-space: nowrap;
   pointer-events: none
}

.process-header {
   text-align: center;
   margin-bottom: 5rem
}

.process-header .section-label {
   justify-content: center
}

.process-header .section-label::before {
   display: none
}

.process-header .section-title {
   color: #fff
}

.process-steps {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 0;
   position: relative
}

.process-steps::before {
   content: '';
   position: absolute;
   top: 48px;
   left: 10%;
   right: 10%;
   height: 1px;
   background: linear-gradient(to right, transparent, rgba(255, 255, 255, .15) 20%, rgba(255, 255, 255, .15) 80%, transparent);
   z-index: 0
}

.process-step {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 0 1.5rem;
   position: relative;
   z-index: 1
}

.step-number-wrap {
   position: relative;
   margin-bottom: 1.5rem
}

.step-number-wrap::after {
   content: attr(data-num);
   position: absolute;
   top: -12px;
   right: -12px;
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: var(--yellow);
   color: var(--charcoal);
   font-size: .65rem;
   font-weight: 700;
   display: flex;
   align-items: center;
   justify-content: center
}

.step-icon {
   width: 96px;
   height: 96px;
   background: rgba(255, 255, 255, .05);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition)
}

.process-step:hover .step-icon {
   background: rgba(46, 125, 90, .3);
   border-color: var(--green)
}

.step-title {
   font-family: 'Cormorant Garamond', serif;
   font-size: 1.15rem;
   font-weight: 600;
   color: #fff;
   margin-bottom: .6rem
}

.step-desc {
   font-size: .8rem;
   color: rgba(255, 255, 255, .4);
   line-height: 1.65
}

/* ════════════════════════════════════════════════════
   7. WHY CHOOSE SECTION
═══════════════════════════════════════════════════ */
#why {
   background: var(--off-white)
}

.why-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center
}

.why-image-stack {
   position: relative;
   height: 580px
}

.why-img-main {
   position: absolute;
   top: 0;
   left: 0;
   width: 75%;
   height: 85%;
   object-fit: cover;
   border-radius: var(--radius)
}

.why-img-accent {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 55%;
   height: 50%;
   object-fit: cover;
   border-radius: var(--radius);
   border: 5px solid var(--off-white);
   box-shadow: var(--shadow)
}

.why-accent-card {
   position: absolute;
   top: 50%;
   left: 58%;
   transform: translate(-50%, -50%);
   background: var(--green);
   color: #fff;
   padding: 1.2rem 1.5rem;
   border-radius: var(--radius-sm);
   text-align: center;
   min-width: 130px
}

.why-accent-card .big-num {
   font-family: 'Bebas Neue', sans-serif;
   font-size: 2.8rem;
   line-height: 1;
   display: block
}

.why-accent-card p {
   font-size: .7rem;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: #fff;
   opacity: 1;
   margin-top: .2rem
}

.why-advantages {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
   margin-top: 2.5rem
}

.advantage-card {
   background: var(--white);
   padding: 1.6rem;
   border-radius: var(--radius-sm);
   box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
   border-left: 3px solid transparent;
   transition: var(--transition)
}

.advantage-card:hover {
   border-left-color: var(--green);
   transform: translateX(4px)
}

.adv-icon {
   width: 42px;
   height: 42px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1rem;
   background: rgba(46, 125, 90, .1)
}

.advantage-card h4 {
   font-size: .95rem;
   margin-bottom: .4rem;
   color: var(--charcoal)
}

.advantage-card p {
   font-size: .82rem;
   line-height: 1.6
}

/* ════════════════════════════════════════════════════
   8. TESTIMONIALS SECTION
═══════════════════════════════════════════════════ */
#testimonials {
   background: var(--white);
   overflow: hidden
}

.testimonials-header {
   text-align: center;
   margin-bottom: 3.5rem
}

.testimonials-track-wrap {
   overflow: hidden
}

.testimonials-track {
   display: flex;
   gap: 1.5rem;
   transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

.testimonial-card {
   flex: 0 0 calc(33.333% - 1rem);
   background: var(--off-white);
   border-radius: var(--radius);
   padding: 2.2rem;
   position: relative;
   overflow: hidden
}

.testimonial-card::before {
   content: '\201C';
   position: absolute;
   top: -.5rem;
   right: 1.5rem;
   font-family: 'Cormorant Garamond', serif;
   font-size: 8rem;
   color: var(--green);
   opacity: .12;
   line-height: 1
}

.stars {
   display: flex;
   gap: .2rem;
   margin-bottom: 1.2rem
}

.star {
   color: var(--yellow);
   font-size: 1rem
}

.testimonial-text {
   font-size: .95rem;
   color: var(--charcoal);
   line-height: 1.75;
   margin-bottom: 1.8rem;
   font-style: italic
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: .9rem
}

.author-avatar {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   object-fit: cover
}

.icon-avatar {
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--light-gray);
   color: var(--charcoal);
}

.author-info span:first-child {
   display: block;
   font-weight: 600;
   font-size: .9rem;
   color: var(--charcoal)
}

.author-info span:last-child {
   display: block;
   font-size: .78rem;
   color: var(--gray)
}

.testimonials-nav {
   display: flex;
   justify-content: center;
   gap: 1rem;
   margin-top: 2.5rem
}

.t-nav-btn {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   border: 1.5px solid var(--light-gray);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition)
}

.t-nav-btn:hover {
   background: var(--green);
   border-color: var(--green);
   color: #fff
}

.t-nav-btn svg {
   width: 16px;
   height: 16px;
   stroke: currentColor;
   fill: none;
   stroke-width: 2
}

/* ════════════════════════════════════════════════════
   9. CONSULTATION FORM SECTION
═══════════════════════════════════════════════════ */
#consultation {
   position: relative;
   padding: 8rem 0;
   overflow: hidden
}

.consultation-bg {
   position: absolute;
   inset: 0
}

.consultation-bg img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.consultation-bg::after {
   content: '';
   position: absolute;
   inset: 0;
   background: rgba(26, 26, 26, .88)
}

.consultation-inner {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 5rem;
   align-items: center
}

.form-left .section-label {
   color: var(--yellow)
}

.form-left .section-label::before {
   background: var(--yellow)
}

.form-left .section-title {
   color: #fff
}

.form-left p {
   color: rgba(255, 255, 255, .6);
   font-size: 1rem
}

.form-perks {
   margin-top: 2.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem
}

.form-perk {
   display: flex;
   align-items: center;
   gap: .8rem;
   color: rgba(255, 255, 255, .7);
   font-size: .875rem
}

.form-perk::before {
   content: '✓';
   width: 22px;
   height: 22px;
   background: var(--green);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: .65rem;
   font-weight: 700;
   color: #fff;
   flex-shrink: 0
}

.contact-form {
   background: rgba(255, 255, 255, .05);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: var(--radius);
   padding: 2.5rem
}

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 1rem
}

.form-group {
   display: flex;
   flex-direction: column;
   gap: .4rem
}

.form-group.full {
   grid-column: 1/-1
}

.form-group label {
   font-size: .75rem;
   font-weight: 600;
   letter-spacing: .08em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .5)
}

.form-group input,
.form-group select,
.form-group textarea {
   background: rgba(255, 255, 255, .08);
   border: 1px solid rgba(255, 255, 255, .12);
   border-radius: var(--radius-sm);
   padding: .85rem 1rem;
   color: #fff;
   font-size: .9rem;
   transition: border-color .3s, background .3s;
   resize: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
   color: rgba(255, 255, 255, .3)
}

.form-group select {
   color: rgba(255, 255, 255, .7)
}

.form-group select option {
   background: var(--charcoal)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--green);
   background: rgba(255, 255, 255, .12)
}

.form-submit {
   width: 100%;
   margin-top: .5rem;
   justify-content: center;
   font-size: .85rem;
   padding: 1rem
}

/* ════════════════════════════════════════════════════
   10. CTA BANNER SECTION
═══════════════════════════════════════════════════ */
#cta-banner {
   background: var(--green);
   padding: 7rem 0;
   position: relative;
   overflow: hidden
}

#cta-banner::before {
   content: '';
   position: absolute;
   top: -50%;
   right: -10%;
   width: 500px;
   height: 500px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .05)
}

#cta-banner::after {
   content: '';
   position: absolute;
   bottom: -50%;
   left: 5%;
   width: 300px;
   height: 300px;
   border-radius: 50%;
   background: rgba(0, 0, 0, .08)
}

.cta-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 3rem;
   flex-wrap: wrap;
   position: relative;
   z-index: 1
}

.cta-text h2 {
   color: #fff;
   font-size: clamp(2rem, 4vw, 3rem);
   max-width: 600px
}

.cta-text p {
   color: rgba(255, 255, 255, .7);
   margin-top: .8rem;
   font-size: 1rem;
   max-width: 480px
}

.cta-badges {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   margin-top: 1.5rem
}

.cta-badge {
   display: flex;
   align-items: center;
   gap: .4rem;
   background: rgba(255, 255, 255, .12);
   border-radius: 50px;
   padding: .4rem 1rem;
   font-size: .75rem;
   color: #fff;
   font-weight: 500
}

/* ════════════════════════════════════════════════════
   11. FOOTER
═══════════════════════════════════════════════════ */
#footer {
   background: #0f0f0f;
   color: rgba(255, 255, 255, .7);
   padding: 5rem 0 2rem
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
   gap: 4rem;
   margin-bottom: 4rem
}

.footer-brand .logo {
   margin-bottom: 1.2rem
}

#footer .logo-text span:first-child {
   color: #fff
}

#footer .logo-text span:last-child {
   color: var(--green)
}

.footer-brand p {
   font-size: .875rem;
   line-height: 1.75;
   max-width: 300px;
   margin-bottom: 1.5rem;
   color: rgba(255, 255, 255, .4)
}

.social-links {
   display: flex;
   gap: .8rem
}

.social-link {
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background: rgba(255, 255, 255, .06);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
   font-size: .85rem
}

.social-link:hover {
   background: var(--green);
   transform: translateY(-3px)
}

.footer-col h5 {
   font-size: .8rem;
   font-weight: 600;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: #fff;
   margin-bottom: 1.5rem
}

.footer-links {
   display: flex;
   flex-direction: column;
   gap: .7rem
}

.footer-links a {
   font-size: .875rem;
   color: rgba(255, 255, 255, .4);
   transition: color .3s
}

.footer-links a:hover {
   color: var(--yellow)
}

.footer-contact-item {
   display: flex;
   align-items: flex-start;
   gap: .8rem;
   margin-bottom: 1rem
}

.fci-icon {
   width: 32px;
   height: 32px;
   background: rgba(255, 255, 255, .06);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   margin-top: .1rem
}

.fci-text span:first-child {
   display: block;
   font-size: .7rem;
   text-transform: uppercase;
   letter-spacing: .08em;
   color: rgba(255, 255, 255, .3);
   margin-bottom: .1rem
}

.fci-text span:last-child {
   font-size: .875rem;
   color: rgba(255, 255, 255, .6)
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .06);
   padding-top: 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 1rem
}

.footer-bottom p {
   font-size: .8rem;
   color: rgba(255, 255, 255, .25)
}

.footer-legal {
   display: flex;
   gap: 2rem
}

.footer-legal a {
   font-size: .8rem;
   color: rgba(255, 255, 255, .25);
   transition: color .3s
}

.footer-legal a:hover {
   color: rgba(255, 255, 255, .6)
}

/* ── Floating WhatsApp ─────────────────────────────── */
.float-wa {
   position: fixed;
   bottom: 2rem;
   right: 2rem;
   z-index: 900;
   width: 52px;
   height: 52px;
   background: #25D366;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
   animation: floatWA 3s ease-in-out infinite;
   transition: transform .3s
}

.float-wa:hover {
   transform: scale(1.1)
}

@keyframes floatWA {

   0%,
   100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
   }

   50% {
      box-shadow: 0 8px 30px rgba(37, 211, 102, .6)
   }
}

/* ── Loader ────────────────────────────────────────── */
#loader {
   position: fixed;
   inset: 0;
   background: var(--charcoal);
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 1.5rem;
   transition: opacity .8s ease, visibility .8s ease
}

#loader.hidden {
   opacity: 0;
   visibility: hidden
}

.loader-logo {
   font-family: 'Cormorant Garamond', serif;
   font-size: 2rem;
   font-weight: 700;
   color: #fff;
   letter-spacing: .05em
}

.loader-logo span {
   color: var(--yellow)
}

.loader-bar {
   width: 200px;
   height: 2px;
   background: rgba(255, 255, 255, .1);
   border-radius: 1px;
   overflow: hidden
}

.loader-bar-fill {
   height: 100%;
   background: linear-gradient(to right, var(--green), var(--yellow));
   width: 0;
   animation: loadBar 2s ease-out forwards
}

@keyframes loadBar {
   to {
      width: 100%
   }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media(max-width:1100px) {
   .services-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr
   }

   .why-inner {
      gap: 3rem
   }

   .portfolio-masonry {
      columns: 2
   }
}

@media(max-width:900px) {

   .nav-links,
   .nav-cta {
      display: none
   }

   .hamburger {
      display: flex
   }

   .logo-text span:first-child {
      font-size: 1.1rem;
   }
   
   .logo-mark img {
      height: 24px !important;
   }

   .mobile-menu {
      display: flex;
      gap: 1.5rem;
   }
   
   .mobile-menu a:not(.btn) {
      font-size: 1.8rem;
   }
   
   .mobile-menu .btn {
      font-family: 'DM Sans', sans-serif;
      font-size: .85rem;
      padding: .85rem 2rem;
      margin-top: 1rem;
      letter-spacing: .05em;
      opacity: 1;
   }

   .metrics-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .metric-item:nth-child(2)::after {
      display: none
   }

   .process-steps {
      grid-template-columns: 1fr 1fr;
      gap: 2rem
   }

   .process-steps::before {
      display: none
   }

   .why-inner {
      grid-template-columns: 1fr
   }

   .why-image-stack {
      height: 400px
   }

   .consultation-inner {
      grid-template-columns: 1fr
   }

   .cta-inner {
      flex-direction: column;
      text-align: center
   }

   .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem
   }

   .testimonial-card {
      flex: 0 0 calc(80% - .75rem)
   }

   .hero-signup-card {
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      width: 100%;
      max-width: 400px;
      margin: 2rem auto 0;
   }

   #hero {
      flex-direction: column;
      justify-content: center;
   }

   #hero>.container {
      display: flex;
      flex-direction: column;
      align-items: center;
   }
}

@media(max-width:640px) {
   .container {
      padding: 0 1.25rem
   }

   .section {
      padding: 5rem 0
   }

   .services-grid {
      grid-template-columns: 1fr
   }

   .portfolio-masonry {
      columns: 1
   }

   .metrics-grid {
      grid-template-columns: 1fr 1fr
   }

   .form-grid {
      grid-template-columns: 1fr
   }

   .hero-signup-card {
      max-width: 100%;
      margin-top: 1.5rem;
   }

   .footer-grid {
      grid-template-columns: 1fr
   }

   .process-steps {
      grid-template-columns: 1fr
   }

   .why-advantages {
      grid-template-columns: 1fr
   }
}