:root {
    --primary-color: #086b47;
    --secondary-color: #b6e4d3;
    --primary-dark: #065a3a;
    --primary-light: #0a8a5c;
    --bg-gradient-start: #0a1628;
    --bg-gradient-end: #1a3a4a;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-primary: #1a1a2e;
    --text-secondary: #666680;
    --light-gray: #f8f9fc;
    --dark-section: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .nav-logo .logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-primary);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 107, 71, 0.3);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 50%, #0f2a3a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(182, 228, 211, 0.1) 0%, transparent 50%);
    background: radial-gradient(circle at 70% 80%, rgba(8, 107, 71, 0.15) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: white;
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 107, 71, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.trust-line {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-line i {
    color: var(--secondary-color);
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 260px;
    height: 540px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 15px;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.dashboard-balance {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.dashboard-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.card-info {
    flex: 1;
}

.card-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.card-value {
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card .card-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.card-1 {
    top: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

.card-1 .card-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.check-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.card-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    min-width: 140px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-date {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.schedule-amount {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.card-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 2.5s;
}

.balance-bar {
    width: 130px;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.balance-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.balance-info {
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.trust-metrics {
    padding: 5rem 0;
    background: white;
}

.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.4rem;
    font-family: 'remixicon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.metric-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.problem-solution {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.ps-headline {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ps-paragraph {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.ps-right {
    position: relative;
}

.lifestyle-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a8a5c 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lifestyle-image::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lifestyle-image::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 120px;
    height: 120px;
    background: rgba(182, 228, 211, 0.2);
    border-radius: 50%;
}

.lifestyle-content {
    position: relative;
    z-index: 1;
}

.lifestyle-phone {
    position: relative;
    z-index: 2;
}

.phone-screen-mini {
    width: 160px;
    height: 320px;
    background: #1a1a2e;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mini-app {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 18px;
    padding: 12px;
}

.app-header {
    height: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 15px;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-dot {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.app-dot:nth-child(2) {
    width: 80%;
}

.app-dot:nth-child(3) {
    width: 60%;
}

.feature-grid {
    padding: 7rem 0;
    background: white;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.grid-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}



.grid-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.grid-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.card-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.phone-ui {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.ui-screen {
    width: 120px;
    height: 200px;
    background: #0f172a;
    border-radius: 16px;
    padding: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ui-header {
    height: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 10px;
}

.ui-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ui-row {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.ui-row:nth-child(2) {
    width: 85%;
}

.ui-row:nth-child(3) {
    width: 70%;
}

.calendar-ui {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a8a5c 100%);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}

.calendar-day {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.calendar-day.active {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.dashboard-ui {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dashboard-mini {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
}

.mini-header {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mini-balance {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.security-ui {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.shield-icon {
    font-size: 2.5rem;
    color: white;
    font-family: 'remixicon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-showcase {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.large-phone {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 45px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.notch {
    width: 140px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.screen-main {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    border-radius: 38px;
    padding: 45px 12px 25px;
    overflow: hidden;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-left {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.main-content {
    padding: 0 8px;
}

.account-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a8a5c 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
}

.summary-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.summary-amount {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

.quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:first-child {
    background: var(--primary-color);
    color: white;
}

.action-btn:last-child {
    background: #e2e8f0;
    color: var(--text-primary);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.recent-section {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-icon {
    width: 38px;
    height: 38px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.activity-info {
    flex: 1;
}

.activity-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.activity-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.activity-amount {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.home-indicator {
    width: 100px;
    height: 5px;
    background: #d1d5db;
    border-radius: 3px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.showcase-right h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.security-section {
    padding: 7rem 0;
    background: var(--dark-section);
    position: relative;
    overflow: hidden;
}

.security-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(8, 107, 71, 0.15) 0%, transparent 50%);
    background: radial-gradient(circle at 70% 30%, rgba(182, 228, 211, 0.1) 0%, transparent 40%);
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.security-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.security-intro {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 1.5rem;
    font-family: 'remixicon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.security-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.security-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.how-it-works {
    padding: 7rem 0;
    background: white;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hiw-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.timeline-step {
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 2;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(50% + 50px);
    width: calc(100% - 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.step-image {
    height: 130px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-store-ui {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-logo {
    font-size: 2rem;
    color: white;
}

.store-info {
    text-align: left;
}

.store-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.store-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.verification-ui {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #0a8a5c);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.id-icon {
    font-size: 2rem;
    color: white;
}

.verification-check {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.amount-ui {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.amount-option {
    width: 70px;
    height: 42px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.amount-option.active {
    background: var(--primary-color);
    color: white;
}

.repayment-ui {
    width: 130px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.repayment-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.repayment-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
}

.repayment-info {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.lifestyle-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2a3a 100%);
    position: relative;
    overflow: hidden;
}

.lifestyle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(8, 107, 71, 0.2) 0%, transparent 70%);
}

.lifestyle-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lifestyle-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lifestyle-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

.faq {
    padding: 7rem 0;
    background: white;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.faq-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.faq-items {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

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

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

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 80px;
}

.faq-answer p {
    padding: 0 0 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.final-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a8a5c 50%, #065a3a 100%);
    text-align: center;
}

.cta-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.cta-container p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.cta-buttons .cta-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .cta-primary:hover {
    background: #f8fafc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-buttons .cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

footer {
    padding: 4rem 0;
    background: var(--dark-section);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-left .footer-logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-middle h4,
.footer-right h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-middle ul {
    list-style: none;
}

.footer-middle li {
    margin-bottom: 0.65rem;
}

.footer-middle a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-middle a:hover {
    color: var(--secondary-color);
}

.footer-right p {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
}

.footer-right i {
    color: var(--secondary-color);
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .trust-line {
        justify-content: center;
    }

    .hero-right {
        min-height: 450px;
    }

    .floating-card {
        display: none;
    }

    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-card.large-card {
        grid-row: span 1;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-right h2 {
        font-size: 1.6rem;
    }

    .security-cards {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .timeline-step:not(:last-child)::after {
        display: none;
    }

    .lifestyle-overlay h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .metrics-container {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .phone-screen {
        width: 220px;
        height: 460px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }
}