/* Modern Green & White Landing Page Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    color: #1f2937;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Remove arrows from number inputs */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]:focus {
    outline: none;
}

.content-wrapper {
  padding-left: clamp(12px, 4vw, 40px);
  padding-right: clamp(12px, 4vw, 40px);
}


/* CSS Variables - Green & White Theme */
:root {
    --primary-color: #16a34a;        /* Green 600 */
    --primary-dark: #15803d;         /* Green 700 */
    --primary-light: #dcfce7;        /* Green 100 */
    --secondary-color: #059669;      /* Emerald 600 */
    --accent-color: #10b981;         /* Emerald 500 */
    --dark-base: #1f2937;            /* Gray 800 */
    --light-base: #ffffff;           /* Pure white */
    --text-dark: #111827;            /* Gray 900 */
    --text-light: #6b7280;           /* Gray 500 */
    --text-white: #ffffff;
    --card-bg: #ffffff;
    --sidebar-bg: #f9fafb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(22, 163, 74, 0.2);
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-large: 0 20px 25px rgba(0, 0, 0, 0.1);
}


.control-item {
    position: relative;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.btn-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    z-index: 100;
    display: none;
    border: 1px solid var(--border-color);
}

.language-selector:hover .language-dropdown {
    display: flex;
    flex-direction: column;
}

.language-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-dropdown li a {
    display: inline;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.language-dropdown li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.language-dropdown li a.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.gtranslate_wrapper {
    gap: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-30px); }
    70% { transform: translateY(-15px); }
    90% { transform: translateY(-4px); }
}

@keyframes pulseCustom {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 25px rgba(22, 163, 74, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(22, 163, 74, 0.3);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Utility Classes */
.animate-float { animation: float 8s ease-in-out infinite; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out; }
.animate-slide-in-right { animation: slideInRight 0.8s ease-out; }
.animate-pulse-custom { animation: pulseCustom 2s ease-in-out infinite; }

.gradient-text {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.nav-logo img{
    width: 200px;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-large);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--green-600);
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--green-200);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--green-50);
    border-color: var(--green-300);
    transform: translateY(-1px);
}

.btn-pulse {
    animation: pulseCustom 2s ease-in-out infinite;
}

.btn-pulse-big {
    animation: pulseCustom 2s ease-in-out infinite;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
}

/* Hide scrollbar */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Selection color */
::selection {
    background-color: var(--green-200);
    color: var(--green-800);
}

/* Navigation Styles */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition);
    background: transparent;
}

.nav-container.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--green-100);
    box-shadow: var(--shadow-medium);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-desktop {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--green-600);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--green-600);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.nav-mobile-btn {
    display: block;
}

.mobile-menu-button {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-button:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
}

.hidden {
    display: none;
}

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--green-100);
    border-radius: 16px;
    margin-top: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-large);
}

.mobile-link {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-link:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.mobile-cta {
    margin-top: 12px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.1;
}

.bg-circle-1 {
    top: 100px;
    left: 60px;
    width: 400px;
    height: 400px;
    background: var(--green-400);
    animation: float 12s ease-in-out infinite;
}

.bg-circle-2 {
    top: 200px;
    right: 60px;
    width: 500px;
    height: 500px;
    background: var(--green-300);
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

.bg-circle-3 {
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: var(--green-500);
    animation: float 12s ease-in-out infinite;
    animation-delay: 8s;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border: 2px solid rgba(22, 163, 74, 0.15);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.particle-1 {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
}

.particle-2 {
    top: 25%;
    right: 80px;
    width: 64px;
    height: 64px;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 25%;
    left: 80px;
    width: 48px;
    height: 48px;
    animation-delay: 2s;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  
}

.hero-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    color: var(--green-700);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    box-shadow: var(--shadow-light);
}

.trust-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 600px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--green-600);
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-600);
}

.proof-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-dashboard {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.dashboard-container {
    padding: 0;
    position: relative;
}

.dashboard-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--green-100);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    margin: 20px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #f59e0b; }
.control-dot.green { background: var(--green-500); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--green-100);
}

.stat-card.purple { 
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
}
.stat-card.green { 
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
}
.stat-card.blue { 
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-700);
}

.stat-label {
    font-size: 0.875rem;
    margin-top: 4px;
    color: var(--green-600);
    font-weight: 500;
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--green-50);
    border-radius: 12px;
    border: 1px solid var(--green-100);
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green { background: var(--green-500); }
.status-dot.blue { background: var(--green-400); }
.status-dot.purple { background: var(--green-600); }

.transaction-desc {
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

.transaction-amount {
    font-size: 0.875rem;
    font-weight: 700;
}

.transaction-amount.green { color: var(--green-600); }
.transaction-amount.blue { color: var(--green-500); }
.transaction-amount.purple { color: var(--green-700); }

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.floating-1 {
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
}

.floating-2 {
    bottom: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-300) 0%, var(--green-400) 100%);
    animation-delay: 1.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce 2s infinite;
    color: var(--green-600);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-section {
    margin-bottom: 100px;
}

.comparison-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--green-100);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-large);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    gap: 40px;
}

.comparison-column {
    flex: 1;
}

.column-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.column-title.pain {
    color: var(--danger-color);
}

.column-title.solution {
    color: var(--green-600);
}

.column-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.bullet {
    margin-right: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.bullet.pain {
    color: var(--danger-color);
}

.bullet.solution {
    color: var(--green-600);
}

.features-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--green-100);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-medium);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    background: var(--green-50);
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--green-200);
}

.feature-icon {
    color: var(--green-600);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.feature-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-benefits .benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--green-600);
    margin-right: 12px;
    flex-shrink: 0;
}

.features-cta {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:linear-gradient(180deg,var(--green-600),var(--green-700));
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: overlay;
    filter: blur(80px);
    opacity: 0.2;
}

.cta-circle-1 {
    top: 60px;
    left: 60px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    animation: float 12s ease-in-out infinite;
}

.cta-circle-2 {
    bottom: 60px;
    right: 60px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.15);
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

.cta-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.cta-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
}

.urgency-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 768px;
    margin: 0 auto 40px;
}

.value-props {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

.value-prop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.value-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.value-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.trust-item .trust-icon {
    width: 24px;
    height: 24px;
    color: white;
    margin-right: 12px;
}

.guarantee-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-company {
    grid-column: span 2;
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-300) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #d1d5db;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #9ca3af;
    transition: var(--transition);
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    color: var(--green-400);
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-link:hover {
    color: var(--green-400);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom-link:hover {
    color: var(--green-400);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.auth-modal {
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--green-200);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.5s ease-out;
}

.auth-tabs {
    display: flex;
    background: var(--green-50);
    border-bottom: 1px solid var(--green-200);
}

.auth-tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    font-weight: 600;
}

.auth-tab.active {
    color: var(--green-700);
    background: white;
    border-bottom: 3px solid var(--green-600);
}

.auth-tab:hover:not(.active) {
    background: var(--green-100);
    color: var(--green-600);
}

.auth-forms {
    padding: 40px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.input-field {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--green-50);
    border: 2px solid var(--green-200);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 16px;
    transition: var(--transition);
}

.input-field:focus {
    outline: none;
    border-color: var(--green-600);
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 46px;
    color: var(--text-light);
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me input {
    margin-right: 12px;
    accent-color: var(--green-600);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    font-size: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.social-login {
    margin: 24px 0;
    text-align: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--green-200);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.social-btn:hover {
    background: var(--green-50);
    border-color: var(--green-300);
}

.social-btn img {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--green-200);
}

.divider::before {
    margin-right: 16px;
}

.divider::after {
    margin-left: 16px;
}

.alternative-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--green-100);
    color: var(--green-700);
}

.action-btn i {
    margin-right: 8px;
}

.validation-errors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    color: #dc2626;
    font-size: 0.875rem;
}

.validation-errors ul {
    list-style: none;
}

.status-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    color: var(--green-700);
    font-size: 0.875rem;
}

   /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) rgba(0, 0, 0, 0.1);
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
            visibility: visible;
        }

        .popup-container {
            background: white;
            width: 100%;
            height: 100%;
            overflow:auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transform: scale(0.9) translateY(30px);
            transition: all 0.3s ease;
            display: flex;
        }

        .popup-overlay.active .popup-container {
            
            transform: scale(1) translateY(0);
        }

        .form-section {
           max-width: 25%;
            flex: 1;
            padding: 40px;
            overflow-y: auto;
        }

   .image-section {
    background: url('../assets/images/1.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 40px;
    color: white;
    width: 75%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}





        .image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,70 Q50,100 100,70 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .image-content {
          
            position: relative;
            z-index: 1;
        }

        .image-content h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .image-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 2px;
        }

        .security-tips {
            display: inline;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 10px;
        }

        .tip-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 20px;
        }

        .tip-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .tip-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .tip-content h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .tip-content p {
            font-size: 0.95rem;
            line-height: 1.5;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--green-100);
            border: none;
            color: var(--green-700);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: var(--transition);
            z-index: 10;
        }

        .close-btn:hover {
            background: var(--green-200);
            transform: rotate(90deg);
        }

        .form-tabs {
            display: flex;
            margin-bottom: 30px;
            background: var(--green-50);
            border-radius: 50px;
            padding: 4px;
            border: 1px solid var(--green-200);
        }

        .tab-btn {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--text-light);
            padding: 12px 0;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            font-weight: 600;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
        }

        .form-title {
            color: var(--text-dark);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-container {
            
            position: relative;
        }

        .form {
            display: none;
        }

        .form.active {
            display: block;
            animation: fadeInUp 0.4s ease;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 14px 20px;
            background: var(--green-50);
            border: 2px solid var(--green-200);
            border-radius: 12px;
            color: var(--text-dark);
            font-size: 16px;
            transition: var(--transition);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--green-600);
            background: white;
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
        }

        .password-wrapper .toggle-password:hover {
            color: #111;
        }

        .primary-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 20px;
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
        }

        .google-btn {
            width: 100%;
            padding: 14px;
            background: white;
            border: 2px solid var(--green-200);
            border-radius: 12px;
            color: var(--text-dark);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .google-btn:hover {
            background: var(--green-50);
            border-color: var(--green-300);
            transform: translateY(-2px);
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .forgot-password a:hover {
            color: var(--green-600);
        }

        .remember-me {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .remember-me label {
            margin: 0;
            color: var(--text-dark);
            font-weight: normal;
        }

        /* Password Rules */
        .password-rules {
            margin-top: 10px;
            font-size: 12px;
            list-style: none;
            padding: 0;
        }

        .password-rules li {
            margin: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .password-rules li.invalid {
            color: #e3342f;
        }

        .password-rules li.valid {
            color: #38c172;
        }

        .validation-errors {
            background: #fee;
            border: 1px solid #fcc;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            color: #c33;
            font-size: 14px;
        }

        .validation-errors ul {
            margin: 0;
            padding-left: 20px;
        }

        .status-message {
            background: #efe;
            border: 1px solid #cfc;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            color: #363;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .popup-container {
                flex-direction: column;
                height: auto;
                max-height: 90%;
            }
            
            .image-section {
                display: none;
            }
            
            .form-section {
                max-width: 100%;
                overflow-y: visible;
            }
        }

        @media (max-width: 576px) {
            .popup-container {
                width: 95%;
                height: auto;
                border-radius: 16px;
            }
            
            .form-section {
                max-width: 100%;
                padding: 30px 20px;
            }
            
            .form-tabs {
                flex-direction: column;
                border-radius: 12px;
            }
            
            .tab-btn {
                border-radius: 8px;
                margin: 4px 0;
            }
            
            .form-title {
                font-size: 1.5rem;
            }
        }
/* Subscription Section */
.sub-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, var(--green-50) 0%, white 100%);
}

#sub-section {
    z-index: 2000;
    overflow-y: auto;
    height: 100%;
}

.sub-container header {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sub-pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 12px;
}

.sub-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-700);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.sub-logo i {
    margin-right: 0.5rem;
    color: var(--green-500);
}

.sub-hero {
    text-align: center;
    border-radius: 8px;
}

.sub-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.sub-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.sub-pricing-card {
    background: var(--glass-bg);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--green-200);
    transition: all 0.4s ease;
}

.sub-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.15);
    border-color: var(--green-400);
}

.sub-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--green-100);
}

.sub-plan-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sub-plan-price {
    font-size: 3rem;
    font-weight: 900;
    margin: 1.5rem 0;
    color: var(--green-600);
}

.sub-plan-period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.sub-plan-features {
    margin: 2rem 0;
    flex-grow: 1;
}

.sub-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.sub-plan-features .Detial {
    font-size: 14px;
    color: var(--text-light);
}

.sub-feature i {
    margin-right: 0.75rem;
    font-size: 1rem;
}

.sub-feature.included i {
    color: var(--green-600);
}

.sub-feature.excluded {
    color: var(--text-light);
}

.sub-feature.excluded i {
    color: var(--danger-color);
}

.sub-btn {
    display: inline-block;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sub-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.sub-btn:active {
    transform: translateY(0);
}

#sub-section .sub-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--green-100);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-700);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2100;
}

#sub-section .sub-close:hover {
    color: white;
    background: var(--green-600);
    transform: rotate(90deg);
}

/* Modal Styles */
.sub-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sub-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sub-modal {
    background: var(--glass-bg);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    border: 2px solid var(--green-200);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sub-modal-overlay.active .sub-modal {
    transform: translateY(0) scale(1);
}

.sub-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--green-100);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-700);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sub-modal-close:hover {
    color: white;
    background: var(--green-600);
}

.sub-modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.sub-modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.sub-selected-plan {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.sub-form-group {
    margin-bottom: 1.5rem;
}

.sub-form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sub-form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--green-50);
    border: 2px solid var(--green-200);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sub-form-input:focus {
    outline: none;
    border-color: var(--green-600);
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.sub-btn-submit {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: white;
    margin-top: 1rem;
    border: none;
}

.sub-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* Currency Converter Styles */
.container {
    width: 100%;
    max-width: 700px;
    padding: 30px;
    margin: 0 auto;
    font-size: 16px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

#amount {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--green-200);
    border-radius: 12px;
    font-size: 16px;
    background: var(--green-50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    color: var(--text-dark);
}

#amount:focus {
    border-color: var(--green-600);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.currency-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.currency-box {
    flex: 1;
}

.currency-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.currency-box select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--green-200);
    border-radius: 12px;
    font-size: 16px;
    background: var(--green-50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    appearance: none;
    color: var(--text-dark);
    background-position: right 15px center;
    background-size: 16px;
    transition: var(--transition);
}

.currency-box select option {
    color: var(--text-dark);
    background: white;
}

.currency-box select:focus {
    border-color: var(--green-600);
    background: white;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.swap-btn {
    background: var(--green-100);
    color: var(--green-700);
    border: 2px solid var(--green-200);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 600;
}

.swap-btn:hover {
    background: var(--green-200);
    transform: rotate(180deg);
}

.result {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
    border: 2px solid var(--green-200);
    box-shadow: var(--shadow-medium);
}

.result-text {
    color: var(--text-dark);
    font-size: 14px;
    margin: 6px 0;
    font-weight: 500;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-600);
    margin: 12px 0;
}

.btn {
    background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 12px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.last-updated {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.api-info {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px;
    text-align: center;
    font-weight: 500;
}

.api-info a {
    color: var(--green-600);
    text-decoration: none;
    font-weight: 600;
}

.api-info a:hover {
    text-decoration: underline;
}












/* 📱 Mobile Responsive Styles */
@media (max-width: 768px) {
  /* ✅ universal side spacing */
  body.loading .main-content,
  body.loading .popup-container,
  body.loading .container,
  body.loading .hero-content,
  .page-wrapper {
    box-sizing: border-box;
   width: 100%;
  }

  .popup-container {
    width: 95%;
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .form-tabs {
    display: flex;
    flex-wrap: wrap; /* fixed: was wrong 'flex-direction: wrap' */
    gap: 10px;
    border-radius: 12px;
  }

  .tab-btn {
    flex: 1; /* evenly distribute */
    font-size: 14px;
    padding: 12px;
  }

  .form-input {
    font-size: 15px;
    padding: 14px 18px;
    width: 100%;
    box-sizing: border-box;
  }

  .password-wrapper .toggle-password {
    right: 10px;
  }

  .close-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .forgot-password {
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
  }

  .password-rules {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .popup-container {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .form-title {
    font-size: 20px;
    text-align: center;
  }

  .tab-btn {
    font-size: 13px;
    padding: 10px;
  }

  .form-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .password-rules li {
    font-size: 12px;
    padding: 5px 8px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  button.primary-btn,
  button.google-btn {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    flex-direction: row;
  }

  .social-proof {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .value-props {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
  }

  .trust-indicators {
    flex-direction: row;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .nav-cta {
    display: block;
  }

  .nav-mobile-btn {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 3.5rem;
  }

  .cta-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-company {
    grid-column: span 2;
  }
}

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sub-pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .sub-pricing-card {
    width: 100%;
    max-width: 450px;
  }

  .sub-hero h2 {
    font-size: 2rem;
  }

  .sub-subtitle {
    font-size: 0.8rem;
  }

   .section-subtitle {
    font-size: 0.8rem;
   }

   .comparison-card{
    padding: 20px;
   }
   .comparison-title{
    font-size: 1.5rem;
   }

   .gradient-text {
    font-size: 1rem;
   }

  .scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
  }

  .dashboard-card {
    padding: 20px 10px;
  }

  .cta-card{
    padding: 20px;
  }

  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
  }

  .hero-content {
    margin: 30px;
    padding: 20px;
  }

  .nav-logo img {
    width: 150px;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 20px;
    
  }

  .currency-row {
    flex-direction: column;
  }

  .swap-btn {
    transform: rotate(90deg);
    margin: 12px 0;
  }

  .result-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sub-pricing-card {
    min-width: unset;
    padding: 2rem;
  }

  .sub-modal {
    padding: 2rem;
    margin: 1rem;
  }

  .sub-container {
    padding: 1rem;
  }

  .sub-container header {
    padding: 1rem;
  }

  .sub-pricing-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Animation delays for staggered effects */
.feature-card[data-feature="0"] {
  animation-delay: 0s;
}
.feature-card[data-feature="1"] {
  animation-delay: 0.1s;
}
.feature-card[data-feature="2"] {
  animation-delay: 0.2s;
}
.feature-card[data-feature="3"] {
  animation-delay: 0.3s;
}
.feature-card[data-feature="4"] {
  animation-delay: 0.4s;
}
.feature-card[data-feature="5"] {
  animation-delay: 0.5s;
}

/* Smooth scrolling */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.main-content {
  animation: fadeIn 1s ease-in-out;
}
