/* ===== CSS Variables - Green Brand ===== */
:root {
    --background: hsl(0 0% 100%);
    --foreground: hsl(160 10% 12%);
    --card: hsl(0 0% 100%);
    --card-foreground: hsl(160 10% 12%);
    --primary: #159947;
    --primary-light: #1db954;
    --primary-dark: #0e7a39;
    --primary-foreground: hsl(0 0% 100%);
    --secondary: hsl(145 20% 96%);
    --secondary-foreground: hsl(160 15% 22%);
    --muted: hsl(145 15% 96%);
    --muted-foreground: hsl(160 8% 42%);
    --accent: hsl(145 60% 95%);
    --accent-foreground: #159947;
    --border-color: rgba(209, 231, 209, 0.5);
    --border: hsl(145 15% 88%);
    --input: hsl(145 12% 90%);
    --ring: #159947;
    --radius: 0.75rem;
    --glow-primary: 0 4px 20px hsla(145, 75%, 35%, 0.18);
    --gradient-primary: linear-gradient(135deg, #159947 0%, #1db954 60%, #2ecc71 100%);
    --gradient-accent: linear-gradient(135deg, #159947 0%, #1db954 50%, #27ae60 100%);
    --gradient-hero: linear-gradient(135deg, #0e7a39 0%, #159947 40%, #1db954 100%);
    --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: hsl(145 15% 96%);
}

::-webkit-scrollbar-thumb {
    background: hsla(145, 75%, 35%, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsla(145, 75%, 35%, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--foreground);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

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

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--muted-foreground);
}

.text-foreground {
    color: var(--foreground);
}

.bg-card {
    background-color: var(--card);
}

.bg-secondary {
    background-color: var(--secondary);
}

/* ===== Badges ===== */
.badge-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background: #e8f5e9;
    color: #159947;
}

.badge-success {
    background: #f0fdf4;
    color: #16a34a;
}

.badge-outline {
    border: 1px solid var(--border-color);
    color: var(--muted-foreground);
}

.badge-tag.outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #6b7280;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.2s ease;
}

.badge-tag.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(21, 153, 71, 0.05);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
}

.btn-hero {
    background: var(--gradient-accent);
    color: var(--primary-foreground);
    box-shadow: var(--glow-primary);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsla(145, 75%, 35%, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    color: var(--foreground);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-white {
    background: white;
    color: #159947;
}

.btn-white:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Navbar ===== */
.navbar-cabins {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-cabins.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.navbar-cabins-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-cabins {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-cabins-img {
    height: 40px;
    width: auto;
}

.logo-cabins-text {
    display: flex;
    flex-direction: column;
}

.logo-cabins-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #159947;
    line-height: 1.2;
}

.logo-cabins-tagline {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.nav-cabins-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-cabins-links {
        display: flex;
    }
}

.nav-cabins-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
    position: relative;
}

.nav-cabins-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-cabins-link:hover {
    color: var(--primary);
}

.nav-cabins-link:hover::after {
    width: 100%;
}

.nav-cabins-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .nav-cabins-cta {
        display: flex;
    }
}

.mobile-menu-btn-cabins {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn-cabins {
        display: none;
    }
}

.mobile-menu-cabins {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(0, 0%, 100%, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5rem 2rem 2rem;
    z-index: 40;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-cabins.is-open {
    display: flex;
}

.mobile-cabins-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-cabins-link:hover {
    color: var(--primary);
}

.mobile-cabins-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.no-scroll {
    overflow: hidden;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {

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

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(60px) brightness(1);
    }

    50% {
        opacity: 0.55;
        filter: blur(70px) brightness(1.2);
    }
}

@keyframes float-random-1 {

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

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

@keyframes float-random-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(-40px, 30px) scale(1.15) rotate(5deg);
    }

    66% {
        transform: translate(25px, -35px) scale(0.9) rotate(-5deg);
    }
}

@keyframes float-random-3 {

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

    20% {
        transform: translate(35px, 25px) scale(1.08);
    }

    40% {
        transform: translate(-30px, -20px) scale(0.92);
    }

    60% {
        transform: translate(20px, 40px) scale(1.12);
    }

    80% {
        transform: translate(-25px, 15px) scale(0.96);
    }
}

/* ===== Hero Section ===== */
.hero-cabins {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    background: linear-gradient(180deg, hsla(145, 40%, 97%, 0.3) 0%, hsl(0 0% 100%) 100%);
}

.hero-cabins-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-cabins-gradient-1 {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, hsla(145, 75%, 45%, 0.25), hsla(145, 60%, 55%, 0.12), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-1 20s ease-in-out infinite, pulse-glow 8s ease-in-out infinite;
}

.hero-cabins-gradient-2 {
    position: absolute;
    top: 35%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, hsla(160, 80%, 40%, 0.2), hsla(145, 60%, 50%, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-2 25s ease-in-out infinite, pulse-glow 10s ease-in-out infinite 2s;
}

.hero-cabins-gradient-3 {
    position: absolute;
    bottom: 10%;
    left: 25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(145, 75%, 35%, 0.18), hsla(145, 60%, 55%, 0.08), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-random-3 30s ease-in-out infinite, pulse-glow 12s ease-in-out infinite 4s;
}

.hero-cabins-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsla(145, 75%, 35%, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, hsla(145, 75%, 35%, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-cabins-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--background), transparent);
}

.hero-cabins-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-cabins-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-cabins-text {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cabins-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21, 153, 71, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(21, 153, 71, 0.1);
}

.hero-cabins-badge-icon {
    width: 20px;
    height: 20px;
    color: #159947;
}

.hero-cabins-badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #159947;
}

.hero-cabins-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-cabins-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-cabins-title {
        font-size: 3.75rem;
    }
}

.hero-cabins-subtitle {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cabins-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-cabins-stat {
    text-align: left;
}

.hero-cabins-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-cabins-stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.hero-cabins-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

@media (min-width: 640px) {
    .hero-cabins-cta {
        flex-direction: row;
    }
}

.hero-cabins-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.hero-cabins-card {
    background: var(--card);
    border-radius: 1.25rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.hero-cabins-card img {
    border-radius: 0.75rem;
    width: 100%;
    height: auto;
}

.hero-cabins-float-1 {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: var(--card);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    animation: float-delayed 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.hero-cabins-float-2 {
    position: absolute;
    bottom: -0.75rem;
    left: -0.75rem;
    background: var(--card);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    animation: float 5s ease-in-out infinite 0.5s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator-inner {
    width: 24px;
    height: 40px;
    border: 2px solid hsla(145, 75%, 35%, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

@keyframes scroll-dot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(16px);
        opacity: 0;
    }
}

.scroll-indicator-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 9999px;
    animation: scroll-dot 1.5s infinite;
}

/* ===== Features Section ===== */
.features-cabins {
    padding: 6rem 0;
    background: hsla(145, 20%, 96%, 0.3);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.features-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-cabins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-cabins-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-cabin-card {
    background: var(--card);
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-cabin-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: hsla(145, 75%, 35%, 0.2);
    transform: translateY(-4px);
}

.feature-cabin-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    background: hsla(145, 60%, 40%, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-cabin-card:hover .feature-cabin-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.feature-cabin-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-cabin-card:hover .feature-cabin-icon svg {
    color: white;
}

.feature-cabin-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.feature-cabin-card:hover .feature-cabin-title {
    color: var(--primary);
}

.feature-cabin-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== Booking Demo Section ===== */
.booking-demo-cabins {
    padding: 6rem 0;
}

.booking-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .booking-demo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.booking-demo-visual {
    position: relative;
}

.booking-demo-card {
    background: var(--card);
    border-radius: 1.25rem;
    padding: 0.5rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.booking-demo-card-content {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.booking-demo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.booking-demo-card-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.booking-demo-dots {
    display: flex;
    gap: 0.35rem;
}

.booking-demo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
}

.booking-demo-dot.red {
    background: #ef4444;
}

.booking-demo-dot.yellow {
    background: #f59e0b;
}

.booking-demo-dot.green {
    background: var(--primary);
}

.booking-demo-dates {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.booking-demo-date {
    flex: 1;
    background: white;
    padding: 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid var(--border);
}

.booking-demo-date-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.booking-demo-date-value {
    font-size: 0.875rem;
    font-weight: 600;
}

.booking-demo-room {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.booking-demo-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.booking-demo-room-name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.booking-demo-room-guests {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.booking-demo-room-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-demo-room-per-night {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.booking-demo-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.booking-demo-total-label {
    font-weight: 500;
}

.booking-demo-total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-demo-float {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    animation: float 5s ease-in-out infinite 0.5s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-demo-content {
    animation: fadeInUp 1s ease-out backwards;
}

.booking-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(21, 153, 71, 0.08);
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(21, 153, 71, 0.1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== Benefits Grid ===== */
.benefits-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .benefits-cabins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-cabin-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-cabin-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(21, 153, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-cabin-check svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.benefit-cabin-text {
    font-size: 0.9375rem;
    color: var(--foreground);
    font-weight: 400;
}

/* ===== Stats Grid ===== */
.stats-cabins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .stats-cabins-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-cabin-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-cabin-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(21, 153, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-cabin-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.stat-cabin-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-cabin-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ===== Testimonials ===== */
.testimonials-cabins {
    padding: 6rem 0;
    background: hsla(145, 20%, 96%, 0.3);
}

.testimonials-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-cabins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-cabins-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-cabin-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial-cabin-card:hover {
    border-color: hsla(145, 75%, 35%, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.rating-cabins {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-cabin {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.testimonial-cabin-quote {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-cabin-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-cabin-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(21, 153, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-cabin-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-cabin-author-name {
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial-cabin-author-role {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* ===== Pricing Section ===== */
.pricing-cabins {
    padding: 6rem 0;
}

.pricing-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 64rem;
}

@media (min-width: 768px) {
    .pricing-cabins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-cabin-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-cabin-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-color: hsla(145, 75%, 35%, 0.2);
    transform: translateY(-4px);
}

.pricing-cabin-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 10px 40px rgba(21, 153, 71, 0.1);
}

.pricing-cabin-popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-cabin-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-cabin-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.pricing-cabin-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.pricing-cabin-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--foreground);
}

.pricing-cabin-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-cabin-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-cabin-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.pricing-cabin-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(21, 153, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-cabin-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

/* ===== FAQ Section ===== */
.faq-cabins {
    padding: 6rem 0;
    background: hsla(145, 20%, 96%, 0.3);
}

.faq-cabins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-cabin-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-cabin-item:hover {
    border-color: rgba(21, 153, 71, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-cabin-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.faq-cabin-question:hover {
    background: #f8fafb;
    color: var(--primary);
}

.faq-cabin-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--muted-foreground);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-cabin-question.active .faq-cabin-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-cabin-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-cabin-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ===== CTA Section ===== */
.cta-cabins-section {
    padding: 6rem 1rem;
}

.cta-cabins-card {
    background: var(--gradient-hero);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 60px -10px hsla(145, 75%, 30%, 0.3);
}

@media (min-width: 768px) {
    .cta-cabins-card {
        padding: 4rem 3rem;
    }
}

.cta-cabins-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: float-random-1 30s ease-in-out infinite;
}

.cta-cabins-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .cta-cabins-title {
        font-size: 2.5rem;
    }
}

.cta-cabins-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-cabins-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .cta-cabins-btn-group {
        flex-direction: row;
    }
}

/* ===== Footer ===== */
.footer-cabins {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: hsla(145, 20%, 96%, 0.2);
}

.footer-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-cabins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-cabins-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-cabins-brand {
    max-width: 320px;
}

.footer-cabins-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-cabins-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-cabins-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-cabins-social {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.footer-cabins-social:hover {
    color: var(--primary);
    border-color: hsla(145, 75%, 35%, 0.3);
}

.footer-cabins-social svg {
    width: 20px;
    height: 20px;
}

.footer-cabins-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-cabins-links {
    list-style: none;
}

.footer-cabins-link {
    margin-bottom: 0.75rem;
}

.footer-cabins-link a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-cabins-link a:hover {
    color: var(--primary);
}

.footer-cabins-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-cabins-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-cabins-copyright {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* ===== Blog Tags / Tags Row ===== */
.tags-cabins-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.tag-cabin {
    display: inline-flex;
    padding: 0.4rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted-foreground);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.tag-cabin:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(21, 153, 71, 0.04);
}

/* ===== Message Alert ===== */
.cont_mensaje {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px 0px 10px #969696;
    z-index: 2000;
    text-align: center;
}

.isTrue {
    background: #159947;
    border: 1px solid #0e7a39;
}

.isFalse {
    background: #dc2626;
    border: 1px solid #b91c1c;
}

.text_mensaje {
    display: inline-block;
    color: white;
    padding: 0.8em 0;
}

.circle_ex {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
}

.inp_fail {
    border: 2px solid #dc2626 !important;
}

/* ===== Contact Form ===== */
.form-cabins {
    max-width: 32rem;
    margin: 0 auto;
}

.form-cabins-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-cabins-row {
        flex-direction: row;
    }

    .form-cabins-row .form-cabins-group {
        flex: 1;
    }
}

.form-cabins-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-cabins-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-cabins-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: var(--font-sans);
}

.form-cabins-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 153, 71, 0.1);
}

.form-cabins-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-sans);
}

.form-cabins-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 153, 71, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .hero-cabins-title {
        font-size: 1.75rem;
    }

    .hero-cabins-subtitle {
        font-size: 0.9375rem;
    }

    .hero-cabins-stats {
        gap: 1.25rem;
    }

    .hero-cabins-stat-value {
        font-size: 1.375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-cabins-title {
        font-size: 1.5rem;
    }

    .pricing-cabin-amount {
        font-size: 2rem;
    }
}

/* ===== Gradient Bg Effect (from existing pattern) ===== */
.gradient-bg-cabins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* ===== Section Spacing ===== */
.separador {
    height: 1rem;
    width: 100%;
}

.separador_m {
    height: 2rem;
    width: 100%;
}

/* ===== Lazy load / reveal animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed,
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FAQ Accordion ===== */
.faq-cabins {
    padding: 6rem 0;
}

.faq-cabins-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-cabin-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-cabin-item.open,
.faq-cabin-item:hover {
    border-color: rgba(21, 153, 71, 0.25);
    box-shadow: 0 4px 20px rgba(21, 153, 71, 0.06);
}

.faq-cabin-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--foreground);
    text-align: left;
    gap: 1rem;
}

.faq-cabin-question span {
    flex: 1;
}

.faq-cabin-icon {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-cabin-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-cabin-answer-content {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-cabins-section {
    padding: 6rem 0;
}

.cta-cabins-inner {
    position: relative;
    background: var(--gradient-hero);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    overflow: hidden;
    text-align: center;
}

.cta-cabins-bg-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent);
    border-radius: 50%;
}

.cta-cabins-bg-2 {
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
}

.cta-cabins-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-cabins-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 1rem 0;
    letter-spacing: -0.03em;
}

@media (min-width: 768px) {
    .cta-cabins-title {
        font-size: 2.5rem;
    }
}

.cta-cabins-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-cabins-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-cabins-actions {
        flex-direction: row;
    }
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===== Footer ===== */
.footer-cabins {
    background: hsl(160 10% 8%);
    padding: 4rem 0 2rem;
}

.footer-cabins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-cabins-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-cabins-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-cabins-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-cabins-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1db954;
}

.footer-cabins-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-cabins-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-cabins-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-cabins-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-cabins-social:hover {
    background: rgba(21, 153, 71, 0.2);
    color: #1db954;
}

.footer-cabins-col-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-cabins-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-cabins-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-cabins-link:hover {
    color: #1db954;
}

.footer-cabins-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-cabins-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-cabins-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Testimonials Section (clases genéricas del PUG) ===== */
.testimonials-section {
    padding: 6rem 0;
    background: hsla(145, 20%, 96%, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    border-color: rgba(21, 153, 71, 0.2);
    box-shadow: 0 12px 30px rgba(21, 153, 71, 0.07);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.testimonial-quote {
    font-size: 0.9375rem;
    color: var(--foreground);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(21, 153, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary);
    flex-shrink: 0;
}

.testimonial-author-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--foreground);
}

.testimonial-author-place {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* ===== Workflow Section (clases genéricas del PUG) ===== */
.workflow-section {
    padding: 6rem 0;
    background: white;
}

.workflow-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
}

.workflow-card-desc {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.65;
}

/* ===== FAQ Section (clases genéricas del PUG) ===== */
.faq-section {
    padding: 6rem 0;
    background: hsla(145, 20%, 96%, 0.3);
}

.faq-list {
    max-width: 48rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(21, 153, 71, 0.25);
    box-shadow: 0 4px 20px rgba(21, 153, 71, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--foreground);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ===== Demo Page Styles ===== */
.demo-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%, #f0fdf4 100%);
    display: flex;
    flex-direction: column;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    flex: 1;
}

@media(min-width: 960px) {
    .demo-layout {
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - 72px);
    }
}

/* Left panel */
.demo-left {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, #0d4f24 0%, #159947 60%, #1db954 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.demo-left-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
}

.demo-left-content {
    position: relative;
    z-index: 2;
}

@media(min-width: 960px) {
    .demo-left {
        padding: 4rem 3.5rem;
    }
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.demo-brand img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.demo-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.demo-brand-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.demo-left-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

@media(min-width: 960px) {
    .demo-left-title {
        font-size: 2.5rem;
    }
}

.demo-left-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.demo-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.demo-benefit-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-benefit-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.demo-benefit-text strong {
    color: white;
}

.demo-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
}

.demo-testimonial-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1rem;
}

.demo-testimonial-author {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.demo-testimonial-author strong {
    color: white;
    display: block;
    margin-bottom: 0.125rem;
}

/* Right panel - Form */
.demo-right {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width: 960px) {
    .demo-right {
        padding: 3rem 3.5rem;
    }
}

.demo-form-title {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.demo-form-subtitle {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media(max-width: 480px) {
    .demo-form-row {
        grid-template-columns: 1fr;
    }
}

.demo-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.demo-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
}

.demo-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--foreground);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.demo-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 153, 71, 0.1);
}

.demo-input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
}

.demo-cabins-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

@media(max-width: 420px) {
    .demo-cabins-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

.demo-cabin-opt {
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.875rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
    font-family: inherit;
}

.demo-cabin-opt:hover {
    border-color: var(--primary);
    background: #f0fdf4;
}

.demo-cabin-opt.selected {
    border-color: var(--primary);
    background: #f0fdf4;
    color: var(--primary);
    font-weight: 700;
}

.demo-cabin-opt-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    display: block;
}

.demo-cabin-opt.selected .demo-cabin-opt-num {
    color: var(--primary);
}

.demo-cabin-opt-label {
    font-size: 0.7rem;
    color: var(--muted-foreground);
}

.demo-submit {
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.demo-submit:hover {
    background: #127a38;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(21, 153, 71, 0.3);
}

.demo-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.demo-privacy {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

.demo-privacy a {
    color: var(--primary);
    text-decoration: none;
}

.demo-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.demo-success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.demo-success-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.demo-success-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.demo-msg {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: none;
}

.demo-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.demo-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ===== Contact Page Styles ===== */
.contact-page {
    min-height: 100vh;
    background: #fafafa;
}

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

@media(min-width: 960px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - 72px);
    }
}

/* Left panel */
.contact-left {
    padding: 3.5rem 2.5rem;
    background: linear-gradient(160deg, #0d4f24 0%, #159947 55%, #1db954 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.contact-left-content {
    position: relative;
    z-index: 2;
}

@media(min-width: 960px) {
    .contact-left {
        padding: 4rem 3.5rem;
    }
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    text-decoration: none;
}

.contact-brand img {
    width: 38px;
    height: 38px;
    filter: brightness(0) invert(1);
}

.contact-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.contact-brand-tag {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-left-title {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.875rem;
    color: white;
}

@media(min-width: 960px) {
    .contact-left-title {
        font-size: 2.25rem;
    }
}

.contact-left-sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 380px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    padding: 1rem 1.25rem;
    transition: background 0.2s;
    text-decoration: none;
}

.contact-channel:hover {
    background: rgba(255, 255, 255, 0.16);
}

.contact-channel-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.contact-channel-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

.contact-promise {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.contact-promise-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-promise-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

.contact-promise-text strong {
    color: white;
}

/* Right panel */
.contact-right {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

@media(min-width: 960px) {
    .contact-right {
        padding: 3.5rem 3.5rem;
    }
}

.contact-form-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.contact-form-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media(max-width: 500px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-input,
.contact-select,
.contact-textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--foreground);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 153, 71, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: var(--muted-foreground);
    opacity: 0.7;
}

.contact-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.contact-select {
    appearance: none;
    cursor: pointer;
}

.contact-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

@media(max-width: 400px) {
    .contact-type-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-type-btn {
    border: 1.5px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 0.5rem;
    text-align: center;
    cursor: pointer;
    background: white;
    font-family: inherit;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: all 0.2s;
}

.contact-type-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f0fdf4;
}

.contact-type-btn.selected {
    border-color: var(--primary);
    background: #f0fdf4;
    color: var(--primary);
    font-weight: 700;
}

.contact-type-emoji {
    display: block;
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.contact-submit {
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.25rem;
    width: 100%;
}

.contact-submit:hover {
    background: #127a38;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(21, 153, 71, 0.3);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-msg {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: none;
}

.contact-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.contact-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.contact-privacy {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 0.5rem;
}

.contact-privacy a {
    color: var(--primary);
    text-decoration: none;
}

.contact-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

.contact-success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-success-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.contact-success-text {
    color: var(--muted-foreground);
    line-height: 1.65;
}

/* ===== Hero Trust Bar ===== */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(21, 153, 71, 0.04);
    border: 1px solid rgba(21, 153, 71, 0.1);
    max-width: fit-content;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hero-trust-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.7rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.hero-trust-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
}

@media(max-width: 640px) {
    .hero-trust-bar {
        gap: 1rem;
        justify-content: center;
        width: 100%;
        max-width: none;
    }

    .hero-trust-sep {
        display: none;
    }

    .hero-trust-item {
        text-align: center;
        flex: 1 1 40%;
    }

    .hero-trust-value {
        font-size: 1.1rem;
    }
}

/* ===== PAGE-SPECIFIC OVERRIDES ===== */
.hero-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}
.hero-dashboard-img {
  margin-top: 3.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.22), 0 0 0 1px rgba(21,153,71,0.08);
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  animation: float 7s ease-in-out infinite;
  border: 1px solid var(--border);
}


/* ===== WORKFLOW SECTION ===== */
.workflow-section {
  background: var(--background);
  padding: 6rem 0;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
@media(min-width: 768px) {
  .workflow-grid { grid-template-columns: repeat(3, 1fr); }
}
.workflow-connector {
  display: none;
}
@media(min-width: 768px) {
  .workflow-connector {
    display: block;
    position: absolute;
    top: 40px;
    left: calc(33.33% - 10px);
    right: calc(33.33% - 10px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(21,153,71,0.25), transparent);
    pointer-events: none;
  }
}
.workflow-card {
  background: var(--card);
  padding: 2.25rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.workflow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.workflow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21,153,71,0.25);
  box-shadow: 0 20px 40px rgba(21,153,71,0.08);
}
.workflow-card:hover::before { opacity: 1; }
.workflow-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(21,153,71,0.25);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.workflow-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--foreground);
}
.workflow-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.workflow-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(21,153,71,0.07);
  border: 1px solid rgba(21,153,71,0.12);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== DARK ROI SECTION ===== */
.dark-roi-section {
  background: hsl(160 10% 8%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dark-roi-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,153,71,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dark-roi-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(21,153,71,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.roi-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
@media(min-width: 768px) {
  .roi-metrics { grid-template-columns: repeat(3, 1fr); }
}
.roi-metric-item {
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.roi-metric-item:last-child { border-right: none; }
@media(max-width: 768px) {
  .roi-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .roi-metric-item:last-child { border-bottom: none; }
}
.roi-metric-value {
  font-size: 3.75rem;
  font-weight: 800;
  color: #1db954;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.roi-metric-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 0.35rem;
  line-height: 1.5;
}
.roi-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(21,153,71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.roi-metric-icon svg {
  width: 22px;
  height: 22px;
  color: #1db954;
}

/* ===== WHY US SECTION ===== */
.why-section {
  padding: 6rem 0;
  background: hsla(145, 20%, 97%, 0.5);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.5rem;
}
@media(min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.why-item:hover {
  border-color: rgba(21,153,71,0.2);
  box-shadow: 0 8px 24px rgba(21,153,71,0.07);
  transform: translateX(4px);
}
.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(21,153,71,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.why-item:hover .why-item-icon {
  background: var(--gradient-primary);
}
.why-item-icon svg { width: 22px; height: 22px; color: var(--primary); transition: color 0.3s ease; }
.why-item:hover .why-item-icon svg { color: white; }
.why-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.why-item-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.why-visual {
  position: relative;
}
.why-dashboard-card {
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  overflow: hidden;
}
.why-dashboard-header {
  background: hsl(160 10% 8%);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wdh-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.wdh-dot.red { background: #ef4444; }
.wdh-dot.yellow { background: #f59e0b; }
.wdh-dot.green { background: #22c55e; }
.wdh-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.why-dashboard-body {
  padding: 1.5rem;
}
.why-stat-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.why-stat-card {
  flex: 1;
  padding: 1rem;
  background: hsla(145, 20%, 97%, 0.7);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}
.why-stat-card-label {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.why-stat-card-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}
.why-task-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.why-task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
}
.why-task-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.why-task-dot.done { background: #22c55e; }
.why-task-dot.pending { background: #f59e0b; }
.why-task-dot.new { background: #3b82f6; }
.why-task-status {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}
.why-task-status.done { background: #dcfce7; color: #16a34a; }
.why-task-status.pending { background: #fef9c3; color: #a16207; }
.why-task-status.new { background: #dbeafe; color: #1d4ed8; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--background);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media(min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(21,153,71,0.06);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  border-color: rgba(21,153,71,0.2);
  box-shadow: 0 12px 32px rgba(21,153,71,0.07);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testimonial-stars svg { width: 16px; height: 16px; color: #f59e0b; }
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 700;
  font-size: 0.9375rem;
}
.testimonial-author-place {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
  background: hsla(145, 20%, 97%, 0.5);
}
.faq-list {
  max-width: 50rem;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open,
.faq-item:hover {
  border-color: rgba(21,153,71,0.25);
  box-shadow: 0 4px 20px rgba(21,153,71,0.07);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--foreground);
  text-align: left;
  gap: 1rem;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-question span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-content {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ===== BROWSER MOCKUP ===== */
.browser-mockup {
  background: var(--card);
  border-radius: 1.25rem;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.2), 0 0 0 1px rgba(21,153,71,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}
.browser-header {
  background: hsl(220 14% 96%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ef4444; }
.browser-dot:nth-child(2) { background: #f59e0b; }
.browser-dot:nth-child(3) { background: #10b981; }
.browser-url {
  background: white;
  margin-left: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  font-size: 0.72rem;
  color: var(--muted-foreground);
  flex: 1;
  text-align: center;
  border: 1px solid var(--border);
}

/* ===== PROCESS SECTION ===== */
.process-section { padding: 6rem 0; background: hsla(145,20%,97%,0.5); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
  counter-reset: step;
}
@media(min-width:768px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .process-steps { grid-template-columns: repeat(4,1fr); } }
.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.process-step:hover { transform: translateY(-6px); border-color: rgba(21,153,71,0.25); box-shadow: 0 20px 40px rgba(21,153,71,0.08); }
.process-step:hover::before { opacity: 1; }
.process-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary);
  color: white; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(21,153,71,0.25);
}
.process-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; }

.w-100 { width: 100%; }

/* Custom tweaks for Pricing Page */
.pricing-hero {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
}
.pricing-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media(min-width: 768px) { .pricing-hero-title { font-size: 3.5rem; } }

.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media(min-width: 768px) { .value-prop-grid { grid-template-columns: repeat(3, 1fr); } }

.value-prop-card {
  background: hsla(145, 60%, 95%, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.value-prop-card svg {
  width: 40px; height: 40px; color: var(--primary); margin-bottom: 1rem;
}

/* Glamping Luxury Theme Adaptation */
.hero-glamping {
  background: linear-gradient(to bottom, #0f172a 0%, #1e293b 100%);
  color: white; padding-top: 9rem; padding-bottom: 7rem; position: relative; overflow: hidden;
}
.hero-glamping .hero-cabins-title { color: white; }
.hero-glamping .hero-cabins-subtitle { color: rgba(255,255,255,0.7); }
.hero-glamping-mesh {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(#1db954 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-trust-bar-glamping {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem;
  padding: 1.1rem 1.5rem; border-radius: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  max-width: fit-content;
}
.hero-trust-item-glamping { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-trust-value-glamping { font-size: 1.5rem; font-weight: 800; color: #1db954; line-height: 1; }
.hero-trust-label-glamping { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-trust-sep-glamping { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

.acc-card {
  background: white; border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 2.5rem 1.5rem; text-align: center; transition: all 0.35s ease;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.acc-card:hover { transform: translateY(-8px); border-color: #1db954; box-shadow: 0 20px 40px rgba(21,153,71,0.08); }
.acc-icon { width: 50px; height: 50px; color: #1db954; }

.acc-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; margin-top: 3.5rem; }
@media(min-width:640px){ .acc-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .acc-grid { grid-template-columns: repeat(3,1fr); } }
.acc-card-title { font-size: 1.1rem; font-weight: 700; color: var(--foreground); }
.acc-card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; }
.glamping-features { padding: 6rem 0; background: white; }
.glamping-hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(29,185,84,0.12); padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid rgba(29,185,84,0.2); margin-bottom: 1.5rem; }
.glamping-hero-badge span { font-size: 0.8125rem; font-weight: 600; color: #1db954; }

/* Custom tweaks for Rural/Posada Theme */
.hero-rural {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-rural-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 153, 71, 0.1), transparent);
  border-radius: 50%;
  filter: blur(40px);
}
.rural-card-highlight {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(21, 153, 71, 0.08);
  border: 1px solid rgba(21, 153, 71, 0.15);
  text-align: center;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}