:root {
    /* Colors */
    --primary-color: #012031;
    --secondary-color: #a0ff01;
    --accent-green: #7cc305;
    --light-green: #d6ffa5;
    --background: #ffffff;
    --background-alt: #f9f8f5;
    --text-color: #000000;
    --text-light: #444444;
    --border-color: #d3cfc4;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Krona One', sans-serif;
    --font-weight-normal: 400;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-h4: 24px;
    --font-size-h3: 32px;
    --font-size-h2: 56px;
    --font-size-h1: 65px;
    --line-height-tight: 1;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.5;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 80px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    
    /* Layout */
    --container-padding: 80px;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    line-height: var(--line-height-normal);
    background: var(--background);
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-normal);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h5 {
    font-size: var(--font-size-h4);
}

/* Notification Banner */
.notification-banner {
    background: var(--secondary-color);
    padding: var(--space-md) var(--container-padding);
    position: relative;
}

.notification-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.notification-content p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--text-color);
}

.notification-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.notification-close {
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition-base);
}

.notification-close:hover {
    opacity: 0.7;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--container-padding);
    background: var(--background);
}

.logo {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: var(--font-weight-normal);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

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

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: var(--space-2xl);
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: #fff7f7;
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-icon {
    background: var(--primary-color);
    color: #fff7f7;
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.profile-icon:hover {
    opacity: 0.9;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    text-align: left;
    font-size: var(--font-size-base);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--background-alt);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-tertiary {
    background: transparent;
    color: var(--text-color);
    padding: var(--space-md);
    border: 2px solid var(--text-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-tertiary:hover {
    background: var(--text-color);
    color: var(--background);
}

/* Hero Section */
.hero {
    display: flex;
    gap: 20px;
    padding: 25px var(--container-padding);
    align-items: flex-start;
    background: var(--background);
}

.hero-content {
    flex: 1;
    max-width: 740px;
    padding-top: 48px;
}

.hero h1 {
    margin-bottom: 16px;
    line-height: var(--line-height-tight);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    margin-bottom: 40px;
    line-height: var(--line-height-tight);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.hero-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 1200px;
}

.hero-img-large {
    width: 100%;
    height: 312px;
    background: linear-gradient(135deg, #444 0%, #666 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img-large img,
.hero-img-small img,
.hero-img-medium img,
.cards-image img,
.product-image img,
.advantage-image img,
.advantage-image-small img,
.steps-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-bottom {
    display: flex;
    gap: 20px;
}

.hero-img-small {
    flex: 1;
    height: 240px;
    background: var(--light-green);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img-medium {
    flex: 1;
    height: 240px;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Cards Section */
.cards-section {
    display: flex;
    gap: 20px;
    padding: 25px var(--container-padding);
    align-items: stretch;
}

.cards-image {
    width: 736px;
    max-width: 46%;
    background: linear-gradient(135deg, #444 0%, #666 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    overflow: hidden;
}

.cards-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    flex: 1;
    min-width: 0;
}

.card-item {
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.card-item.expanded {
    background: rgba(128, 145, 152, 0.15);
}

.card-item.collapsed {
    background: var(--background-alt);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 27px;
}

.card-item.collapsed .card-header {
    margin-bottom: 0;
    align-items: center;
}

.card-item.collapsed .card-text p {
    display: none;
}

.card-item.collapsed .btn-tertiary {
    display: none;
}

.card-text {
    flex: 1;
}

.card-item h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 16px;
    line-height: var(--line-height-tight);
}

.card-item.collapsed h3 {
    font-size: var(--font-size-h4);
    margin-bottom: 0;
}

.card-item p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
}

.btn-expand,
.btn-collapse {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-expand {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-collapse {
    background: var(--primary-color);
    color: #fff7f7;
}

.btn-expand:hover,
.btn-collapse:hover {
    opacity: 0.9;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 12px;
    line-height: var(--line-height-tight);
}

.section-header p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    max-width: 909px;
    line-height: var(--line-height-tight);
}

.section-header-center {
    text-align: center;
    margin: 0 auto 60px;
    max-width: 845px;
}

.section-header-center h2 {
    margin-bottom: 19px;
    line-height: var(--line-height-tight);
}

.section-header-center p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--text-color);
    line-height: var(--line-height-tight);
}

/* Products Section */
.products-section {
    padding: 25px var(--container-padding);
}

.products-grid {
    display: flex;
    gap: 20px;
}

.product-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-card.card-blue {
    background: linear-gradient(to bottom, #bbd4eb 0%, white 100%);
}

.product-card.card-green {
    background: linear-gradient(to bottom, #edffcc 0%, white 100%);
}

.product-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    overflow: hidden;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    flex: 1;
}

.product-content .btn-tertiary {
    margin-top: auto;
}

.product-icon {
    width: 48px;
    height: 48px;
    font-size: var(--font-size-h3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
    margin: 0;
}

.product-content p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    margin: 0;
}

/* Advantages Section */
.advantages-section {
    padding: 25px var(--container-padding);
}

.advantage-large {
    display: flex;
    background: var(--background-alt);
    margin-bottom: 20px;
    overflow: hidden;
}

.advantage-large .advantage-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.advantage-large .advantage-content h3 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    margin-bottom: 19px;
}

.advantage-large .advantage-content p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
}

.advantage-large .advantage-image {
    width: 704px;
    height: 585px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    flex-shrink: 0;
    overflow: hidden;
}

.advantages-grid {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.advantage-card {
    flex: 1;
    background: var(--background-alt);
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.advantage-content-small {
    padding: 40px;
    background: rgba(128, 145, 152, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-content-small h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
    margin-bottom: 19px;
}

.advantage-content-small p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    margin-bottom: 40px;
}

.advantage-image-small {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    overflow: hidden;
}

.btn-icon {
    width: 58px;
    height: 49px;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-h4);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Rewards Section */
.rewards-section {
    background: linear-gradient(to bottom, #77a8d7 0%, #100 100%);
    padding: 0;
}

.rewards-section > .rewards-wrapper {
    padding: 75px var(--container-padding);
    display: flex;
    gap: 117px;
    align-items: center;
}

.rewards-content {
    width: 549px;
    max-width: 35%;
    flex-shrink: 0;
}

.rewards-content h2 {
    color: #fff7f7;
    margin-bottom: 24px;
    line-height: var(--line-height-tight);
}

.rewards-content > p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: #fff7f7;
    margin-bottom: 53px;
    line-height: var(--line-height-tight);
}

.rewards-features {
    display: flex;
    flex-direction: column;
    gap: 29px;
    margin-bottom: 53px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 32px;
    height: 32px;
    font-size: var(--font-size-h4);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--light-green);
    margin-bottom: 4px;
    line-height: var(--line-height-tight);
}

.feature-text p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    color: #fff7f7;
    line-height: var(--line-height-normal);
}

.rewards-images {
    display: flex;
    gap: 32px;
    height: 672px;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
}

.rewards-col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 280px;
    max-width: 30%;
    flex-shrink: 0;
    height: 672px;
}

.rewards-card {
    background: var(--background-alt);
    padding: 32px;
    padding-top: 152px;
    height: 320px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.rewards-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.rewards-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 63.281%, white 100%);
    z-index: 1;
}

.rewards-card img {
    display: none;
}

.rewards-card:nth-child(1)::before {
    background-image: var(--rewards-img-1, url('../images/home-rewards-1.webp'));
}

.rewards-card:nth-child(2)::before {
    background-image: var(--rewards-img-2, url('../images/home-rewards-2.webp'));
}

.rewards-card .card-icon {
    font-size: 28px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.rewards-card h5 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    margin-bottom: 12px;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    position: relative;
    z-index: 2;
}

.rewards-card p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    word-wrap: break-word;
    position: relative;
    z-index: 2;
}

.rewards-col-right {
    flex: 1;
    min-width: 0;
}

.rewards-main-card {
    background: var(--background-alt);
    padding: 32px;
    height: 672px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rewards-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    background-image: var(--rewards-img-3, url('../images/home-rewards-3.webp'));
}

.rewards-main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 73.246%, white 97.068%);
    z-index: 1;
}

.rewards-main-card img {
    display: none;
}

.rewards-main-card h5 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    margin-bottom: 12px;
    line-height: var(--line-height-tight);
    word-wrap: break-word;
    position: relative;
    z-index: 2;
}

.rewards-main-card p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    word-wrap: break-word;
    position: relative;
    z-index: 2;
}

/* Getting Started Section */
.getting-started-section {
    padding: 0;
    background: var(--background-alt);
}

.getting-started-wrapper {
    padding: 92px var(--container-padding);
}

.steps-container {
    height: 352px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.btn-signup {
    position: absolute;
    right: 45px;
    bottom: 27px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 25px var(--container-padding);
    background: var(--background);
}

.testimonials-grid {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    flex: 1;
    padding: 49px 24px 24px;
    background: var(--background-alt);
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 280px;
}

.stars {
    display: flex;
    gap: 4px;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.star-filled {
    color: var(--primary-color);
}

.star-outline {
    color: var(--primary-color);
}

.testimonial-card p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--text-color);
    margin: 0;
}

.testimonial-card .author {
    margin-top: auto;
}

.author strong {
    display: block;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

.author span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--text-color);
}

/* Signup Section */
.signup-section {
    background: white;
    padding: 25px 0 0 0;
    position: relative;
}

.signup-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 42px var(--container-padding);
    background: var(--light-green);
}

.signup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.signup-text h2 {
    line-height: 1.25;
    margin: 0;
}

.signup-text p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-tight);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--background-alt);
    padding: 25px var(--container-padding);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    padding: var(--space-3xl) var(--container-padding) 0;
}

.footer-col {
    flex: 1 1 0;
    min-width: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: var(--font-weight-normal);
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--space-md);
}

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

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    transition: var(--transition-base);
}

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

.footer-col p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    color: var(--text-light);
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: var(--space-xl) var(--container-padding) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
}

/* Credit Card Page Styles */
.cc-hero-section {
    background: url('../images/credit-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px var(--container-padding);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 524px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cc-hero-content h1 {
    font-size: var(--font-size-h1);
    margin-bottom: 24px;
    line-height: var(--line-height-tight);
}

.cc-hero-content p {
    font-size: var(--font-size-lg);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.2;
}

.cc-hero-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cc-tag {
    background: rgba(238, 255, 204, 0.15);
    backdrop-filter: blur(2.5px);
    padding: 8px 16px;
    font-size: var(--font-size-lg);
    border-radius: var(--radius-sm);
}

.cc-stats-section {
    background: linear-gradient(to bottom, #77a8d7 0%, #100 100%);
    padding: 80px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.cc-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 49px 0;
}

.cc-stat-icon {
    width: 99px;
    height: 99px;
}

.cc-stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    color: #d8ff99;
    line-height: var(--line-height-tight);
    text-align: center;
}

.cc-stat-label {
    font-size: var(--font-size-lg);
    color: #fff7f7;
    line-height: var(--line-height-tight);
    text-align: center;
}

.immersive-stats {
    background: linear-gradient(to bottom, #77a8d7 0%, #100 100%);
    padding: 195px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.stats-container {
    display: flex;
    gap: 24px;
    max-width: 1560px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 49px 0;
}

.stat-icon {
    width: 99px;
    height: 99px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    color: #d8ff99;
    line-height: var(--line-height-tight);
    text-align: center;
}

.stat-value-green {
    color: var(--light-green);
}

.stat-label {
    font-size: var(--font-size-lg);
    color: #fff7f7;
    line-height: var(--line-height-tight);
    text-align: center;
}

.cc-cards-section {
    padding: 80px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.cc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cc-section-header h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 8px;
    line-height: var(--line-height-tight);
}

.cc-section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-color);
}

.cc-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cc-filter-btn {
    background: var(--primary-color);
    color: #fff7f7;
    padding: 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    cursor: pointer;
    transition: var(--transition-base);
}

.cc-filter-btn.active {
    background: var(--secondary-color);
    color: var(--text-color);
}

.cc-filter-btn:hover {
    opacity: 0.9;
}

.cc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cc-card {
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cc-card.highlighted {
    background: rgba(128, 145, 152, 0.15);
}

.cc-card.premium {
    background: var(--light-green);
    box-shadow: 0 0 50px rgba(22, 36, 80, 0.1);
}

.cc-card-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    overflow: hidden;
}

.cc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.cc-card-actions {
    margin-top: auto;
}

.cc-card-title-section h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 8px;
    line-height: var(--line-height-tight);
}

.cc-annual-fee {
    font-size: var(--font-size-lg);
    color: var(--text-color);
}

.cc-card-details {
    display: flex;
    gap: 32px;
}

.cc-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cc-detail-label {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    line-height: var(--line-height-relaxed);
}

.cc-detail-value {
    font-size: var(--font-size-md);
}

.cc-card-tag {
    background: rgba(238, 255, 204, 0.35);
    backdrop-filter: blur(2.5px);
    padding: 8px 16px;
    font-size: var(--font-size-lg);
    display: inline-block;
    align-self: flex-start;
}

.cc-card-tag.gray {
    background: rgba(235, 239, 240, 0.7);
}

.cc-card-description h4 {
    font-size: var(--font-size-h4);
    margin-bottom: 19px;
    line-height: var(--line-height-tight);
}

.cc-card-description p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
}

.cc-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-card-features li {
    font-size: var(--font-size-md);
    padding-left: 36px;
    position: relative;
}

.cc-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 400;
}

.cc-card-actions {
    display: flex;
    gap: 16px;
}

.premium-badge {
    font-size: var(--font-size-h4);
}

.cc-comparison-section {
    padding: 80px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--background-alt);
}

.cc-comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
}

.cc-comparison-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.cc-comparison-row.header {
    border-bottom: 2px solid var(--text-color);
}

.cc-comparison-row.header .cc-comparison-cell:nth-child(1) {
    background: rgba(128, 145, 152, 0.15);
}

.cc-comparison-row.header .cc-comparison-cell:nth-child(2) {
    background: #edffcc;
}

.cc-comparison-row.header .cc-comparison-cell:nth-child(3) {
    background: #bbd4eb;
}

.cc-comparison-row.header .cc-comparison-cell:nth-child(4) {
    background: #edffcc;
}

.cc-comparison-cell {
    padding: 20px;
    font-size: var(--font-size-base);
}

.cc-comparison-row.header .cc-comparison-cell {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.cc-comparison-row:not(.header) .cc-comparison-cell:first-child {
    background: var(--background-alt);
    font-weight: 500;
}

.cc-cta-section {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    background: white;
    max-height: 450px;
}

.cc-cta-content {
    flex: 1;
    padding: 52px 80px;
    max-width: 700px;
}

.cc-cta-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 24px;
    line-height: var(--line-height-tight);
}

.cc-cta-content p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
    margin-bottom: 40px;
}

.cc-cta-buttons {
    display: flex;
    gap: 16px;
}

.cc-cta-visual {
    flex: 1;
    min-width: 0;
    background: linear-gradient(to left, #77a8d7, white);
    overflow: hidden;
}

.cc-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Checking Page Styles */
.checking-hero {
    display: flex;
    gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: stretch;
}

.checking-hero-content {
    width: 50%;
    padding: 147px 98px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.checking-tag {
    background: rgba(235, 239, 240, 0.35);
    backdrop-filter: blur(2.5px);
    padding: 8px 16px;
    font-size: var(--font-size-lg);
    display: inline-block;
    align-self: flex-start;
}

.checking-hero h1 {
    line-height: var(--line-height-tight);
    max-width: 710px;
}

.checking-hero p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
    max-width: 710px;
}

.checking-hero-buttons {
    display: flex;
    gap: 16px;
}

.checking-hero-visual {
    width: 50%;
    background-image: url('../images/checking-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-stats {
    position: absolute;
    bottom: 73px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 637px;
    max-width: calc(100% - 146px);
}

.hero-stat-card {
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: var(--radius-lg);
}

.hero-stat-card.stat-white {
    background: #fff7f7;
}

.hero-stat-card.stat-green {
    background: var(--light-green);
}

.hero-stat-card .stat-value {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    color: var(--text-color);
}

.hero-stat-card .stat-label {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
    color: var(--text-color);
}

.alternating-features {
    max-width: var(--max-width);
    margin: 0 auto;
}

.alternating-feature {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.alternating-feature.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    width: 50%;
    height: 822px;
    flex-shrink: 0;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.alternating-feature:first-child .feature-image img {
    object-position: -38.52% 0;
    width: 140%;
}

.alternating-feature.reverse .feature-image img {
    object-position: center;
    width: 100%;
}

.alternating-feature:last-child .feature-image img {
    object-position: -20.13% 0;
    width: 140%;
}

.feature-content {
    width: 50%;
    padding: 122px 98px;
    display: flex;
    flex-direction: column;
    gap: 29px;
    background: var(--background);
}

.feature-content-tinted {
    background: rgba(128, 145, 152, 0.15);
}

.feature-tag {
    background: rgba(238, 255, 204, 0.35);
    backdrop-filter: blur(2.5px);
    padding: 8px 16px;
    font-size: var(--font-size-lg);
    display: inline-block;
    align-self: flex-start;
}

.feature-tag-gray {
    background: rgba(235, 239, 240, 0.35);
}

.feature-content h2 {
    line-height: var(--line-height-tight);
    max-width: 611px;
}

.feature-content > p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-tight);
    max-width: 611px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    font-size: var(--font-size-md);
    padding-left: 44px;
    position: relative;
    line-height: var(--line-height-tight);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 29px;
    height: 29px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"><path d="M26.6259 12.2138C27.1837 14.9512 26.7862 17.7972 25.4996 20.277C24.2131 22.7569 22.1152 24.7207 19.556 25.841C16.9968 26.9613 14.1308 27.1704 11.436 26.4334C8.74129 25.6964 6.38064 24.0579 4.74777 21.7911C3.11489 19.5242 2.30849 16.7661 2.46305 13.9767C2.6176 11.1872 3.72377 8.53508 5.59708 6.46251C7.47039 4.38994 9.99761 3.02222 12.7573 2.58744C15.517 2.15265 18.3423 2.67709 20.7621 4.07329" stroke="%230A0A0A" stroke-width="2.44275" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.9922 13.4351L14.6563 17.0992L26.87 4.8855" stroke="%230A0A0A" stroke-width="2.44275" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: contain;
}

.stepped-benefits {
    padding: 147px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--light-green) 0%, white 100%);
}

.stepped-benefits .section-header-center {
    margin-bottom: 140px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 98px 73px;
    margin-bottom: 0;
}

.benefit-item {
    display: flex;
    gap: 39px;
    align-items: flex-start;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    color: var(--text-color);
    line-height: var(--line-height-tight);
    width: 147px;
    height: 147px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-icon-img {
    width: 68px;
    height: 68px;
}

.benefit-content h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
}

.benefit-content p {
    font-size: 19.5px;
    line-height: 29px;
}

.account-types {
    padding: 147px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--background);
}

.account-types .section-header-center {
    margin-bottom: 98px;
}

.account-cards {
    display: flex;
    gap: 39px;
    margin-bottom: 0;
}

.account-card {
    flex: 1;
    padding: 94px 59px 59px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-card-beige {
    background: #f9f8f5;
}

.account-card-blue {
    background: rgba(187, 212, 235, 0.8);
}

.account-card h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
}

.account-card > p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
    opacity: 0.8;
}

.account-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 14px;
}

.account-price .price {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
}

.account-price .period {
    font-size: var(--font-size-lg);
}

.account-card hr {
    border: none;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin: 40px 0 20px;
}

.account-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    flex: 1;
}

.account-features li {
    font-size: var(--font-size-lg);
    padding-left: 39px;
    position: relative;
    line-height: var(--line-height-tight);
}

.account-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" fill="%23012031"/></svg>') no-repeat center;
    background-size: contain;
}

.account-card .btn-primary {
    width: 100%;
}

.getting-started-steps {
    padding: 147px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(to bottom, white 0%, var(--light-green) 100%);
}

.getting-started-steps .section-header-center {
    margin-bottom: 85px;
}

.steps-list {
    max-width: 1563px;
    margin: 0 auto 85px;
    display: flex;
    flex-direction: column;
    gap: 49px;
}

.step-item {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 96px;
    color: var(--primary-color);
    line-height: 103px;
    width: 147px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 22px;
}

.step-card {
    flex: 1;
    background: var(--background);
    padding: 49px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 48px;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.step-card h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
}

.step-tag-gray {
    background: rgba(235, 239, 240, 0.3);
}

.step-card p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.checking-cta {
    display: flex;
    max-width: var(--max-width);
    margin: 0 auto;
    background: white;
    align-items: stretch;
    padding: 147px 0;
}

.checking-cta-content {
    width: 937px;
    padding: 52px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checking-cta-content h2 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    max-width: 685px;
}

.checking-cta-content p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
    max-width: 666px;
}

.checking-cta-buttons {
    display: flex;
    gap: 8px;
    margin-top: 23px;
}

.checking-cta-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    height: 560px;
}

.checking-cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mortgage Page Styles */
.mortgage-getting-started {
    background: linear-gradient(to bottom, white 0%, #dde9f5 100%);
    padding: 161px 98px 147px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 38px;
    align-items: center;
}

.mortgage-nav-tabs {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 1563px;
    position: relative;
    padding-bottom: 52px;
}

.mortgage-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.mortgage-tab img {
    width: 61px;
    height: 61px;
}

.mortgage-tab svg {
    width: 61px;
    height: 61px;
}

.mortgage-tab span {
    font-size: 15.5px;
    color: var(--text-color);
    text-align: center;
    line-height: var(--line-height-tight);
}

.mortgage-tab.active span {
    font-weight: 600;
    color: var(--primary-color);
}

.mortgage-tab.active::after {
    content: '';
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    width: 135px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.mortgage-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
}

.mortgage-header h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
}

.mortgage-header p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.mortgage-calculator {
    background: rgba(128, 145, 152, 0.15);
    padding: 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

.calculator-tabs {
    display: flex;
    gap: 0;
}

.calc-tab {
    background: #e7e9e7;
    color: #809198;
    padding: 21px 25px;
    border: none;
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    cursor: pointer;
    transition: var(--transition-base);
}

.calc-tab.active {
    background: #eceff0;
    color: var(--primary-color);
}

.calculator-content {
    display: flex;
    gap: 0;
    padding: 129px 212px;
    position: relative;
}

@media (max-width: 1600px) {
    .calculator-content {
        padding: 80px 60px;
    }
    
    .calculator-inputs {
        padding-right: 60px;
    }
    
    .input-row {
        gap: 24px;
    }
    
    .input-group input {
        width: 180px;
    }
    
    .result-amount {
        font-size: 40px;
    }
    
    .result-breakdown {
        gap: 40px;
    }
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 94px;
    flex: 1;
    padding-right: 121px;
}

.input-row {
    display: flex;
    gap: 46px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.input-group label {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.input-group input {
    background: white;
    border: 1px solid var(--text-color);
    padding: 16px 20px;
    font-size: var(--font-size-md);
    width: 239px;
}

.calc-btn {
    width: fit-content;
    margin-top: 32px;
}

.calculator-result {
    flex: 1;
    padding-left: 121px;
    border-left: 2px solid #809198;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator-result h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.result-amount {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    line-height: var(--line-height-tight);
}

.result-breakdown {
    display: flex;
    gap: 180px;
    padding-top: 24px;
    border-top: 2px solid #809198;
}

.result-breakdown p {
    font-size: var(--font-size-lg);
}

.mortgage-disclaimer {
    background: white;
    padding: 60px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.mortgage-disclaimer p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    margin-bottom: 16px;
}

.mortgage-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Credit Card Form Page Styles */
.credit-form-section {
    background: linear-gradient(to bottom, #dde9f5 0%, white 100%);
    padding: 161px var(--container-padding) 147px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.credit-form-section h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
    margin-bottom: 38px;
    text-align: center;
    padding-bottom: var(--space-2xl);
}

.credit-form-container {
    display: flex;
    gap: 73px;
    align-items: stretch;
}

.credit-form-sidebar {
    width: 416px;
    flex-shrink: 0;
    background: rgba(128, 145, 152, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.credit-card-preview {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.credit-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credit-card-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credit-card-info h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-tight);
}

.credit-card-info p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.credit-card-tag {
    padding: 0 40px 40px;
}

.credit-card-tag p {
    background: rgba(238, 255, 204, 0.35);
    backdrop-filter: blur(2.5px);
    padding: 8px 16px;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
    display: inline-block;
}

.credit-form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.credit-application-form {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.form-row {
    display: flex;
    gap: 27px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group.form-group-small {
    flex: 0 0 auto;
    width: 145px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: white;
    border: none;
    padding: 20px;
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    box-shadow: -6px 4px 4px 0px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder {
    color: var(--text-color);
    opacity: 1;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M7.5 10L2.5 5L12.5 5L7.5 10Z" fill="%23000000"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
    padding-right: 50px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 0;
}

/* Accounts Page Styles */
.accounts-hero {
    background: linear-gradient(to bottom, white 0%, #dde9f5 100%);
    padding: 161px var(--container-padding) 64px;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.accounts-hero h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-tight);
    margin-bottom: 24px;
}

.accounts-hero p {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-tight);
}

.accounts-content {
    background: linear-gradient(to bottom, #dde9f5 0%, #dde9f5 100%);
    padding: 0 var(--container-padding) 147px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 73px;
    align-items: flex-start;
}

.accounts-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.account-table {
    background: white;
    overflow: hidden;
}

.account-table-header {
    background: var(--primary-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
    color: #fff7f7;
}

.account-info {
    grid-column: 1 / 3;
}

.account-balance {
    grid-column: 4;
    text-align: left;
    margin-left: -6px;
}

.account-table-header span {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.transaction-table {
    display: flex;
    flex-direction: column;
}

.transaction-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 2px solid var(--text-color);
    background: white;
}

.transaction-header > div {
    padding: 24px;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.th-date {
    background: rgba(128, 145, 152, 0.15);
}

.th-description,
.th-memo {
    background: white;
}

.th-amount {
    background: #eceff0;
}

.transaction-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.transaction-row > div {
    padding: 20px;
    font-size: var(--font-size-base);
}

.td-date {
    background: var(--background-alt);
    font-weight: 500;
}

.td-description,
.td-memo,
.td-amount {
    background: white;
}

.td-amount.negative {
    color: #d90000;
}

.td-amount.positive {
    color: #008700;
}

.alert-row {
    grid-template-columns: 3fr 1fr;
}

.td-alert {
    background: var(--background-alt);
    color: #d90000;
    font-weight: 600;
    padding: 20px;
    font-size: var(--font-size-base);
}

.td-action {
    background: white;
    font-weight: 600;
    padding: 20px;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: var(--transition-base);
}

.td-action:hover {
    color: var(--primary-color);
}

.accounts-sidebar {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.sidebar-card {
    background: white;
    overflow: hidden;
}

.sidebar-card-header {
    background: var(--primary-color);
    padding: 16px 24px;
}

.sidebar-card-header.hidden-link {
    text-decoration: none;
    cursor: default;
    display: block;
}

.sidebar-card-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #fff7f7;
    font-family: var(--font-primary);
    line-height: var(--line-height-tight);
}

.rewards-card {
    position: relative;
    height: 309px;
}

.rewards-header {
    background: var(--secondary-color);
    height: 46.5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.rewards-header h3 {
    color: var(--primary-color);
}

.sidebar-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.sidebar-link {
    padding: 20px;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

.sidebar-link:hover {
    background: var(--background-alt);
}

.accounts-sidebar .rewards-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 46.5px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
}

.accounts-sidebar .rewards-row {
    height: 65px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.accounts-sidebar .rewards-row:nth-child(2) {
    align-items: flex-start;
    padding-top: 19px;
}

.accounts-sidebar .rewards-spacer {
    height: 65px;
}

.accounts-sidebar .rewards-label {
    font-size: var(--font-size-lg);
    font-weight: 400;
    margin: 0;
    line-height: var(--line-height-tight);
}

.accounts-sidebar .rewards-points {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--primary-color);
    line-height: var(--line-height-tight);
    margin: 0;
}

.accounts-sidebar .rewards-link {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-base);
    line-height: 24px;
}

.accounts-sidebar .rewards-link:hover {
    color: var(--primary-color);
}

.report-issue-btn {
    width: 100%;
}

/* Auth Required Section */
.auth-required-section {
    padding: 147px var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--background);
}

.auth-required-content {
    background: var(--background-alt);
    padding: 80px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.auth-required-content h3 {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-tight);
    margin-bottom: 29px;
}

.auth-required-content p {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --font-size-3xl: 40px;
        --font-size-2xl: 32px;
        --font-size-xl: 24px;
    }
    
    .navbar {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .profile-dropdown {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .dropdown-menu.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-links {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-images {
        width: 100%;
    }
    
    .hero-img-large {
        width: 100%;
    }
    
    .hero-img-bottom {
        flex-direction: column;
    }
    
    .hero-img-small,
    .hero-img-medium {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cards-section {
        flex-direction: column;
        padding: 20px;
    }
    
    .cards-image {
        width: 100%;
        height: 300px;
    }
    
    .cards-content {
        width: 100%;
    }
    
    .products-grid {
        flex-direction: column;
    }
    
    .advantage-large {
        flex-direction: column;
    }
    
    .advantage-large .advantage-image {
        width: 100%;
        height: 400px;
    }
    
    .advantages-grid {
        flex-direction: column;
    }
    
    .advantage-image-small {
        height: 300px;
    }
    
    .rewards-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .rewards-content {
        width: 100%;
    }
    
    .rewards-images {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    
    .rewards-col-left,
    .rewards-col-right {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .rewards-col-left {
        gap: 32px;
    }
    
    .rewards-card {
        width: 100%;
    }
    
    .rewards-main-card {
        height: 400px;
    }
    
    .getting-started-section {
        padding: 40px 20px;
    }
    
    .steps-container {
        width: 100%;
        height: 300px;
    }
    
    .btn-signup {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .signup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .cc-hero-content h1 {
        font-size: 40px;
    }
    
    .cc-hero-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .cc-stats-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .cc-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .cc-filter-buttons {
        width: 100%;
    }
    
    .cc-filter-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .cc-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cc-comparison-row {
        grid-template-columns: 1fr;
    }
    
    .cc-comparison-cell {
        padding: 12px;
    }
    
    .cc-cta-section {
        flex-direction: column;
    }
    
    .cc-cta-content {
        padding: 40px 20px;
        max-width: 100%;
    }
    
    .cc-cta-visual {
        width: 100%;
        height: 300px;
    }
    
    .cc-cta-buttons {
        flex-direction: column;
    }
    
    .checking-hero {
        flex-direction: column;
    }
    
    .checking-hero-content {
        width: 100%;
        padding: 40px 20px;
    }
    
    .checking-hero-visual {
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: center;
    }
    
    .hero-stats {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checking-hero-buttons {
        flex-direction: column;
    }
    
    .alternating-feature,
    .alternating-feature.reverse {
        flex-direction: column;
    }
    
    .feature-image {
        width: 100%;
        height: 300px;
    }

    .alternating-feature:first-child .feature-image img,
    .alternating-feature.reverse .feature-image img,
    .alternating-feature:last-child .feature-image img {
        object-position: center;
        width: 100%;
    }
    
    .feature-content {
        width: 100%;
        padding: 40px 20px;
    }

    .stepped-benefits {
        padding: 60px 20px;
    }

    .stepped-benefits .section-header-center {
        margin-bottom: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-number {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }

    .immersive-stats {
        padding: 60px 20px;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        padding: 20px 0;
    }

    .account-types {
        padding: 60px 20px;
    }

    .account-types .section-header-center {
        margin-bottom: 40px;
    }
    
    .account-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .account-card {
        padding: 40px 20px;
    }

    .getting-started-steps {
        padding: 60px 20px;
    }

    .getting-started-steps .section-header-center {
        margin-bottom: 40px;
    }

    .steps-list {
        margin-bottom: 40px;
        gap: 30px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        width: 100%;
        font-size: 60px;
        line-height: 1;
        padding-top: 0;
    }

    .step-card {
        margin-left: 0;
        padding: 30px 20px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .checking-cta {
        flex-direction: column;
        padding: 60px 0;
    }
    
    .checking-cta-content {
        width: 100%;
        padding: 40px 20px;
    }
    
    .checking-cta-visual {
        width: 100%;
        height: 300px;
    }
    
    .checking-cta-buttons {
        flex-direction: column;
    }

    .mortgage-getting-started {
        padding: 60px 20px;
    }

    .mortgage-nav-tabs {
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 30px;
        justify-content: center;
    }

    .mortgage-tab {
        flex: 0 0 calc(50% - 10px);
        gap: 12px;
    }

    .mortgage-tab svg {
        width: 48px;
        height: 48px;
    }

    .mortgage-tab span {
        font-size: 12px;
    }

    .mortgage-tab.active::after {
        display: none;
    }

    .mortgage-header h1 {
        font-size: 40px;
    }

    .mortgage-header p {
        font-size: var(--font-size-base);
    }

    .mortgage-calculator {
        padding: 0;
    }

    .calculator-tabs {
        flex-wrap: wrap;
    }

    .calc-tab {
        flex: 1;
        min-width: 100px;
        font-size: 18px;
        padding: 16px 12px;
    }

    .calculator-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .calculator-inputs {
        gap: 40px;
        padding-right: 0;
    }

    .input-row {
        flex-direction: column;
        gap: 24px;
    }

    .input-group {
        gap: 12px;
    }

    .input-group input {
        width: 100%;
    }

    .calc-btn {
        width: 100%;
    }

    .calculator-result {
        padding-left: 0;
        padding-top: 40px;
        border-left: none;
        border-top: 2px solid #809198;
        margin-top: 40px;
    }

    .result-amount {
        font-size: 40px;
    }

    .result-breakdown {
        flex-direction: column;
        gap: 16px;
    }

    .mortgage-disclaimer {
        padding: 40px 20px;
        text-align: left;
    }

    .accounts-hero {
        padding: 60px 20px 40px;
    }

    .accounts-hero h1 {
        font-size: 40px;
    }

    .accounts-content {
        flex-direction: column;
        padding: 0 20px 60px;
        gap: 40px;
        align-items: center;
    }

    .accounts-main {
        gap: 40px;
        width: 100%;
        max-width: 600px;
    }

    .account-table-header {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    .account-info,
    .account-balance {
        grid-column: 1;
    }

    .account-balance {
        margin-left: 0;
    }

    .transaction-header {
        display: none;
    }

    .transaction-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px;
    }

    .transaction-row > div {
        padding: 4px 0;
    }

    .td-date,
    .td-description,
    .td-memo,
    .td-amount {
        background: white;
    }

    .td-date::before {
        content: 'Date: ';
        font-weight: 600;
    }

    .td-description::before {
        content: 'Description: ';
        font-weight: 600;
    }

    .td-amount::before {
        content: 'Amount: ';
        font-weight: 600;
    }

    .alert-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .td-alert,
    .td-action {
        background: white;
    }

    .accounts-sidebar {
        width: 100%;
        max-width: 600px;
        gap: 40px;
    }

    .credit-form-section {
        padding: 60px 20px;
    }

    .credit-form-container {
        flex-direction: column;
        gap: 40px;
    }

    .credit-form-sidebar {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-group.form-group-small {
        width: 100%;
    }

    .form-actions {
        flex-direction: column;
    }

    .credit-form-section h1 {
        font-size: 40px;
    }
}
