/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #d71e2b;
    letter-spacing: 1px;
}

.primary-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #d71e2b;
}

.nav-link.active {
    color: #d71e2b;
    border-bottom: 2px solid #d71e2b;
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 15px;
}

.util-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}

.util-link:hover {
    color: #d71e2b;
}

.search-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s;
    border-radius: 4px;
}

.search-icon:hover {
    color: #d71e2b;
    background-color: #f5f5f5;
}

.search-icon svg {
    width: 20px;
    height: 20px;
}

.sign-on-btn {
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.sign-on-btn:hover {
    background-color: #b81a25;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(215, 30, 43, 0.3);
    color: #fff;
    text-decoration: none;
}

.secondary-nav {
    background-color: #f8f8f8;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
}

.secondary-nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.secondary-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s;
}

.secondary-link:hover {
    color: #d71e2b;
}

.secondary-link.active {
    color: #d71e2b;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(215, 30, 43, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    justify-content: flex-start;
}

.vantage-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 350px;
    transition: all 0.3s ease;
}

.vantage-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.vantage-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.vantage-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.vantage-sign-on {
    width: 100%;
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.vantage-sign-on:hover {
    background-color: #b81a25;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(215, 30, 43, 0.3);
}

.vantage-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vantage-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.vantage-links a:hover {
    color: #d71e2b;
}

/* Hero Right Section */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-headline {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: #333;
    max-width: 600px;
}

/* Business Banking Hero - Login Card */
.login-card {
    background-color: #fff;
    border: 2px solid #d71e2b;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 380px;
    width: 100%;
}

.greeting {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.login-card .form-group {
    margin-bottom: 15px;
}

.login-card input[type="text"],
.login-card input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.login-card input:focus {
    border-color: #d71e2b;
}

.password-group {
    position: relative;
}

.show-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #d71e2b;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
}

.login-btn {
    width: 100%;
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #b81a25;
}

.login-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #d71e2b;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #d71e2b 0%, #b81a25 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.promo-content {
    flex: 1;
    z-index: 1;
}

.promo-headline {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
}

.promo-text {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.promo-btn {
    background-color: #fff;
    color: #d71e2b;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.promo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.badge-content {
    text-align: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
}

.badge-amount {
    display: block;
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.badge-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: #d71e2b;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.feature-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

/* Product Selector Section */
.product-selector-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.selector-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.selector-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.selector-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.selector-btn {
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.selector-btn:hover {
    background-color: #b81a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 30, 43, 0.3);
}

.selector-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.selector-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

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

.why-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.why-title {
    font-size: 28px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
}

.why-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Zelle Section */
.zelle-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: #fff;
}

.zelle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.zelle-app {
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
}

.app-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.app-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-item:hover {
    background: rgba(255,255,255,0.2);
}

.zelle-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #fff;
}

.zelle-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.95;
}

.zelle-features {
    list-style: none;
    margin-bottom: 40px;
}

.zelle-features li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.zelle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: bold;
}

.app-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
}

.app-badge img {
    height: 40px;
    width: auto;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.resource-image {
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.resource-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.resource-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.resource-link {
    display: inline-block;
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 20px 20px;
    transition: color 0.3s;
}

.resource-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

/* Help Section */
.help-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-item:hover {
    border-color: #d71e2b;
    background-color: #f8f9fa;
}

.help-icon {
    font-size: 32px;
}

.help-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.help-arrow {
    color: #d71e2b;
    font-size: 14px;
}

/* Promotional Cards Section */
.promo-cards-section {
    padding: 60px 0;
    background-color: #fff;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.promo-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: #d71e2b;
}

.promo-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.promo-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.promo-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-card-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.promo-card-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

/* Lending Section */
.lending-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.lending-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lending-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lending-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.lending-btn {
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lending-btn:hover {
    background-color: #b81a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 30, 43, 0.3);
}

.lending-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.lending-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Guidance Section */
.guidance-section {
    padding: 80px 0;
    background-color: #fff;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guidance-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guidance-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.guidance-image {
    height: 250px;
    overflow: hidden;
}

.guidance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.guidance-card:hover .guidance-image img {
    transform: scale(1.05);
}

.guidance-icon {
    font-size: 48px;
    text-align: center;
    padding: 30px 20px 10px;
}

.guidance-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 20px 20px 10px;
    line-height: 1.3;
}

.guidance-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0 20px 10px;
    font-weight: 500;
}

.guidance-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.guidance-btn {
    margin: 0 20px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.guidance-btn:hover {
    background-color: #555;
    transform: translateY(-1px);
}

/* Advisor Section */
.advisor-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #fff;
}

.advisor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advisor-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.advisor-app {
    height: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}

.advisor-app .app-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.app-content {
    padding: 20px;
}

.app-title {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.app-chart {
    margin-top: 20px;
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    gap: 15px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #d71e2b 0%, #b81a25 100%);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    min-height: 40px;
}

.advisor-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
}

.advisor-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.8;
}

.advisor-note {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    font-style: italic;
}

/* Communities Section */
.communities-section {
    padding: 80px 0;
    background-color: #fff;
}

.communities-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.communities-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.community-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.community-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.community-image {
    height: 300px;
    overflow: hidden;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.community-card:hover .community-image img {
    transform: scale(1.05);
}

.community-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 25px 25px 15px;
    line-height: 1.3;
}

.community-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0 25px 25px;
}

.community-btn {
    margin: 0 25px 25px;
    background-color: transparent;
    color: #d71e2b;
    border: 2px solid #d71e2b;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background-color: #d71e2b;
    color: #fff;
}

/* Badge Enhancements */
.badge-enjoy {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.badge-lines {
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin-top: 10px;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.hero-image-placeholder .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    opacity: 0.9;
}

.hero-image-placeholder .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero-image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Seamless Section */
.seamless-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.section-title-large {
    font-size: 56px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.action-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.action-btn:active {
    transform: translateY(0);
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.challenges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.outline-btn {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.outline-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #333;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.outline-btn:hover::before {
    width: 300px;
    height: 300px;
}

.outline-btn:hover {
    color: #fff;
    border-color: #333;
}

.challenges-image-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenges-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.challenges-image-placeholder .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.85) 0%, rgba(67, 233, 123, 0.85) 100%);
    opacity: 0.9;
}

.challenges-image-placeholder .placeholder-icon {
    font-size: 80px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.challenges-image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Insights Section */
.insights-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title-center {
    font-size: 42px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.section-description-center {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.insight-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.insight-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: #d71e2b;
}

.card-image-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-image-placeholder:hover {
    transform: scale(1.05);
}

.card-image-placeholder .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
}

.card-image-placeholder .placeholder-icon {
    font-size: 50px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.card-image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Specific card image styles */
.card-image-placeholder.office-building {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image-placeholder.office-building .image-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.card-image-placeholder.food-report {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-image-placeholder.food-report .image-overlay {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.85) 0%, rgba(245, 87, 108, 0.85) 100%);
}

.card-image-placeholder.supply-chain {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-image-placeholder.supply-chain .image-overlay {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.85) 0%, rgba(0, 242, 254, 0.85) 100%);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 20px;
    line-height: 1.5;
}

.card-links {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-links a {
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.card-links a:hover {
    color: #b81a25;
    text-decoration: underline;
}

.card-text-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text-insight h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.text-insight a {
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.text-insight a:hover {
    color: #b81a25;
    text-decoration: underline;
}

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

.primary-btn {
    background-color: #d71e2b;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 30, 43, 0.3);
}

.primary-btn:hover {
    background-color: #b81a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 30, 43, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
}

/* Successes Section */
.successes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.successes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(250, 112, 154, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.success-story {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-story:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.3;
    margin: 0;
}

.story-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-image-placeholder {
    height: 300px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.story-image-placeholder .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
}

.story-image-placeholder .placeholder-icon {
    font-size: 70px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.story-image-placeholder .placeholder-content {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.story-image-placeholder.mush-product {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.story-image-placeholder.mush-product .image-overlay {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.85) 0%, rgba(254, 225, 64, 0.85) 100%);
}

.story-image-placeholder.chomps-brand {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.story-image-placeholder.chomps-brand .image-overlay {
    background: linear-gradient(135deg, rgba(48, 207, 208, 0.85) 0%, rgba(51, 8, 103, 0.85) 100%);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    line-height: 1.3;
}

.story-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d71e2b;
}

.footer-copyright {
    font-size: 12px;
    color: #999;
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced section backgrounds */
.seamless-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.insights-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

/* Add subtle animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insight-card,
.success-story {
    animation: fadeInUp 0.6s ease-out;
}

/* Improve typography */
.hero-headline {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-large {
    background: linear-gradient(135deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image Styles */
.hero-image,
.challenges-image,
.card-image,
.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover,
.challenges-image:hover,
.card-image:hover,
.story-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.hero-image img,
.challenges-image img,
.card-image img,
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image {
    height: 400px;
}

.challenges-image {
    height: 400px;
}

.card-image {
    height: 200px;
}

.story-image {
    height: 300px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #d71e2b 0%, #b81a25 100%);
    color: #fff;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-box .form-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 300;
}

.modal-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #d71e2b;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d71e2b;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.forgot-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #d71e2b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background-color: #b81a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 30, 43, 0.3);
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.modal-footer p {
    color: #666;
    font-size: 14px;
}

.modal-footer a {
    color: #d71e2b;
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: #4caf50;
}

.toast.error {
    background-color: #f44336;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        justify-content: center;
    }
    
    .login-card {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-headline {
        font-size: 36px;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-right {
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .selector-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .zelle-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .success-story {
        flex-direction: column;
    }
    
    .story-image {
        height: 240px;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .promo-headline {
        font-size: 32px;
    }
    
    .selector-title {
        font-size: 32px;
    }
    
    .secondary-nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .secondary-link {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .primary-nav {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .header-utils {
        gap: 10px;
    }
    
    .util-link {
        font-size: 12px;
    }
    
    .sign-on-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Secondary Navigation */
    .secondary-nav {
        padding: 10px 0;
    }
    
    .secondary-nav-links {
        flex-wrap: wrap;
        gap: 8px;
        padding: 0 15px;
    }
    
    .secondary-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        justify-content: center;
        order: 2;
    }
    
    .hero-right {
        order: 1;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 28px;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .login-card {
        max-width: 100%;
        padding: 25px 20px;
    }
    
    .greeting {
        font-size: 18px;
    }
    
    .login-subtitle {
        font-size: 14px;
    }
    
    .login-card input[type="text"],
    .login-card input[type="password"] {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .login-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .login-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .login-links a {
        font-size: 12px;
    }
    
    /* Sections */
    .section-title-large {
        font-size: 28px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
    }
    
    .section-title-center {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
        text-align: center;
    }
    
    .section-description-center {
        font-size: 15px;
    }
    
    .section-text {
        font-size: 15px;
    }
    
    /* Action Buttons */
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        max-width: 400px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* Insights Grid */
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .insight-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    /* Challenges Section */
    .challenges-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .challenges-text {
        text-align: center;
    }
    
    .challenges-image {
        height: 300px;
    }
    
    /* Success Stories */
    .success-stories {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .success-story {
        flex-direction: column;
    }
    
    .story-image {
        height: 200px;
    }
    
    .story-content {
        padding: 15px;
    }
    
    .story-title {
        font-size: 16px;
    }
    
    .story-description {
        font-size: 13px;
    }
    
    /* Resources Grid */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    /* Help Grid */
    .help-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .help-item {
        padding: 15px;
    }
    
    /* Promo Banner */
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .promo-badge {
        margin-top: 20px;
    }
    
    .badge-amount {
        font-size: 48px;
    }
    
    .promo-headline {
        font-size: 24px;
    }
    
    /* Selector */
    .selector-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .selector-title {
        font-size: 24px;
        text-align: center;
    }
    
    .selector-subtitle {
        font-size: 14px;
        text-align: center;
    }
    
    /* Zelle Section */
    .zelle-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .zelle-title {
        font-size: 28px;
        text-align: center;
    }
    
    .zelle-subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .zelle-info {
        text-align: center;
    }
    
    .phone-screen {
        width: 200px;
        height: 400px;
        margin: 0 auto;
    }
    
    /* Why Choose */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-card {
        text-align: center;
    }
    
    /* Modals */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Newsletter */
    .newsletter-box .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Toast */
    .toast {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Footer */
    .footer-content {
        padding: 30px 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Other Grids */
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .lending-content {
        grid-template-columns: 1fr;
    }
    
    .guidance-grid {
        grid-template-columns: 1fr;
    }
    
    .advisor-content {
        grid-template-columns: 1fr;
    }
    
    .communities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-images {
        grid-template-columns: 1fr;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        flex-direction: column;
    }
    
    /* OTP Form */
    .otp-header h2 {
        font-size: 20px;
    }
    
    .otp-instruction {
        font-size: 14px;
    }
    
    .otp-subinstruction {
        font-size: 12px;
    }
    
    .otp-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Images */
    .hero-image img,
    .challenges-image img,
    .card-image img,
    .story-image img,
    .resource-image img,
    .why-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Text Overflow */
    .hero-headline,
    .section-title,
    .section-title-large,
    .card-title,
    .story-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }
    
    /* Seamless Section */
    .seamless-section {
        padding: 40px 0;
    }
    
    /* Insights Section */
    .insights-section {
        padding: 40px 0;
    }
    
    /* Successes Section */
    .successes-section {
        padding: 40px 0;
    }
    
    /* Challenges Section */
    .challenges-section {
        padding: 40px 0;
    }
    
    /* Features Section */
    .features-section {
        padding: 40px 0;
    }
    
    /* Resources Section */
    .resources-section {
        padding: 40px 0;
    }
    
    /* Help Section */
    .help-section {
        padding: 40px 0;
    }
    
    /* Zelle Section */
    .zelle-section {
        padding: 40px 0;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 40px 0;
    }
    
    /* Product Selector Section */
    .product-selector-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header-content {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    /* Hero */
    .hero {
        padding: 30px 0;
    }
    
    .hero-headline {
        font-size: 24px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .login-card {
        padding: 20px 15px;
    }
    
    .greeting {
        font-size: 16px;
    }
    
    /* Sections */
    .section-title-large {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-center {
        font-size: 24px;
    }
    
    /* Promo */
    .promo-headline {
        font-size: 20px;
    }
    
    .badge-amount {
        font-size: 40px;
    }
    
    /* Selector */
    .selector-title {
        font-size: 20px;
    }
    
    /* Zelle */
    .zelle-title {
        font-size: 24px;
    }
    
    .zelle-subtitle {
        font-size: 18px;
    }
    
    .phone-screen {
        width: 180px;
        height: 360px;
    }
    
    /* Cards */
    .feature-card,
    .insight-card,
    .resource-card,
    .why-card {
        padding: 15px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    /* Success Stories */
    .story-title {
        font-size: 18px;
    }
    
    .story-description {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        padding: 20px 15px;
    }
    
    /* Other Grids */
    .promo-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modals */
    .modal-content {
        padding: 20px 15px;
        margin: 5% auto;
    }
    
    /* Newsletter */
    .newsletter-box h3 {
        font-size: 24px;
    }
    
    .newsletter-box p {
        font-size: 14px;
    }
    
    /* Section Padding */
    .seamless-section,
    .insights-section,
    .successes-section,
    .challenges-section,
    .features-section,
    .resources-section,
    .help-section,
    .zelle-section,
    .why-choose-section,
    .product-selector-section,
    .contact-section {
        padding: 30px 0;
    }
    
    /* App Badges */
    .app-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .app-badge img {
        height: 35px;
    }
    
    /* Card Links */
    .card-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Text Insights */
    .text-insight {
        padding: 15px;
    }
    
    .text-insight h4 {
        font-size: 16px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 60px 0;
    background-color: #fff;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
    text-align: center;
}

.about-hero-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Work-Life Balance Banner */
.work-life-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-btn {
    background-color: #fff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #2c2c2c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.banner-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-split {
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 300px;
    position: relative;
}

.illustration-left,
.illustration-right {
    flex: 1;
    position: relative;
}

.illustration-person {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.person-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffd700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.person-body {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    position: relative;
}

.work-attire {
    background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
}

.life-attire {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.person-desk {
    position: absolute;
    bottom: -20px;
    width: 120px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 4px;
}

.laptop {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: #ec4899;
    border-radius: 4px;
}

.person-dog {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: #92400e;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

/* About Cards Section */
.about-cards-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #d71e2b;
}

.card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.history-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.history-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ffd700;
}

.history-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 40px auto 30px;
    line-height: 1.8;
}

.history-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

.history-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

/* Bottom Cards Section */
.bottom-cards-section {
    padding: 80px 0;
    background-color: #fff;
}

.bottom-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* OTP Form Styles for Hero Login Forms */
.otp-header {
    margin-bottom: 25px;
}

.otp-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.otp-instruction {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.otp-subinstruction {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

.otp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.resend-link,
.back-link {
    background: none;
    border: none;
    color: #d71e2b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    text-decoration: underline;
    transition: color 0.3s;
}

.resend-link:hover,
.back-link:hover {
    color: #b81a25;
}

.resend-link:disabled,
.back-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-help {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.login-card .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.bottom-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #d71e2b;
}

.bottom-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.bottom-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bottom-card-link {
    color: #d71e2b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.bottom-card-link:hover {
    color: #b81a25;
    text-decoration: underline;
}

