/* ============================================
   GROWLOG - Agency Website Stylesheet
   ============================================ */

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

:root {
   --primary: #1a6b3c;
   --primary-light: #2d8a52;
   --primary-xlight: #e8f5ee;
   --accent: #5cba7d;
   --accent2: #a8d9ba;
   --dark: #0f2018;
   --dark2: #1c3326;
   --mid: #3d5e48;
   --text: #2c3e35;
   --text-muted: #6b7e74;
   --bg: #f9fdfb;
   --bg2: #f2f9f5;
   --white: #ffffff;
   --card-shadow: 0 4px 24px rgba(26, 107, 60, 0.08);
   --card-shadow-hover: 0 12px 40px rgba(26, 107, 60, 0.16);
   --radius: 16px;
   --radius-sm: 10px;
   --radius-lg: 24px;
   --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
   scroll-behavior: smooth
}

body {
   font-family: 'DM Sans', sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.7;
   font-size: 16px;
   overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
   font-family: 'Playfair Display', serif;
   color: var(--dark);
   line-height: 1.25
}

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

img {
   max-width: 100%
}

section {
   overflow: hidden
}

.section-label {
   display: inline-block;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: var(--primary);
   background: var(--primary-xlight);
   padding: 6px 16px;
   border-radius: 100px;
   margin-bottom: 16px
}

.section-title {
   font-size: clamp(1.75rem, 3vw, 2.5rem);
   font-weight: 700;
   margin-bottom: 16px
}

.section-subtitle {
   font-size: 14px;
   color: var(--text-muted);
   max-width: 520px;
   margin: 0 auto
}

.btn-primary-custom {
   background: var(--primary);
   color: var(--white) !important;
   padding: 14px 32px;
   border-radius: 100px;
   font-weight: 600;
   font-size: .95rem;
   border: none;
   cursor: pointer;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 8px
}

.btn-primary-custom:hover {
   background: var(--primary-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 28px rgba(26, 107, 60, .3);
   color: var(--white) !important
}

.btn-outline-custom {
   background: transparent;
   color: var(--primary) !important;
   padding: 13px 32px;
   border-radius: 100px;
   font-weight: 600;
   font-size: .95rem;
   border: 2px solid var(--primary);
   cursor: pointer;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 8px
}

.btn-outline-custom:hover {
   background: var(--primary);
   color: var(--white) !important;
   transform: translateY(-2px)
}

.fade-in {
   opacity: 0;
   transform: translateY(28px);
   transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
   opacity: 1;
   transform: translateY(0)
}

.fade-in-delay-1 {
   transition-delay: .1s
}

.fade-in-delay-2 {
   transition-delay: .2s
}

.fade-in-delay-3 {
   transition-delay: .3s
}

.fade-in-delay-4 {
   transition-delay: .4s
}

.fade-in-delay-5 {
   transition-delay: .5s
}

/* NAVBAR */
#navbar {
   background: rgba(249, 253, 251, .92);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(26, 107, 60, .08);
   padding: 16px 0;
   transition: var(--transition);
   z-index: 1000
}

#navbar.scrolled {
   padding: 10px 0;
   box-shadow: 0 4px 20px rgba(26, 107, 60, .08)
}

.navbar-brand {
   font-family: 'Playfair Display', serif;
   font-size: 2.2rem;
   font-weight: 700;
   color: var(--dark) !important
}

.navbar-brand span {
   color: var(--primary)
}

.nav-link {
   color: var(--text-muted) !important;
   font-weight: 500;
   font-size: 18px;
   padding: 8px 14px !important;
   border-radius: 8px;
   transition: var(--transition)
}

.nav-link:hover,
.nav-link.active {
   color: var(--primary) !important;
   background: var(--primary-xlight)
}

.navbar-toggler {
   border: none;
   color: var(--primary);
   padding: 4px 8px
}

.navbar-toggler:focus {
   box-shadow: none
}

/* HERO */
#hero {
   min-height: 100vh;
   display: flex;
   align-items: center;
   background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 50%, #f9fdfb 100%);
   position: relative;
   padding: 120px 0 80px;
   overflow: hidden
}

.hero-shape-1 {
   position: absolute;
   top: -100px;
   right: -100px;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(92, 186, 125, .15) 0%, transparent 70%);
   border-radius: 50%
}

.hero-shape-2 {
   position: absolute;
   bottom: -80px;
   left: -80px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(26, 107, 60, .08) 0%, transparent 70%);
   border-radius: 50%
}

.hero-shape-3 {
   position: absolute;
   top: 40%;
   right: 5%;
   width: 200px;
   height: 200px;
   border: 2px solid rgba(92, 186, 125, .2);
   border-radius: 50%;
   animation: floatCircle 6s ease-in-out infinite
}

.hero-shape-4 {
   position: absolute;
   top: 25%;
   right: 22%;
   width: 60px;
   height: 60px;
   background: rgba(92, 186, 125, .12);
   border-radius: 12px;
   transform: rotate(30deg);
   animation: floatBadge 8s ease-in-out infinite reverse
}

@keyframes floatCircle {

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

   50% {
      transform: translateY(-15px)
   }
}

@keyframes floatBadge {

   0%,
   100% {
      transform: translateY(0) rotate(30deg)
   }

   50% {
      transform: translateY(-12px) rotate(30deg)
   }
}

@keyframes pulseGreen {

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

   50% {
      opacity: .5;
      transform: scale(.8)
   }
}

.hero-eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   font-weight: 500;
   color: var(--primary);
   background: var(--white);
   border: 1px solid var(--accent2);
   padding: 8px 16px;
   border-radius: 100px;
   margin-bottom: 24px;
   box-shadow: 0 2px 12px rgba(26, 107, 60, .1)
}

.hero-eyebrow .dot {
   width: 8px;
   height: 8px;
   background: var(--accent);
   border-radius: 50%;
   animation: pulseGreen 2s infinite
}

.hero-title {
   font-size: clamp(2.2rem, 5vw, 3rem);
   font-weight: 700;
   line-height: 1.15;
   margin-bottom: 20px;
   color: var(--dark)
}

.hero-title .highlight {
   color: var(--primary)
}

.hero-subtitle {
   font-size: 1.1rem;
   color: var(--text-muted);
   margin-bottom: 36px;
   max-width: 480px
}

.hero-ctas {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 48px
}

.hero-stats {
   display: flex;
   gap: 18px;
   flex-wrap: wrap
}

.stat-item {
   display: flex;
   align-items: center;
   gap: 10px
}

.stat-icon {
   width: 40px;
   height: 40px;
   background: var(--white);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 2px 12px rgba(26, 107, 60, .1);
   color: var(--primary);
   font-size: 16px;
   flex-shrink: 0
}

.stat-text strong {
   display: block;
   font-weight: 700;
   color: var(--dark);
   font-size: .95rem
}

.stat-text span {
   font-size: .8rem;
   color: var(--text-muted)
}

/* Hero Dashboard Visual */
.hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center
}

.hero-dashboard {
   background: var(--white);
   border-radius: 20px;
   box-shadow: 0 24px 64px rgba(26, 107, 60, .15);
   padding: 28px;
   width: 100%;
   max-width: 420px;
   position: relative;
   z-index: 2
}

.dashboard-header {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 20px
}

.dot-red {
   width: 10px;
   height: 10px;
   background: #ff5f57;
   border-radius: 50%
}

.dot-yellow {
   width: 10px;
   height: 10px;
   background: #febc2e;
   border-radius: 50%
}

.dot-green {
   width: 10px;
   height: 10px;
   background: #28c840;
   border-radius: 50%
}

.dash-title {
   font-size: 12px;
   color: var(--text-muted);
   margin-left: 8px;
   font-family: 'DM Sans', sans-serif;
   font-weight: 500
}

.metric-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   margin-bottom: 16px
}

.metric-card {
   background: var(--bg2);
   border-radius: 12px;
   padding: 16px
}

.metric-card .label {
   font-size: 11px;
   color: var(--text-muted);
   font-weight: 500;
   margin-bottom: 4px
}

.metric-card .value {
   font-size: 1.35rem;
   font-weight: 700;
   color: var(--dark);
   font-family: 'Playfair Display', serif
}

.metric-card .change {
   font-size: 11px;
   color: var(--accent);
   font-weight: 600
}

.metric-card.highlight-card {
   background: var(--primary)
}

.metric-card.highlight-card .label {
   color: rgba(255, 255, 255, .7)
}

.metric-card.highlight-card .value {
   color: var(--white)
}

.metric-card.highlight-card .change {
   color: var(--accent2)
}

.chart-area {
   background: var(--bg2);
   border-radius: 12px;
   padding: 16px;
   height: 80px;
   display: flex;
   align-items: flex-end;
   gap: 5px
}

.bar {
   flex: 1;
   background: var(--accent2);
   border-radius: 4px 4px 0 0;
   transition: var(--transition)
}

.bar.active {
   background: var(--primary)
}

.floating-badge {
   position: absolute;
   background: var(--white);
   border-radius: 12px;
   padding: 10px 14px;
   box-shadow: 0 8px 24px rgba(26, 107, 60, .15);
   font-size: 12px;
   font-weight: 600;
   color: var(--dark);
   display: flex;
   align-items: center;
   gap: 6px;
   white-space: nowrap
}

.floating-badge-1 {
   top: -16px;
   right: -16px;
   animation: floatBadgeSimple 4s ease-in-out infinite
}

.floating-badge-2 {
   bottom: 20px;
   left: -20px;
   animation: floatBadgeSimple 5s ease-in-out infinite reverse
}

@keyframes floatBadgeSimple {

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

   50% {
      transform: translateY(-8px)
   }
}

.badge-dot {
   width: 8px;
   height: 8px;
   background: var(--accent);
   border-radius: 50%
}

/* PROBLEMS */
#problems {
   padding: 100px 0;
   background: var(--white)
}

.problem-card {
   background: var(--bg2);
   border-radius: var(--radius);
   padding: 32px;
   height: 100%;
   border: 1px solid rgba(26, 107, 60, .07);
   transition: var(--transition)
}

.problem-card:hover {
   background: var(--white);
   box-shadow: var(--card-shadow-hover);
   transform: translateY(-4px)
}

.problem-icon {
   width: 52px;
   height: 52px;
   background: var(--primary-xlight);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   font-size: 22px;
   margin-bottom: 20px
}

.problem-card h5 {
   font-size: 1.05rem;
   font-weight: 700;
   margin-bottom: 10px;
   color: var(--dark);
   font-family: 'DM Sans', sans-serif;
   text-align: center;
}

.problem-card p {
   font-size: .9rem;
   color: var(--text-muted);
   margin: 0;
   text-align: center;
}

/* GROWTH SYSTEM */
#growth-system {
   padding: 100px 0;
   background: var(--bg2)
}

.growth-steps {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 0;
   margin: 48px 0
}

.step-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 12px;
   flex: 1;
width: 100%;
background: #fff;
padding: 20px;
border-radius: 20opx;
cursor: pointer;
}


@media(max-width:600px){

   .step-item{
      flex: none;
              margin-block: 10px;
   }

   .step-label{
      font-size: 20px !important;
   }
}

.step-text{
   text-align: center;
   font-size: 13px;
}

.step-icon {
   width: 64px;
   height: 64px;
   background: var(--white);
   border: 2px solid var(--accent2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   color: var(--primary);
   box-shadow: 0 4px 16px rgba(26, 107, 60, .1);
   transition: var(--transition);
   position: relative;
   z-index: 2
}

.step-item:hover .step-icon {
   background: var(--primary);
   color: var(--white);
   border-color: var(--primary);
   transform: scale(1.1)
}

.step-label {
   font-size: .85rem;
   font-weight: 600;
   color: var(--mid);
   text-align: center
}

.step-connector {
   flex: 1;
   height: 2px;
   background: linear-gradient(90deg, var(--accent2), var(--primary));
   min-width: 20px;
   max-width: 35px;
   margin-top: -30px;
   position: relative;
   z-index: 1
}

.support-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
   gap: 14px;
   margin-top: 32px
}

.support-card {
   background: var(--white);
   border-radius: var(--radius-sm);
   padding: 18px 14px;
   text-align: center;
   border: 1px solid rgba(26, 107, 60, .08);
   transition: var(--transition)
}

.support-card:hover {
   border-color: var(--accent);
   box-shadow: 0 4px 16px rgba(26, 107, 60, .1)
}

.support-card .icon {
   font-size: 20px;
   margin-bottom: 8px
}

.support-card .label {
   font-size: .78rem;
   font-weight: 600;
   color: var(--text-muted)
}

/* EXPERIENCE */
#experience {
   padding: 100px 0;
   background: var(--dark);
   position: relative;
   overflow: hidden
}

#experience::before {
   content: '';
   position: absolute;
   top: -200px;
   right: -200px;
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, rgba(92, 186, 125, .06) 0%, transparent 60%);
   border-radius: 50%
}

.experience-inner {
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--radius);
   padding: 40px;
   height: 100%
}

.check-item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
   margin-bottom: 20px
}

.check-item:last-child {
   margin-bottom: 0
}

.check-circle {
   width: 28px;
   height: 28px;
   background: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   color: white;
   font-size: 12px;
   margin-top: 2px
}

.check-text strong {
   display: block;
   color: var(--white);
   font-weight: 600;
   margin-bottom: 2px;
   font-size: .95rem
}

.check-text span {
   font-size: .85rem;
   color: rgba(255, 255, 255, .5)
}

.big-stat {
   text-align: center;
   padding: 28px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: var(--radius-sm);
   transition: var(--transition)
}

.big-stat:hover {
   background: rgba(92, 186, 125, .08);
   border-color: rgba(92, 186, 125, .2)
}

.big-stat .number {
   font-family: 'Playfair Display', serif;
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--accent);
   display: block
}

.big-stat .desc {
   font-size: .85rem;
   color: rgba(255, 255, 255, .5);
   margin-top: 4px
}

/* SERVICES */
#services {
   padding: 80px 0;
   background: var(--white)
}

.service-card {
   background: var(--bg2);
   border-radius: var(--radius);
   padding: 32px;
   height: 100%;
   border: 1px solid rgba(26, 107, 60, .07);
   transition: var(--transition);
   position: relative;
   overflow: hidden;
   cursor: pointer;
}

.service-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--primary), var(--accent));
   transform: scaleX(0);
   transition: var(--transition)
}

.service-card:hover::before {
   transform: scaleX(1)
}

.service-card:hover {
   background: var(--white);
   box-shadow: var(--card-shadow-hover);
   transform: translateY(-4px)
}

.service-icon {
   width: 52px;
   height: 52px;
   background: var(--primary-xlight);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   color: var(--primary);
   margin-bottom: 20px;
   transition: var(--transition)
}

.service-card:hover .service-icon {
   background: var(--primary);
   color: var(--white)
}

.service-card h5 {
   font-size: 1.05rem;
   font-weight: 700;
   font-family: 'DM Sans', sans-serif;
   margin-bottom: 10px;
   color: var(--dark)
}

.service-card p {
   font-size: .88rem;
   color: var(--text-muted);
   margin: 0
}

/* HOW WE WORK */
#how-we-work {
   padding: 100px 0;
   background: var(--bg2)
}

.timeline {
   position: relative;
   padding-left: 24px
}

.timeline::before {
   content: '';
   position: absolute;
   left: 20px;
   top: 0;
   bottom: 0;
   width: 2px;
   background: linear-gradient(to bottom, var(--accent2), var(--primary))
}

.timeline-item {
   position: relative;
   padding: 0 0 40px 52px
}

.timeline-item:last-child {
   padding-bottom: 0
}

.timeline-dot {
   position: absolute;
   left: -4px;
   top: 4px;
   width: 48px;
   height: 48px;
   background: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-weight: 700;
   font-size: .85rem;
   border: 3px solid var(--bg2);
   z-index: 2;
   transition: var(--transition)
}

.timeline-item:hover .timeline-dot {
   transform: scale(1.15);
   box-shadow: 0 0 0 6px rgba(26, 107, 60, .1)
}

.timeline-content {
   background: var(--white);
   border-radius: var(--radius-sm);
   padding: 24px 28px;
   border: 1px solid rgba(26, 107, 60, .07);
   transition: var(--transition)
}

.timeline-item:hover .timeline-content {
   box-shadow: var(--card-shadow);
   border-color: rgba(26, 107, 60, .15)
}

.timeline-content h5 {
   font-size: 1rem;
   font-weight: 700;
   font-family: 'DM Sans', sans-serif;
   color: var(--dark);
   margin-bottom: 6px
}

.timeline-content p {
   font-size: .88rem;
   color: var(--text-muted);
   margin: 0
}

/* RESULTS */
#results {
   padding: 80px 0;
   background: var(--white)
}

.result-card {
   border-radius: var(--radius);
   padding: 36px;
   border: 1px solid rgba(26, 107, 60, .07);
   height: 100%;
   transition: var(--transition)
}

.result-card:hover {
   background: var(--white);
   box-shadow: var(--card-shadow-hover);
   transform: translateY(-4px)
}

.result-tag {
   display: inline-block;
   background: var(--primary-xlight);
   color: var(--primary);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: .08em;
   text-transform: uppercase;
   padding: 4px 12px;
   border-radius: 100px;
   margin-bottom: 16px
}

.result-card h4 {
   font-size: 1.15rem;
   margin-bottom: 20px;
   font-family: 'DM Sans', sans-serif;
   font-weight: 700
}

.metric-row {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 10px;
   padding: 12px 16px;
   background: var(--white);
   border-radius: 10px;
   border: 1px solid rgba(26, 107, 60, .07)
}

.result-card:hover .metric-row {
   background: var(--bg2)
}

.m-icon {
   width: 32px;
   height: 32px;
   background: var(--primary-xlight);
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   font-size: 14px;
   flex-shrink: 0
}

.m-label {
   font-size: 11px;
   color: var(--text-muted)
}

.m-val {
   font-size: 1rem;
   font-weight: 700;
   color: var(--primary)
}

/* TESTIMONIALS */
#testimonials {
   padding: 100px 0;
   background: var(--bg2)
}

.testimonial-card {
   background: var(--white);
   border-radius: var(--radius);
   padding: 36px;
   height: 100%;
   box-shadow: var(--card-shadow);
   border: 1px solid rgba(26, 107, 60, .07);
   transition: var(--transition);
   position: relative;
}

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

.quote-icon {
    font-size: 9rem;
    color: var(--accent2);
    line-height: 50px;
    font-family: 'Playfair Display', serif;
    text-align: end;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 5%;
    bottom: 21%;
    letter-spacing: -12px;
}

.testimonial-text {
   font-size: 1rem;
   color: var(--text);
   line-height: 1.8;
   margin-bottom: 24px;
   font-style: italic
}

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

.author-avatar {
   width: 100px;
   height: 100px;
   font-weight: 700;
   font-size: 1rem;
   flex-shrink: 0;
}

.author-avatar img{
   border-radius: 50%;
}

.author-name {
   font-weight: 700;
   color: var(--dark);
   font-size: 16px
}

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

.stars {
color: #f59e0b;
    font-size: 20px;
    letter-spacing: 2px;
    margin-block: 4px;
}

/* FAQ */
#faq {
   padding: 100px 0;
   background: var(--white)
}

.accordion-item {
   border: 1px solid rgba(26, 107, 60, .1) !important;
   border-radius: var(--radius-sm) !important;
   margin-bottom: 12px;
   overflow: hidden
}

.accordion-button {
   font-weight: 600 !important;
   font-size: .95rem !important;
   color: var(--dark) !important;
   background: var(--bg2) !important;
   padding: 20px 24px !important;
   border-radius: var(--radius-sm) !important
}

.accordion-button:not(.collapsed) {
   background: var(--primary-xlight) !important;
   color: var(--primary) !important;
   box-shadow: none !important
}

.accordion-button:focus {
   box-shadow: none !important
}

.accordion-body {
   font-size: .9rem;
   color: var(--text-muted);
   padding: 20px 24px !important;
   background: var(--white) !important;
   line-height: 1.8
}

/* FOUNDER */
#founder {
   padding: 100px 0;
   background: var(--bg2)
}

.founder-card {
   background: var(--white);
   border-radius: var(--radius-lg);
   padding: 56px;
   text-align: center;
   box-shadow: var(--card-shadow);
   border: 1px solid rgba(26, 107, 60, .07);
   max-width: 760px;
   margin: 0 auto
}

.founder-avatar {
   width: 80px;
   height: 80px;
   background: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 32px;
   color: white;
   margin: 0 auto 24px;
   box-shadow: 0 8px 24px rgba(26, 107, 60, .2)
}

.founder-card blockquote {
   font-size: 1.1rem;
   color: var(--text);
   line-height: 1.9;
   font-style: italic;
   border: none;
   padding: 0
}

.founder-name {
   font-weight: 700;
   color: var(--dark)
}

.founder-title {
   font-size: .85rem;
   color: var(--text-muted);
   margin-bottom: 28px
}

/* FINAL CTA */
#final-cta {
   padding: 100px 0;
   background: var(--dark);
   position: relative;
   overflow: hidden;
   text-align: center
}

#final-cta::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 800px;
   height: 800px;
   background: radial-gradient(circle, rgba(92, 186, 125, .08) 0%, transparent 60%);
   border-radius: 50%
}

.cta-title {
   font-size: clamp(2rem, 4vw, 3rem);
   color: var(--white);
   margin-bottom: 16px
}

.cta-subtitle {
   color: rgba(255, 255, 255, .6);
   font-size: 1.05rem;
   margin-bottom: 36px;
   max-width: 480px;
   margin-left: auto;
   margin-right: auto
}

.btn-cta-white {
   background: var(--white);
   color: var(--primary) !important;
   padding: 16px 40px;
   border-radius: 100px;
   font-weight: 700;
   font-size: 1rem;
   border: none;
   cursor: pointer;
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 8px
}

.btn-cta-white:hover {
   background: var(--accent2);
   transform: translateY(-2px);
   box-shadow: 0 12px 32px rgba(255, 255, 255, .15)
}

/* FOOTER */
#footer {
   background:#000;
   padding: 64px 0 64px;
   border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-brand {
   font-family: 'Playfair Display', serif;
   font-size: 2.2rem;
   font-weight: 700;
   color: var(--white);
   margin-bottom: 12px
}

.footer-brand span {
   color: var(--accent)
}

.footer-desc {
   font-size: .88rem;
   color: rgba(255, 255, 255, .45);
   line-height: 1.8;
   max-width: 240px
}

.footer-heading {
   font-size: .75rem;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, .5);
   margin-bottom: 20px
}

.footer-links {
   list-style: none;
   padding: 0;
   margin: 0
}

.footer-links li {
   margin-bottom: 10px
}

.footer-links a {
   font-size: .9rem;
   color: rgba(255, 255, 255, .55);
   transition: var(--transition)
}

.footer-links a:hover {
   color: var(--accent);
   padding-left: 4px
}

.footer-contact a {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: .9rem;
   color: rgba(255, 255, 255, .55);
   margin-bottom: 10px;
   transition: var(--transition)
}

.footer-contact a:hover {
   color: var(--accent)
}

.footer-divider {
   border-color: rgba(255, 255, 255, .07);
   margin: 40px 0 24px
}

.footer-copy {
   font-size: .82rem;
   color: rgba(255, 255, 255, .3)
}

/* BACK TO TOP */
#back-to-top {
   position: fixed;
   bottom: 110px;
   right: 45px;
   width: 48px;
   height: 48px;
   background: var(--primary);
   color: white;
   border: none;
   border-radius: 50%;
   font-size: 18px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 8px 24px rgba(26, 107, 60, .3);
   transition: var(--transition);
   opacity: 0;
   visibility: hidden;
   z-index: 999
}

#back-to-top.visible {
   opacity: 1;
   visibility: visible
}

#back-to-top:hover {
   background: var(--primary-light);
   transform: translateY(-3px)
}

@media(max-width:991px) {
   .hero-visual {
      display: none
   }

   .step-connector {
      max-width: 30px
   }
}

@media(max-width:767px) {
   .hero-stats {
      gap: 16px
   }

   .section-title {
      font-size: 1.75rem
   }

   .timeline {
      padding-left: 16px
   }

   .founder-card {
      padding: 36px 24px
   }

   .step-connector {
      display: none
   }

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

@media(max-width:480px) {
   .hero-ctas {
      flex-direction: column
   }

   .hero-ctas .btn-primary-custom,
   .hero-ctas .btn-outline-custom {
      width: 100%;
      justify-content: center
   }
}

@media(max-width:600px){
   .menu-btn{
      display: none;
   }

   #back-to-top{
      position: fixed;
    bottom: 20px;
    right: 10px;
   }
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.bk-overlay {
   position: fixed;
   inset: 0;
   background: rgba(10, 22, 14, .6);
   backdrop-filter: blur(7px);
   -webkit-backdrop-filter: blur(7px);
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 16px;
   opacity: 0;
   visibility: hidden;
   transition: opacity .3s ease, visibility .3s ease
}

.bk-overlay.open {
   opacity: 1;
   visibility: visible
}

.bk-modal {
   background: var(--white);
   border-radius: 20px;
   width: 100%;
   max-width: 600px;
   max-height: 92vh;
   overflow-y: auto;
   padding: 34px 28px 28px;
   position: relative;
   transform: translateY(30px) scale(.96);
   transition: transform .38s cubic-bezier(.34, 1.52, .64, 1);
   box-shadow: 0 32px 80px rgba(10, 22, 14, .22), 0 0 0 1px rgba(26, 107, 60, .06);
   scrollbar-width: thin;
   scrollbar-color: var(--border, #d4e8db) transparent
}

.bk-overlay.open .bk-modal {
   transform: translateY(0) scale(1)
}

.bk-modal::-webkit-scrollbar {
   width: 4px
}

.bk-modal::-webkit-scrollbar-thumb {
   background: var(--accent2);
   border-radius: 4px
}

.bk-close {
   position: absolute;
   top: 13px;
   right: 13px;
   width: 30px;
   height: 30px;
   border: none;
   background: var(--bg2);
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--text-muted);
   font-size: 15px;
   line-height: 1;
   transition: background .2s, color .2s, transform .25s
}

.bk-close:hover {
   background: #fee2e2;
   color: #dc2626;
   transform: rotate(90deg)
}

.bk-head {
   margin-bottom: 22px
}

.bk-head h2 {
   font-family: 'Playfair Display', serif;
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--dark);
   margin-bottom: 5px
}

.bk-head p {
   font-size: .8rem;
   color: var(--text-muted)
}

.bk-badge {
   display: inline-block;
   background: var(--primary-xlight);
   color: var(--primary);
   font-weight: 600;
   padding: 2px 8px;
   border-radius: 100px;
   font-size: .74rem;
   margin-left: 4px
}

.bk-field {
   margin-bottom: 14px
}

.bk-field label {
   display: block;
   font-size: .8rem;
   font-weight: 600;
   color: var(--dark);
   margin-bottom: 5px
}

.bk-req {
   color: var(--primary);
   margin-left: 1px
}

.bk-field input[type="text"],
.bk-field input[type="tel"],
.bk-field input[type="email"],
.bk-field input[type="url"],
.bk-field textarea,
.bk-field select {
   width: 100%;
   padding: 10px 13px;
   border: 1.5px solid #d4e8db;
   border-radius: 10px;
   font-family: 'DM Sans', sans-serif;
   font-size: .875rem;
   color: var(--text);
   background: var(--white);
   outline: none;
   appearance: none;
   -webkit-appearance: none;
   transition: border-color .2s, box-shadow .2s
}

.bk-field input::placeholder,
.bk-field textarea::placeholder {
   color: #b8cfc0
}

.bk-field input:focus,
.bk-field textarea:focus,
.bk-field select:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3.5px rgba(26, 107, 60, .12)
}

.bk-field input.bk-invalid,
.bk-field textarea.bk-invalid,
.bk-field select.bk-invalid {
   border-color: #dc2626;
   box-shadow: 0 0 0 3px rgba(220, 38, 38, .1)
}

.bk-phone-wrap {
   position: relative
}

.bk-prefix {
   position: absolute;
   left: 13px;
   top: 50%;
   transform: translateY(-50%);
   font-size: .875rem;
   font-weight: 600;
   color: var(--text);
   pointer-events: none
}

.bk-phone-wrap input {
   padding-left: 44px
}

.bk-field textarea {
   resize: vertical;
   min-height: 88px
}

.bk-select-wrap {
   position: relative
}

.bk-select-wrap::after {
   content: '';
   position: absolute;
   right: 13px;
   top: 50%;
   transform: translateY(-50%);
   border-left: 5px solid transparent;
   border-right: 5px solid transparent;
   border-top: 6px solid var(--text-muted);
   pointer-events: none
}

.bk-select-wrap select {
   padding-right: 34px;
   cursor: pointer
}

.bk-divider {
   height: 1px;
   background: var(--primary-xlight);
   margin: 18px 0
}

.bk-err {
   font-size: .72rem;
   color: #dc2626;
   margin-top: 4px;
   display: none
}

.bk-err.show {
   display: block
}

.bk-checks {
   display: flex;
   flex-direction: column;
   gap: 9px;
   margin-bottom: 18px
}

.bk-check-row {
   display: flex;
   align-items: center;
   gap: 9px;
   cursor: pointer;
   user-select: none
}

.bk-check-row input[type="checkbox"] {
   width: 17px;
   height: 17px;
   min-width: 17px;
   border: 1.5px solid #d4e8db;
   border-radius: 5px;
   appearance: none;
   -webkit-appearance: none;
   background: var(--white);
   cursor: pointer;
   position: relative;
   transition: background .2s, border-color .2s;
   padding: 0;
   flex-shrink: 0
}

.bk-check-row input[type="checkbox"]:focus {
   box-shadow: 0 0 0 3px rgba(26, 107, 60, .12)
}

.bk-check-row input[type="checkbox"]:checked {
   background: var(--primary);
   border-color: var(--primary)
}

.bk-check-row input[type="checkbox"]:checked::after {
   content: '';
   position: absolute;
   left: 4px;
   top: 1px;
   width: 6px;
   height: 10px;
   border: 2px solid #fff;
   border-top: none;
   border-left: none;
   transform: rotate(45deg)
}

.bk-cb-text {
   font-size: .81rem;
   color: var(--text)
}

.bk-submit {
   width: 100%;
   padding: 14px;
   background: var(--primary);
   color: #fff;
   border: none;
   border-radius: 100px;
   font-family: 'DM Sans', sans-serif;
   font-size: .95rem;
   font-weight: 700;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   letter-spacing: .01em;
   transition: background .25s, transform .25s, box-shadow .25s;
   margin-top: 2px
}

.bk-submit:hover {
   background: var(--primary-light);
   transform: translateY(-2px);
   box-shadow: 0 8px 22px rgba(26, 107, 60, .3)
}

.bk-submit:active {
   transform: translateY(0)
}

/* Success state */
.bk-success {
   display: none;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 28px 0 12px
}

.bk-success.show {
   display: flex
}

#bkFormView.hide {
   display: none
}

.bk-success-icon {
   width: 72px;
   height: 72px;
   background: var(--primary-xlight);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 32px;
   color: var(--primary);
   margin-bottom: 18px;
   animation: bkPopIn .5s cubic-bezier(.34, 1.56, .64, 1) forwards
}

@keyframes bkPopIn {
   from {
      transform: scale(0);
      opacity: 0
   }

   to {
      transform: scale(1);
      opacity: 1
   }
}

.bk-success h3 {
   font-family: 'Playfair Display', serif;
   font-size: 1.3rem;
   color: var(--dark);
   margin-bottom: 8px
}

.bk-success p {
   font-size: .875rem;
   color: var(--text-muted);
   line-height: 1.65;
   max-width: 300px
}

.bk-success-close {
   margin-top: 24px;
   padding: 12px 36px;
   background: var(--primary);
   color: #fff;
   border: none;
   border-radius: 100px;
   font-family: 'DM Sans', sans-serif;
   font-size: .9rem;
   font-weight: 600;
   cursor: pointer;
   transition: background .2s, transform .2s
}

.bk-success-close:hover {
   background: var(--primary-light);
   transform: translateY(-2px)
}

@media(max-width:460px) {
   .bk-modal {
      padding: 28px 18px 24px
   }

   .bk-head h2 {
      font-size: 1.2rem
   }
}

.menu-bar{
     display: flex;
     justify-content: center;
}

@media(max-width:600px){
   .menu-bar{
      display: block;
   }

   .menu-btn-desk{
   display: block !important;
}


}

.menu-btn-desk{
   display: none;
}

.support-card .add-icon{
   width: 80px;
   height: auto;
}

.result-container{
   padding: 40px 0px;
}

.img-results{
   display: flex;
   align-items: center;
       border: 1px solid #e4e4e4;
    border-radius: 12px;
    justify-content: center;
}

.img-results img{
       border-radius: 12px;

}

@media(max-width:600px){
   .img-results{
      border: none;
   }

   .result-container{
   padding: 20px;
}
#results{
   padding: 60px 10px;
}
}

.cta-btn{
       display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.step-tittle{
   text-align: center;
}

.Founder-img{
   border-radius: 50%;
} 

.bk-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.wsp-whatsapp{
	position:fixed;
	width:55px;
	height:55px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.websensepro-whatsapp-icon{
  height:40px;
  width:40px;
}

@media (max-width: 768px) {
  .wsp-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 12px;
  }
}

.thankyou-section{
padding:120px 20px;
text-align:center;
background:#f7faf7;
font-family:system-ui;
}

.thankyou-container{
max-width:650px;
margin:auto;
}

.thankyou-icon{
font-size:48px;
margin-bottom:20px;
}

.thankyou-section h1{
font-size:36px;
margin-bottom:16px;
}

.thankyou-subtext{
font-size:18px;
color:#555;
margin-bottom:40px;
line-height:1.6;
}

.thankyou-actions{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.btn-primary{
background:#2e7d32;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:1px solid #ddd;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:#333;
}

.success-icon
 {
    width: 200px;
    height: auto;
}

   button.btn-primary-custom.open-booking-modal.sticky-btn {
      display: none;
   }


@media(max-width:600px){
   button.btn-primary-custom.open-booking-modal.sticky-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    justify-content: center;
    z-index: 10;
    display: block;
    background: #12301e;
}
}