/* ===============================
   CSS VARIABLES
   =============================== */
   :root {
    /* Light theme colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-tertiary: #374151;
    --border-primary: #e5e7eb;
    --border-secondary: #f3f4f6;
    --nav-bg: rgba(255, 255, 255, 0.95);

    /* Brand colors */
    --brand-primary: #d9166a;
    --brand-secondary: #4338CA;
    --brand-accent: #E91E63;
    --brand-purple: #6366F1;
    --brand-pink: #F472B6;
    --brand-violet: #8B5CF6;
    --brand-indigo: #3730A3;
    --brand-rose: #9D174D;
    --brand-table: #f3098b;

    /* Primary pink colors for CTA section */
    --primary-pink: #E91E63;
    --primary-pink-light: #FFF5F8;
    --primary-pink-dark: #C2185B;
    --primary-pink-shadow: rgba(233, 30, 99, 0.3);

    /* Utility colors */
    --success: #22c55e;
    --error: red;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-border: #e5e5e5;
    --phone-text: #333333;
    --phone-text-light: #666666;

    /* Background overlays */
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.4);
    --overlay-medium: rgba(255, 255, 255, 0.7);

    /* Shadow colors */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-brand: rgba(190, 24, 93, 0.3);
    --shadow-brand-light: rgba(190, 24, 93, 0.2);
    --shadow-pink: rgba(244, 114, 182, 0.3);

    /* Phone mockup colors */
    --phone-bg-1: rgba(0, 0, 0, 0.4);
    --phone-bg-2: rgba(0, 0, 0, 0.6);
    --phone-gradient-1: rgba(233, 30, 99, 0.9);
    --phone-gradient-2: rgba(156, 39, 176, 0.9);
    --phone-gradient-3: rgba(59, 130, 246, 0.9);
    --phone-gradient-4: rgba(29, 78, 216, 0.9);
    --phone-gradient-5: rgba(16, 185, 129, 0.9);
    --phone-gradient-6: rgba(5, 150, 105, 0.9);
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.logo-height {
    height: 40px;
}

.icon-size-32 {
    width: 32px;
    height: 32px;
}

.icon-white {
    color: white;
}

.text-brand {
    color: var(--brand-primary);
}

.full-size {
    width: 100%;
    height: 100%;
}

.cover-image {
    object-fit: cover;
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-lg {
    border-radius: 16px;
}

/* Form utility classes */
.form-input-base {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #FFCDD2;
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    background-color: transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input-focus {
    outline: none;
}

.form-validation-error {
    border-color: var(--error) !important;
}

.form-validation-success {
    border-color: var(--success) !important;
}

/* Input field error and success states */
input.error,
select.error {
    border-color: var(--error) !important;
}

input.success,
select.success {
    border-color: var(--success) ;
}

/* Phone input container error and success states */
.phone-input-container.error {
    border-color: var(--error) !important;
}

.phone-input-container.success {
    border-color: var(--success) !important;
}

/* ===============================
   GLOBAL STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(190, 24, 93, 0.06) 0%,
            rgba(67, 56, 202, 0.04) 25%,
            rgba(99, 102, 241, 0.06) 50%,
            rgba(244, 114, 182, 0.04) 75%,
            rgba(139, 92, 246, 0.06) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

/* ===============================
   ANIMATIONS
   =============================== */

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes nfcTap {
    0% {
        transform: translateX(0px) translateY(0) scale(0.8);
        opacity: 0;
    }

    45% {
        transform: translateX(-180px) translateY(-30vh) scale(0.98) rotate(2deg);
        opacity: 1;
    }

    50% {
        transform: translateX(-180px) translateY(-28vh) scale(0.98) rotate(2deg);
        opacity: 1;
    }

    55% {
        transform: translateX(-180px) translateY(-30vh) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0px) translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===============================
   HEADER NAVIGATION
   =============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 2rem;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-accent), var(--brand-purple), var(--brand-accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    background: linear-gradient(45deg, var(--brand-accent), var(--brand-purple), var(--brand-accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.05);
}

.logo img {
    filter: brightness(0.3) saturate(100%) invert(29%) sepia(89%) saturate(2341%) hue-rotate(320deg) brightness(95%) contrast(95%);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(0.3) saturate(100%) invert(29%) sepia(89%) saturate(2341%) hue-rotate(320deg) brightness(95%) contrast(95%);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cta-nav {
    background: var(--brand-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    color: white !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--border-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-tertiary);
}

.mobile-menu-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: scale(1.1);
}

.mobile-menu-btn i {
    width: 18px;
    height: 18px;
}

.mobile-close-btn {
    display: none;
    justify-content: flex-end;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-secondary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    position: relative;
}

.close-menu-btn:hover {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    transform: scale(1.1);
}

.close-menu-btn:hover i {
    color: white;
}

.close-menu-btn i {
    width: 28px;
    height: 28px;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.cta-btn {
    display: none;
    opacity: 1;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: var(--brand-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    color: white !important;
    transform: translateY(-1px);
}

.show-cta-btn {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hide-menu-btn {
    opacity: 0 !important;
    transform: scale(0) !important;
    pointer-events: none;
}

/* Header Navigation - Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-primary);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-close-btn {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        text-align: left;
        transition: all 0.3s ease;
    }

    .cta-nav {
        margin: 0.5rem 2rem;
        text-align: center;
        border-bottom: none !important;
        padding: 0.75rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-btn {
        display: none;
        opacity: 1;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        background: var(--brand-primary);
        color: white !important;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .cta-btn:hover {
        background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
        color: white !important;
        transform: translateY(-1px);
    }

    .show-cta-btn {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hide-menu-btn {
        opacity: 0 !important;
        transform: scale(0) !important;
        pointer-events: none;
    }
}

@media (max-width: 400px) {
    .nav-container {
        gap: 0px;
    }

    .nav-actions {
        gap: 0px;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .cta-btn {
        padding: 0.75rem 0.25rem;
    }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero-section {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    margin-top: 70px;
    overflow-x: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    margin-top: 1px;
}

.hero-highlight {
    background: var(--brand-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.benefit-item .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--brand-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--brand-rose), var(--brand-indigo));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-brand);
}

.btn-secondary {
    background: transparent;
    color: var(--text-tertiary);
    padding: 1rem 2rem;
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-brand-light);
}

.btn-secondary:hover i {
    color: var(--brand-primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===============================
   PHONE MOCKUP SECTION
   =============================== */
.phone-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mowgli-phone-container {
    width: 260px;
    height: 530px;
    background: var(--black);
    border-radius: 35px;
    padding: 5px;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.25),
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 5px 10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotate(5deg);
    transition: transform 0.6s ease-out, box-shadow 0.6s ease-out;
}

.mowgli-phone-container:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.35),
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.mowgli-phone-container.scrolled {
    transform: rotate(0deg);
}

.mowgli-phone-screen {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Phone Status Bar */
.mowgli-status-bar {
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

.mowgli-status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mowgli-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 1px;
}

.mowgli-bar {
    width: 2px;
    background: var(--white);
    border-radius: 1px;
}

.mowgli-bar:nth-child(1) {
    height: 3px;
}

.mowgli-bar:nth-child(2) {
    height: 4px;
}

.mowgli-bar:nth-child(3) {
    height: 5px;
}

.mowgli-bar:nth-child(4) {
    height: 6px;
}

.mowgli-wifi-icon,
.mowgli-battery-icon {
    width: 16px;
    height: 16px;
}

/* Phone Hero Section */
.mowgli-hero-section {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mowgli-hero-section.transitioning {
    transition: background 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mowgli-hero-section.slide-1 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee1.jpg') center/cover;
}

.mowgli-hero-section.slide-2 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee2.jpg') center/cover;
}

.mowgli-hero-section.slide-3 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee3.jpg') center/cover;
}

/* Phone Notifications */
.mowgli-notification {
    position: absolute;
    top: -100%;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 11px;
    display: flex;
    align-items: center;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: top 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
    z-index: 100;
}

.mowgli-notification.show {
    top: 8px;
    opacity: 1;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 8px;
    flex-shrink: 0;
}

.notification-icon i {
    width: 15px;
    height: 15px;
}

.notification-title {
    font-size: 12px;
    font-weight: 650;
    color: var(--black);
}

.notification-message {
    font-size: 11px;
    color: var(--phone-text-light);
}

/* Phone Back Button */
.mowgli-back-button {
    position: absolute;
    top: 30px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Store Sign */
.mowgli-store-sign {
    text-align: center;
    margin-bottom: 20px;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mowgli-slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
}

.mowgli-slide-content.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    position: relative;
}

.mowgli-store-name {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
}

.mowgli-store-type {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Phone Carousel Dots */
.mowgli-carousel-dots {
    display: flex;
    gap: 6px;
    cursor: pointer;
}

.mowgli-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--overlay-light);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 20px;
}

.mowgli-dot:hover {
    background: var(--overlay-medium);
}

.mowgli-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Phone Content Section */
.mowgli-content-section {
    padding: 7px 10px;
    flex: 1;
    overflow-y: auto;
    border-radius: 25px;
}

.mowgli-business-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--phone-text);
}

.mowgli-business-categories {
    font-size: 12px;
    color: var(--phone-text-light);
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.mowgli-business-info {
    font-size: 12px;
    color: var(--phone-text-light);
    margin-bottom: 8px;
}

.mowgli-open-status {
    color: var(--success);
    font-weight: 600;
}

.mowgli-stats-section {
    display: flex;
    gap: 17px;
    margin-bottom: 8px;
}

.mowgli-stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--phone-text-light);
}

.mowgli-stat-item i {
    width: 16px;
    height: 14px;
}

/* Phone Action Buttons */
.mowgli-action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mowgli-member-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mowgli-member-btn.active {
    background: var(--brand-primary);
    color: white;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.mowgli-member-btn.active svg {
    animation: heartPop 0.5s ease forwards;
}

.mowgli-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--gray-100);
    color: var(--phone-text);
    border: none;
    border-radius: 12px;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.mowgli-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--phone-text);
    margin: 10px 0;
}

/* Phone Reward Card */
.mowgli-reward-card {
    background: linear-gradient(135deg,
            rgba(244, 114, 182, 0.15) 0%,
            rgba(139, 92, 246, 0.12) 25%,
            rgba(99, 102, 241, 0.1) 50%,
            rgba(244, 114, 182, 0.08) 75%,
            rgba(139, 92, 246, 0.15) 100%);
    border-radius: 16px;
    padding: 8px 15px;
    box-shadow:
        0 8px 32px rgba(244, 114, 182, 0.2),
        0 4px 16px rgba(139, 92, 246, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mowgli-reward-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(244, 114, 182, 0.3),
            rgba(139, 92, 246, 0.2),
            rgba(244, 114, 182, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: -1;
}

.mowgli-reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 2s ease;
    pointer-events: none;
    border-radius: 16px;
}

.mowgli-reward-card:hover::before {
    left: 100%;
}

.mowgli-reward-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(244, 114, 182, 0.3),
        0 6px 20px rgba(139, 92, 246, 0.2),
        0 3px 12px rgba(0, 0, 0, 0.15);
}

/*  PHONE REWARD COMPONENTS */
.mowgli-reward-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mowgli-reward-content {
    flex: 1;
    text-align: left;
}

.mowgli-reward-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--phone-text);
    margin-bottom: 6px;
    text-align: left;
}

.mowgli-welcome-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
    text-align: left;
}

.mowgli-reward-logo {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, var(--brand-secondary), var(--brand-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* FLOATING CHARACTERS */
.floating-characters {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.faq-character {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.character1 {
    top: 5%;
    right: -20%;
    animation-delay: 0s;
}

.character2 {
    bottom: 5%;
    left: -20%;
    animation-delay: 1.5s;
}

.tapping-card-container {
    position: absolute;
    top: 22%;
    right: -315px;
    width: 400px;
    height: 350px;
    z-index: 300;
    opacity: 1;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.tapping-card {
    object-fit: contain;
}

.tapping-card-container.active {
    animation: nfcTap 2.5s cubic-bezier(0.3, 0.7, 0.2, 1) forwards;
}

/* Hero Section - Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 2rem 6rem;
        margin-top: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===============================
   STATS SECTION
   =============================== */
.stats-section {
    padding: 3rem 2rem 2rem;
    background: var(--brand-primary);
    color: white;
    scroll-margin-top: 100px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-arrow {
    width: 30px;
    height: 30px;
    color: rgb(0, 239, 40);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.stats-section .subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-text {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 800;
}

.stat-description {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    line-height: 1.4;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   FEATURES SECTION
   =============================== */
.features-section {
    text-align: center;
    background: var(--bg-primary);
    padding: 3rem 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 630;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===============================
   BENEFITS SECTION
   =============================== */
.benefits-section {
    padding: 6rem 2rem 3rem;
    background: var(--bg-secondary);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.benefit-item:nth-child(even) .benefit-content {
    order: 2;
}

.benefit-item:nth-child(even) .benefit-visual {
    order: 1;
}

.benefit-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.benefit-visual {
    background: var(--border-primary);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 1.2rem;
}

/* Benefits Statistics List Styles */
.stats-list-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.stat-list-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.stat-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(233, 30, 99, 0.04));
    color: var(--brand-primary);
    flex-shrink: 0;
}

.stat-list-icon i {
    width: 10px;
    height: 10px;
}

.stat-list-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-tertiary);
}

.stat-list-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.feature-media .blob-image {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-section {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(233, 30, 99, 0.3) 0px 10px 20px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.4), rgba(139, 92, 246, 0.35));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-business {
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-tertiary);
    position: relative;
    padding-left: 40px;
}

.testimonial-quote::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 42px;
    line-height: 1;
    background: linear-gradient(45deg, var(--brand-secondary), var(--brand-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 480px) {
     /* Testimonials responsive styles */
     .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0;
    }

    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-business {
        font-size: 0.85rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding-left: 30px;
        line-height: 1.6;
    }

    .testimonial-quote::before {
        font-size: 32px;
        top: -8px;
    }
}

/* ===============================
   FAQ SECTION
   =============================== */
.faq-section {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Items Wrapper */
.faq-items-wrapper {
    display: grid;
    grid-template-columns: 2fr 0.7fr;
    align-items: start;
    margin: 3rem 0;
}

.faq-items-content {
    width: 100%;
}

.faq-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 7rem;
}

/* FAQ Image Container */
.faq-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Make FAQ cards match feature card look */
.faq-grid .feature-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 360px;
}

.faq-grid .feature-card .steps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.faq-grid .feature-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.faq-grid .feature-card .feature-title {
    max-width: 28ch;
}

.faq-grid .feature-card .feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 48ch;
    margin: 0.5rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 112, 255, 0.06), 0 1.5px 6px rgba(80, 112, 255, 0.03);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
    width: 80%;
    cursor: pointer;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-item.active {
    box-shadow: 0 8px 32px rgba(80, 112, 255, 0.12), 0 2px 8px rgba(80, 112, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 2rem 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    transition: background 0.2s;
}

.faq-item.active .faq-question {
    color: var(--brand-primary);
}

.faq-question:hover {
    background: #f6f8fa;
}

.faq-arrow {
    display: inline-block;
    margin-left: 1rem;
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border: none;
    position: relative;
}

.faq-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
    position: absolute;
    top: 2px;
    left: 2px;
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    color: #444;
    font-size: 1.08rem;
    padding: 0 2rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 300px;
}

/* FAQ Section - Responsive Styles */
@media (max-width: 1024px) {
    .faq-items-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-image-section {
        position: static;
        order: -1;
    }

    .faq-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .faq-items-wrapper {
        gap: 2rem;
        margin: 2rem 0;
    }

    .faq-image-container {
        max-width: 45%;
        border-radius: 16px;
    }

    .faq-image {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .faq-grid .feature-card {
        min-height: 320px;
    }

    .faq-grid .feature-card .steps-icon {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1.05rem;
        padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.1rem 1.2rem;
    }

    .faq-arrow {
        width: 12px;
        height: 12px;
    }

    .faq-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-items-wrapper {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .faq-image-container {
        max-width: 55%;
        border-radius: 12px;
    }

    .faq-image {
        border-radius: 12px;
    }
}

/* ===============================
   VIDEO MODAL
   =============================== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    animation: slideInFromTop 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.video-modal-close:hover,

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--overlay-dark);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Video Modal - Responsive Styles */
@media (max-width: 768px) {
    .video-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        width: 90%;
        max-width: 400px;
    }

    .video-modal-close {
        top: -40px;
        right: 0px;
        font-size: 28px;
    }
}

/* ===============================
   PRICING SECTION
   =============================== */
.pricing-section {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    text-align: center;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header Styles */
.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Container */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

/* Pricing Card Base Styles */
.pricing-card {
    background: var(--pricing-card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 22, 106, 0.15);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(135deg, #fff 0%, #fef7ff 100%);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

/* Badge */
.pricing-card-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    color: white;
    padding: 0.4rem 1rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Price Section */
.pricing-card-price {
    text-align: center;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-secondary), var(--brand-primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-tertiary);
    font-weight: 500;
    text-align: left;
}

/* Action Button */
.pricing-card-action {
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Guarantee Section */
.pricing-guarantee {
    margin-top: 2rem;
}

.guarantee-card {
    background: var(--card-bg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-header {
    margin-bottom: 2rem;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: left;
    padding: 0.5rem;
}

.guarantee-icon {
    font-size: 1.2rem;
    color: var(--success);
    flex-shrink: 0;
}

.guarantee-text {
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Pricing Section - Responsive Styles */
@media (max-width: 768px) {
    .pricing-container {
        gap: 3rem;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card,
    .pricing-card.featured {
        transform: none !important;
        padding: 2rem 1.5rem;
    }

    .guarantee-features {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 1rem;
    }
}

/* ===============================
   BLOG SECTION
   =============================== */
.blog-hero {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    padding: 120px 0 80px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.blog-main {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.blog-post-image {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-violet) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 30px;
}

.blog-post h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-brand);
}

.featured-post-content {
    background: var(--card-bg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-post p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===============================
   BLOG FEATURE PAGE
   =============================== */
.blog-feature-page .page {
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.blog-feature-page .page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.blog-feature-page .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    align-items: center;
}

.blog-feature-page .content-other-section {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-feature-page .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    justify-content: center;
}

.blog-feature-page .blog-post-image {
    height: 420px;
    background: var(--bg-secondary);
}

.blog-feature-page .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog Section - Responsive Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-container {
        padding: 40px 20px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .featured-post h2 {
        font-size: 1.5rem;
    }

    .blog-post-image {
        height: 220px;
    }
}

/* ===============================
   ENHANCED BLOG POST STYLING
   =============================== */
.blog-post {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--brand-primary);
}

.blog-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(217, 22, 106, 0.1) 0%,
            rgba(67, 56, 202, 0.1) 100%);
}

.blog-post-image img {
    transition: transform 0.3s ease;
}

.blog-post-content {
    padding: 3rem;
    position: relative;
}

.blog-post-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--brand-primary) 0%,
            var(--brand-secondary) 100%);
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.blog-post-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 200px;
    height: 3px;
    background: var(--brand-primary);
}

.blog-post-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.blog-post-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.blog-post-content ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    list-style: none;
}

.conclusion {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 0 2rem;
    margin-top: 3rem;
    border: 1px solid var(--border-primary);
    display: flex;
    flex-direction: column;
}

.conclusion h3 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.conclusion p {
    color: var(--text-primary);
    font-weight: 500;
}

.conclusion a {
    align-self: flex-end;
    margin-bottom: 10px;
}

/* Enhanced Blog Post - Responsive Styles */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 2rem;
    }

    .blog-post-content h3 {
        font-size: 1.5rem;
    }

    .conclusion {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post-image {
        height: 200px;
    }
}

/* ===============================
   COMPARISON SECTION
   =============================== */
.comparison-section {
    padding: 100px 0;
    background: #f8fafc;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
}

.text-brand {
    color: var(--brand-primary);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Header Cells */
.grid-header {
    background: var(--brand-rose);
    color: #fff;
    padding: 16px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.grid-header:first-of-type {
    border-top-left-radius: 16px;
}

.grid-header:last-of-type {
    border-top-right-radius: 16px;
}

/* Task Cells */
.task-cell {
    background: var(--shadow-brand);
    color: black;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Time Cells - By Yourself */
.time-yourself,
.time-yourself-total {
    background: var(--brand-table);
    color: #fff;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.time-yourself {
    padding: 16px 20px;
    font-size: 20px;
}

.time-yourself-total {
    padding: 16px 20px;
    flex-direction: column;
    font-size: 80px;
}

.time-yourself-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 60px;
    font-weight: 700;
}

.time-yourself-main span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Time Cells - Poddle */
.time-poddle,
.time-poddle-total {
    color: #fff;
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary);
}

.time-poddle {
    font-size: 20px;
}

.time-poddle-sub,
.time-poddle-total-sub {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Arrow */
.arrow-icon {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 26px;
    height: 27px;
}

/* Comparison Section - Responsive Styles */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 0.8fr 1.4fr;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .comparison-grid {
        grid-template-columns: 1.5fr 0.8fr 1.5fr;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 12px 16px;
        font-size: 12px;
    }

    .arrow-icon {
        width: 20px;
        height: 18px;
        right: -10px;
    }

    .time-yourself-main {
        font-size: 18px !important;
        gap: 4px;
    }

    .time-yourself-main span {
        font-size: 13px !important;
    }

    .time-poddle-sub {
        font-size: 11px !important;
        margin-top: 2px;
        padding: 0 2px;
    }

    .time-poddle-total-sub {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .comparison-grid {
        grid-template-columns: 1.3fr 0.8fr 1.5fr;
    }

    .arrow-icon {
        width: 18px;
        height: 14px;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 8px 4px;
        font-size: 10px;
    }

    .time-yourself-main {
        font-size: 14px !important;
        gap: 2px;
    }

    .time-yourself-main span {
        font-size: 12px !important;
    }

    .task-cell {
        font-size: 10px;
    }

    .time-poddle-sub {
        font-size: 9px !important;
        margin-top: 2px;
        padding: 0 1px;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .comparison-container {
        padding: 0 5px;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 6px 4px;
        font-size: 9px;
    }

    .task-cell {
        padding: 6px;
    }

    .time-yourself-main {
        font-size: 12px !important;
        gap: 1px;
    }

    .time-yourself-main span {
        font-size: 10px !important;
    }
}

/* ===============================
   CONTACT SECTION
   =============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
    justify-items: stretch;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #e91e63;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 30px;
}

.contact-item h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    line-height: 1.5;
}

/* Contact Section - Responsive Styles */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* ===============================
   FORM SECTION
   =============================== */
.form-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: white;
    position: relative;
}

/* Desktop curve (vertical) */
.form-curve-vertical {
    position: absolute;
    top: 0;
    right: -1px;
    height: 100%;
    width: 80px;
    z-index: 3;
}

/* Mobile curve (horizontal) */
.form-curve-horizontal {
    display: none;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 25%;
    z-index: 3;
}

.form-curve-vertical svg,
.form-curve-horizontal svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Form Validation Styles */
.form-group {
    position: relative;
    margin-bottom: 10px;
}

.validation-message {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    min-height: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-message.error {
    color: var(--error);
}

.validation-message.success {
    color: var(--success);
}

.validation-message.error::before {
    font-size: 1rem;
}

.validation-message.success::before {
    content: "";
    font-size: 1rem;
}

/* Form validation states - using utility classes */
.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.form-group input.success,
.form-group select.success {
    border-color: var(--success);
}

.form-group input:focus.error,
.form-group select:focus.error {
    border-color: var(--error);
}

.form-group input:focus.success,
.form-group select:focus.success {
    border-color: var(--success);
}

.chip-item.error {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.05);
}

.chip-item.success {
    border-color: var(--success);
    background-color: rgba(16, 185, 129, 0.05);
}

/* Left Section - Welcome & Progress */
.form-left {
    flex: 0 0 400px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    color: white;
    padding: 50px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Right Section - Form */
.form-right {
    flex: 1;
    background-color: white;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
}

.welcome-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Progress Bar - Vertical Design */
.progress-bar {
    width: 100%;
    margin-top: 4rem;
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Connecting line between steps */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
    transition: background-color 0.3s ease;
}

/* Completed connecting line */
.progress-step.completed:not(:last-child)::after {
    background-color: var(--success);
}

.progress-step.current,
.progress-step.completed {
    opacity: 1;
}

.progress-step .step-indicator {
    width: 40px;
    height: 40px;
    background-color: var(--gray-400);
    color: var(--gray-500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid var(--border-primary);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.progress-step.current .step-indicator,
.progress-step.completed .step-indicator {
    transform: scale(1.1);
}

.progress-step.current .step-indicator {
    background-color: var(--white);
}

.progress-step.completed .step-indicator {
    background-color:#4bf288;
    color: white;
    border: 2px solid var(--success);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.progress-step.completed .step-indicator span {
    display: none;
}

.progress-step .step-label {
    font-size: 1.2em;
    font-weight: 500;
}

/* Form step heading with underline highlight */
.form-step h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.form-step h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-pink) 50%, var(--brand-accent) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--shadow-brand-light);
}

.form-right h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 650;
}

/* Form Steps */
.gamified-form {
    position: relative;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    margin-bottom: 0;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Form Container Grid Layout - Single Line Layout */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

/* Side by side form groups */
.form-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
    align-items: start;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95em;
}

.form-group label .required {
    color: var(--brand-accent);
    margin-left: 5px;
}

/* Form inputs - consolidated */
input[type="text"],
input[type="email"],
input[type="tel"],
/* Universal Cross-Browser Dropdown Styling */
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--text-secondary);
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    /* Cross-browser consistency */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Enhanced dropdown styling - consistent across all browsers */
select:hover {
    border-color: var(--brand-primary);
    background-color: #fefefe;
    transform: translateY(-1px);
    /* Cross-browser transform support */
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
}

select:focus {
    border-color: var(--brand-primary);
    background-color: #fff;
    /* Cross-browser focus consistency */
}

select:invalid {
    color: #999;
}

select:valid {
    color: #333;
    font-weight: 500;
}

/* Disabled state styling - consistent across all browsers */
select:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
    /* Cross-browser disabled consistency */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
}

select:disabled:hover {
    border-color: #e9ecef;
    background-color: #f8f9fa;
    box-shadow: none;
    transform: none;
    /* Cross-browser disabled hover consistency */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
}

select:disabled:focus {
    border-color: #e9ecef;
    background-color: #f8f9fa;
    box-shadow: none;
    /* Cross-browser disabled focus consistency */
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
}

/* Phone input container */
.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--text-secondary);
    border-radius: 10px;
    background-color:transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.country-selector {
    position: relative;
    min-width: 140px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid #FFCDD2;
    border-radius: 10px 0 0 10px;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    outline: none;
    font-family: inherit;
}

.dropdown-selected:hover {
    background-color: #fff;
}

.dropdown-arrow {
    margin-left: auto;
    font-size: 0.8em;
    color: #666;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.country-text {
    font-weight: 500;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #FFCDD2;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    background-color: #f8f9fa;
}

.dropdown-option:last-child {
    border-radius: 0 0 10px 10px;
}

.phone-input-container input[type="tel"] {
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px 14px 12px;
    background-color: transparent;
    flex: 1;
    outline: none;
}

.phone-input-container input[type="tel"]:focus {
    border: none;
    box-shadow: none;
}

select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d9166a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right 15px top 50%, 0 0;
    background-size: 10px auto, 100%;
    padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border: 2px solid var(--brand-accent);
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: "✔";
    font-weight: 900;
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group label a {
    color: var(--brand-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    text-decoration: underline;
    color: var(--brand-accent);
}

/* Chip Group Styling */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 35px;
    width: 100%;
    justify-content: flex-start;
}

.chip-item {
    position: relative;
}

.chip-item input[type="radio"] {
    display: none;
}

.chip-item label {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    text-align: center;
    min-width: 120px;
    margin-bottom: 0px;
}

.chip-item label:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.chip-item input[type="radio"]:checked+label {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Form Section - Responsive Styles */
@media (max-width: 1024px) {
    .form-wrapper {
        max-width: 900px;
        flex-direction: column;
        min-height: auto;
    }

    .form-left {
        flex: 0 0 340px;
        padding: 35px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .form-right {
        padding: 0px 40px 40px;
    }

    .form-side-by-side {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .chip-group {
        justify-content: flex-start;
        gap: 12px;
    }

    .form-curve-horizontal {
        height: 20%;
        display: block;
    }

    .form-curve-vertical {
        display: none;
    }

    .progress-bar {
        margin-top: 2rem;
        padding-left: 0;
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }

    .progress-step {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .progress-step .step-indicator {
        margin-right: 0px;
    }

    /* Horizontal connecting lines for mobile/tablet */
    .progress-step:not(:last-child)::after {
        content: '';
        left: 60px;
        top: 20px;
        width: calc(35vw);
        height: 2px;
    }

    /* Completed horizontal connecting line */
    .progress-step.completed:not(:last-child)::after {
        background-color: var(--success);
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 15px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-left {
        flex: 0 0 250px;
        padding: 20px;
        border-radius: 20px 20px 0 0;
        min-height: 180px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .form-left .welcome-section p {
        font-size: 0.95em;
        margin-bottom: 0;
    }

    .form-right {
        padding: 0px 25px 20px;
        border-radius: 0 0 20px 20px;
    }

    .form-right h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }

    .progress-bar {
        margin-top: 20px;
    }

    .progress-step {
        margin-bottom: 0;
        margin: 0 8px;
        flex-direction: column;
        align-items: center;
    }

    .progress-step .step-indicator {
        margin-right: 0;
        margin-bottom: 8px;
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .progress-step .step-label {
        font-size: 0.85em;
        text-align: center;
        line-height: 1.2;
    }

    /* Form section responsive styles for medium screens */
    .form-section {
        padding: 2.5rem 15px;
    }

    .form-navigation {
        gap: 12px;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-navigation button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95em;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
        max-width: none;
    }

    /* Form container becomes single column on mobile */
    .form-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    /* Form groups spacing */
    .form-group {
        margin-bottom: 15px;
    }

    /* Side by side form groups become single column */
    .form-side-by-side {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Chip group responsive */
    .chip-group {
        justify-content: center;
        gap: 8px;
    }

    .chip-item label {
        padding: 10px 16px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .progress-step:not(:last-child)::after {
     top:18px
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 0.5rem;
    }

    .form-wrapper {
        margin: 0;
        border-radius: 15px;
    }

    .form-left {
        padding: 20px 15px;
        min-height: 160px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.6em;
    }

    .form-left .welcome-section p {
        font-size: 0.9em;
    }

    .form-right {
        padding: 0px 15px 20px;
    }

    .form-right h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .progress-step {
        margin: 0 5px;
    }

    .progress-step .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .progress-step .step-label {
        font-size: 0.8em;
    }

    /* Chip group becomes single column on very small screens */
    .chip-group {
        gap: 6px;
        margin-bottom: 0px;
    }

    .chip-item label {
        font-size: 0.85em;
        min-width: 80px;
        padding: 8px 16px;
    }

    .form-curve-horizontal {
        height: 15%;
    }

    .progress-step:not(:last-child)::after {
       top:15px ;
    }
}

/* ===============================
   BUTTON STYLES
   =============================== */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #d81b60);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Disabled button styles */
.btn:disabled,
.btn.disabled {
    background: linear-gradient(45deg, #f8bbd9, #fce4ec) !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ===============================
   FORM SECTION STYLING
   =============================== */
.form-section {
    padding: 3.5rem 15px;
    background-color: #fcf7fa;
    margin-top: 50px;
}

/* Form Navigation - New Design */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-navigation button {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.next-step,
.btn.submit-form {
    background-color: #E91E63;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn.prev-step {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn.next-step:hover,
.btn.submit-form:hover {
    background-color: #D81B60;
}

.btn.prev-step:hover {
    background-color: #fdf2f8;
}

.form-navigation button i {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 0.9em;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    border: 2px solid var(--success);
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success);
    animation: bounce 1s ease infinite;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-success p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-success #resetForm {
    display: block;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .form-success #resetForm {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

/* Form Section - Responsive Styles */
@media (max-width: 1024px) {
    .form-wrapper {
        max-width: 900px;
        flex-direction: column;
        min-height: auto;
    }

    .form-left {
        flex: 0 0 340px;
        padding: 35px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .form-right {
        padding: 0px 40px 40px;
    }

    .form-side-by-side {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .chip-group {
        justify-content: flex-start;
        gap: 12px;
    }

    .form-curve-horizontal {
        height: 20%;
        display: block;
    }

    .form-curve-vertical {
        display: none;
    }

    .progress-bar {
        margin-top: 2rem;
        padding-left: 0;
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }

    .progress-step {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .progress-step .step-indicator {
        margin-right: 0px;
    }

    /* Horizontal connecting lines for mobile/tablet */
    .progress-step:not(:last-child)::after {
        content: '';
        left: 60px;
        top: 20px;
        width: calc(35vw);
        height: 2px;
    }

    /* Completed horizontal connecting line */
    .progress-step.completed:not(:last-child)::after {
        background-color: var(--success);
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

     .form-section {
        padding: 2rem 20px;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .form-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 15px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-left {
        flex: 0 0 220px;
        padding: 20px;
        border-radius: 20px 20px 0 0;
        min-height: 180px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .form-left .welcome-section p {
        font-size: 0.95em;
        margin-bottom: 0;
    }

    .form-right {
        padding: 0px 25px 20px;
        border-radius: 0 0 20px 20px;
    }

    .form-right h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }

    .progress-bar {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .progress-step {
        margin-bottom: 0;
        margin: 0 8px;
        flex-direction: column;
        align-items: center;
    }

    .progress-step .step-indicator {
        margin-right: 0;
        margin-bottom: 8px;
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .progress-step .step-label {
        font-size: 0.85em;
        text-align: center;
        line-height: 1.2;
    }

    /* Form section responsive styles for medium screens */
    .form-section {
        padding: 2.5rem 15px;
    }

    .form-navigation {
        gap: 12px;
    }

    .form-navigation button {
        padding: 0.8rem;
        font-size: 0.95em;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
        max-width: none;
    }

    /* Form container becomes single column on mobile */
    .form-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    /* Form groups spacing */
    .form-group {
        margin-bottom: 15px;
    }


    /* Mobile dropdown enhancements - consistent across all devices */
    select {
        padding: 16px 20px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
        background-position: right 20px top 50%, 0 0;
        background-size: 14px auto, 100%;
        /* Cross-browser mobile consistency */
        -webkit-background-size: 14px auto, 100%;
        -moz-background-size: 14px auto, 100%;
        -o-background-size: 14px auto, 100%;
    }

    select:hover,
    select:focus {
        background-size: 16px auto, 100%;
        /* Cross-browser mobile hover consistency */
        -webkit-background-size: 16px auto, 100%;
        -moz-background-size: 16px auto, 100%;
        -o-background-size: 16px auto, 100%;
    }

    select:disabled {
        background-size: 14px auto, 100%;
        /* Cross-browser mobile disabled consistency */
        -webkit-background-size: 14px auto, 100%;
        -moz-background-size: 14px auto, 100%;
        -o-background-size: 14px auto, 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    /* Side by side form groups become single column */
    .form-side-by-side {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Chip group responsive */
    .chip-group {
        justify-content: center;
        gap: 8px;
    }

    .chip-item label {
        padding: 10px 16px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .progress-step:not(:last-child)::after {
        top: 18px
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 0.5rem;
    }

    .form-wrapper {
        margin: 0;
        border-radius: 15px;
    }

    .form-left {
        padding: 10px 15px;
        min-height: 160px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.6em;
    }

    .form-left .welcome-section p {
        font-size: 0.9em;
    }

    .form-right {
        padding: 0px 15px 20px;
    }

    .form-right h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 8px;
    }
    

    /* Enhanced mobile dropdown for smaller screens - universal consistency */
    select {
        padding: 18px 22px;
        font-size: 16px;
        border-radius: 14px;
        background-size: 16px auto, 100%;
        background-position: right 22px top 50%, 0 0;
        padding-right: 50px;
        /* Cross-browser small mobile consistency */
        -webkit-background-size: 16px auto, 100%;
        -moz-background-size: 16px auto, 100%;
        -o-background-size: 16px auto, 100%;
    }

    select:hover,
    select:focus {
        background-size: 18px auto, 100%;
        /* Cross-browser small mobile hover consistency */
        -webkit-background-size: 18px auto, 100%;
        -moz-background-size: 18px auto, 100%;
        -o-background-size: 18px auto, 100%;
    }

    select:disabled {
        background-size: 16px auto, 100%;
        /* Cross-browser small mobile disabled consistency */
        -webkit-background-size: 16px auto, 100%;
        -moz-background-size: 16px auto, 100%;
        -o-background-size: 16px auto, 100%;
    }

    select option {
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
    }

    .checkbox-group {
        margin-bottom: 15px;
    }

    .progress-step {
        margin: 0 5px;
    }

    .progress-step .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .progress-step .step-label {
        font-size: 0.8em;
    }

    /* Chip group becomes single column on very small screens */
    .chip-group {
        gap: 6px;
        margin-bottom: 0px;
    }

    .chip-item label {
        font-size: 0.85em;
        min-width: 80px;
        padding: 8px 16px;
    }

    .form-curve-horizontal {
        height: 15%;
    }

    .progress-step:not(:last-child)::after {
        top: 15px;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===============================
   CUSTOMER BENEFITS TAGS
   =============================== */
.customer-benefits-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 1.5rem auto;
    justify-content: center;
    align-items: center;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.tag-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: inline-block;
    line-height: 1;
}

/* Customer Benefits Tags - Responsive Styles */
@media (max-width: 1024px) {
    .customer-benefits-tags {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.4rem;
        margin: 1rem 0;
        padding: 0 0.5rem;
    }

    .benefit-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .customer-benefits-tags {
        display: grid;
        gap: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .benefit-tag {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        gap: 0.1rem;
        margin: 1rem 0;
        padding: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .customer-benefits-tags {
        gap: 0.2rem;
    }

    .benefit-tag {
        width: 100%;
        font-size: 0.75rem;
        padding: 0.6rem 0.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 380px) {
    .customer-benefits-tags {
        grid-template-columns: 1fr 1fr;
        gap: 0rem;
        padding: 0 0.5rem;
        align-items: center;
    }

    .benefit-tag {
        padding: 0.75rem;
        font-size: 0.8rem;
        white-space: normal;
        word-break: break-word;
        max-width: max-content;
        justify-content: center;
        margin: 0.25rem;
    }

    .tag-emoji {
        font-size: 1.1rem;
    }
}

/* ===============================
   TRUST TAGS
   =============================== */
.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem auto 0;
    justify-content: center;
    max-width: 900px;
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.55rem 0.9rem;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    font-weight: 500;
    font-size: 0.92rem;
    white-space: nowrap;
}

.trust-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.trust-emoji {
    font-size: 1.5rem;
    color: var(--text-tertiary);
}

/* ===============================
   CTA SECTION
   =============================== */
.cta-section {
    padding: 4rem 0;
    background: var(--primary-pink-light);
}

.cta-section .summary-card {
    padding: 3rem 2rem;
    text-align: center;
}

.cta-section .summary-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .trust-tags {
    margin-bottom: 3rem;
    gap: 1rem;
}

.cta-section .trust-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-benefits-tags {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto;
    justify-content: center;
    align-items: stretch;
}

.cta-benefit-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    padding: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.cta-tag-emoji {
    font-size: 2rem;
    flex-shrink: 0;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-benefit-tag h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.cta-benefit-tag span {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.summary-card {
    background: transparent;
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
}

/* ===============================
   CHALLENGES SECTION
   =============================== */
.challenges-section {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, rgba(255, 245, 248, 0.55), rgba(255, 255, 255, 0.6));
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.challenges-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 3rem 0;
    min-height: 500px;
}

.challenges-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.challenges-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.challenges-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.challenge-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.challenge-point {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    position: relative;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.challenge-icon {
    flex-shrink: 0;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--brand-pink);
    box-shadow:
        0 2px 20px rgba(255, 182, 193, 0.3),
        0 2px 12px rgba(255, 192, 203, 0.2),
        inset 0 1px 0 rgba(255, 182, 193, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.challenge-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.challenge-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    position: relative;
    background: linear-gradient(135deg,
            var(--text-primary) 0%,
            #374151 50%,
            #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenge-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--brand-primary) 0%,
            #4f46e5 50%,
            #7c3aed 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.challenge-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    position: relative;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.challenge-stat {
    display: inline-block;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(255, 107, 157, 0.1));
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

/* Challenges Section - Responsive Styles */
@media (max-width: 1024px) {
    .challenges-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding: 2.5rem;
    }

    .challenges-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .challenges-content-wrapper {
        gap: 2rem;
        margin: 2rem 0;
        padding: 2rem;
        border-radius: 20px;
    }

    .challenges-image {
        max-height: 300px;
    }

    .challenge-point {
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .challenge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .challenge-text h3 {
        font-size: 1.2rem;
    }

    .challenge-text p {
        font-size: 1rem;
    }

    .challenge-stat {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .challenges-content-wrapper {
        gap: 1.5rem;
        margin: 1.5rem 0;
        padding: 0.1rem;
        border-radius: 16px;
    }

    .challenges-image {
        max-height: 250px;
    }

    .challenge-point {
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .challenge-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .challenge-text h3 {
        font-size: 1.1rem;
    }

    .challenge-text p {
        font-size: 0.95rem;
    }

    .challenge-stat {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
}

/* ===============================
   CTA BUTTON STYLING
   =============================== */
.cta-section .cta-primary-button {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
}

/* Glowing aura behind CTA button */
.cta-section .cta-primary-button::after {
    content: '';
    position: absolute;
    inset: -12px -18px;
    border-radius: 60px;
    background: radial-gradient(120% 140% at 50% 100%, rgba(233, 30, 99, 0.45), rgba(233, 30, 99, 0.0) 60%);
    filter: blur(14px);
    z-index: -1;
    transition: opacity 0.25s ease, filter 0.25s ease;
    opacity: 0.9;
}

.cta-section .cta-primary-button:hover {
    transform: translateY(-3px);
}

.cta-section .cta-primary-button:hover::after {
    filter: blur(18px);
    opacity: 1;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

/* CTA Button Styling - Responsive Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .summary-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 30px 0;
    }

    .summary-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .cta-buttons-container {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .cta-buttons-container .cta-primary-button {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
        flex: none;
    }
}

@media (max-width: 380px) {
    .summary-card {
        padding: 1rem 0.75rem;
        max-width: 100%;
    }

    .cta-buttons-container .cta-primary-button {
        display: block;
        width: 100%;
        max-width: 260px;
        margin: 0;
        text-align: center;
        padding: 12px 18px;
        font-size: 14px;
        flex: none;
    }
}

/* ===============================
   SETUP SECTION
   =============================== */
.setup-section {
    text-align: center;
    background: linear-gradient(to bottom right, #ffffff, #f5f9ff);
    padding: 3rem 2rem;
}

.setup-container {
    max-width: 1200px;
    margin: 0 auto;
}

.setup-cards {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.setup-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
}

.setup-card .card-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    border: 3px solid white;
}

.setup-card .card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 0.5rem;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    overflow: hidden;
}

.setup-card .card-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.setup-card .card-content {
    padding: 0.5rem;
    flex-grow: 1;
}

.setup-card .card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.setup-card .card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Setup Section - Responsive Styles */
@media (max-width: 1024px) {
    .setup-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .setup-card {
        min-width: 200px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .setup-cards {
        flex-direction: column;
        gap: 1rem;
    }

    .setup-card {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }

    /* Setup image maintain 3:2 ratio on mobile with comfortable height */
    .setup-card .card-image {
        aspect-ratio: 3 / 2;
        height: auto;
    }

    .setup-card .card-image img {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        border-radius: 10px;
    }

    .setup-card .card-content h3 {
        font-size: 1.1rem;
    }

    .setup-card .card-content p {
        font-size: 0.9rem;
    }
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a4a 100%);
    color: #f9fafb;
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.5), rgba(99, 102, 241, 0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(244, 114, 182, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
    align-items: start;
}

/* Footer Section Headings */
.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f472b6, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #f472b6, #6366f1);
    border-radius: 1px;
}

/* Footer Section Content */
.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 400px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.25rem 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f472b6, #6366f1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.footer-section ul li a:hover {
    color: #f9fafb;
    transform: translateX(4px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

/* Mail Link */
.mail-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(55, 65, 81, 0.3);
    display: inline-block;
}

.mail-link span {
    position: relative;
    z-index: 1;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(55, 65, 81, 0.4);
    border: 1px solid rgba(55, 65, 81, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f472b6, #6366f1);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 11px;
}

.social-links a i,
.social-links a svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3);
    border-color: rgba(244, 114, 182, 0.5);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i,
.social-links a:hover svg {
    color: #ffffff;
}

/* Footer - Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
        text-align: left;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-section p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-section h3::after {
        left: 0;
        transform: none;
    }

    .footer-section:first-child h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===============================
   BENEFITS SECTION
   =============================== */
.benefits-section {
    padding: 6rem 2rem 3rem;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Work steps */
.work-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.work-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.work-step.reverse {
    flex-direction: row-reverse;
}

.work-step.reverse .work-step-image::before {
    right: auto;
    left: 0px;
}

.work-step-image {
    flex: 0 0 auto;
    position: relative;
    padding: 2rem;
}

.work-step-image::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 0px;
    width: 25%;
    height: 30%;
    background: linear-gradient(135deg, #fa9296 0%, #ffc3ec 50%, #fecfef 100%);
    border-radius: 12px;
    z-index: 1;
}

.work-step.reverse .work-step-image::before {
    right: auto;
    left: 0px;
}

.work-step-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.work-step-content {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.work-step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 1rem 1rem;
}

.work-step-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Stats list benefits */
.stats-list-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.stat-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.stat-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 8px;
    color: var(--brand-pink);
    flex-shrink: 0;
    border: none;
}

.stat-list-icon i {
    width: 10px;
    height: 10px;
}

.stat-list-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.stat-list-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===============================
   FEATURES SECTION
   =============================== */
.features-section {
    text-align: center;
    background: var(--bg-primary);
    padding: 3rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--brand-primary);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    text-align: center;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Benefits Section - Responsive Styles */
@media (max-width: 1200px) {
    .work-step {
        gap: 2.5rem;
        margin-bottom: 30px;
    }

    .work-step-image {
        padding: 1.5rem;
    }

    .work-step-image::before {
        width: 30%;
        height: 35%;
        top: 8px;
        right: 0px;
        border-radius: 10px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -10px;
    }

    .work-step-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .work-step {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        margin-bottom: 50px;
    }

    .work-step.reverse {
        flex-direction: column;
    }

    .work-step-image {
        padding: 1rem;
    }

    .work-step-image::before {
        width: 28%;
        height: 32%;
        top: -5px;
        right: -3px;
        border-radius: 8px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -8px;
    }

    .work-step-image img {
        max-width: 450px;
        width: 100%;
        border-radius: 12px;
    }

    .work-step-content {
        min-width: 100%;
        text-align: left;
    }

    .work-step-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .work-step-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .features-section {
        margin: 0rem 0rem;
        text-align: center;
        background: var(--bg-primary);
        padding: 3rem 1.5rem;
    }

    .feature-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .work-step {
        gap: 15px;
        margin-bottom: 30px;
    }

    .work-step-image {
        padding: 0.8rem;
    }

    .work-step-image::before {
        width: 25%;
        height: 30%;
        right: 0px;
        border-radius: 6px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -5px;
    }

    .work-step-image img {
        border-radius: 8px;
    }

    .work-step-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
}
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}