/* Global Styles */
:root {
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #ffffff;
    --light-gray: #F5F5F7;
    --accent-yellow: #FFD700;
    --card-shadow: 0 8px 24px rgba(0,0,0,0.08);
    --card-shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFC400 100%);
    --font-primary: 'Inter', sans-serif;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: white;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--card-shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.logo-icon {
    color: var(--accent-yellow);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.login-btn {
    color: var(--text-color) !important;
}

.account-btn {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 6rem;
    background-color: var(--light-bg);
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.card-preview {
    position: relative;
    width: 100%;
    min-height: 400px;
    perspective: 1000px;
}

.card-3d {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-dark {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    width: 320px;
    height: 200px;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    color: white;
    position: relative;
    transform: rotate(-15deg) translateY(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.card-dark:hover {
    transform: rotate(-10deg) translateY(10px) scale(1.05);
}

.card-logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-chip {
    position: absolute;
    top: 60px;
    left: 1.5rem;
}

.card-info {
    position: absolute;
    bottom: 3rem;
    left: 1.5rem;
}

.card-holder-label {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.card-holder {
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.card-number {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.9rem;
}

.card-expiry {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
}

.feature-tag, .feature-pill {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--card-shadow);
    z-index: 2;
}

.feature-tag {
    top: 10%;
    left: 0;
}

.feature-pill {
    bottom: 10%;
    right: 0;
}

.tag-icon, .pill-icon {
    font-size: 1.25rem;
}

.hero-content {
    padding-left: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.stat-avatars {
    display: flex;
    margin-right: 0.5rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid white;
    font-size: 0.9rem;
}

.avatar:first-child {
    margin-left: 0;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 400px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-yellow);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Products Grid */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.card-showcase {
    margin-top: 2rem;
    position: relative;
    display: flex;
    gap: 1rem;
}

.card {
    background: var(--gradient-primary);
    width: 180px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.card-dark {
    background: var(--secondary-color);
    color: white;
    transform: rotate(-15deg) translateY(10px);
}

.card-light {
    background: var(--gradient-primary);
    transform: rotate(-5deg);
}

.card:hover {
    transform: rotate(0) translateY(-5px);
}

.card-logo {
    font-size: 1rem;
    font-weight: 700;
}

.card-holder {
    font-size: 0.8rem;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stats-preview {
    margin-top: 2rem;
    background: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stats-label {
    color: #666;
    font-size: 0.9rem;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stats-chart {
    height: 150px;
    background: linear-gradient(to top, #e9ecef 0%, transparent 100%);
    border-radius: var(--border-radius-sm);
    position: relative;
}

.stats-icon {
    background: var(--accent-yellow);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    background-color: var(--accent-yellow);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 2rem;
    margin-top: 6rem;
}

.transfer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transfer-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.transfer-amount {
    margin-bottom: 1.5rem;
}

.transfer-amount span {
    color: #666;
    font-size: 0.9rem;
}

.transfer-amount h3 {
    font-size: 2rem;
    color: var(--secondary-color);
}

.currency-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.currency-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.currency-item, .subscription-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.currency-tag {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 500;
}

.app-download {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 2rem;
    text-align: center;
}

.app-preview {
    position: relative;
    margin: 4rem auto;
    max-width: 800px;
}

.app-screenshot {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
}

.transaction-cards {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.balance-card, .transfer-notification {
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    text-align: left;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.download-btn img {
    height: 40px;
    border-radius: 8px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 2rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
}

.testimonial-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
    border-radius: var(--border-radius-md);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--accent-yellow);
    color: var(--secondary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* About Section */
.about-section {
    background: white;
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #FAFAFA;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #F0F0F0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-lg);
    border-color: var(--accent-yellow);
    background: white;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
}

.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 6rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-lg);
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: var(--secondary-color);
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Companies Section */
.companies-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 2rem;
    text-align: center;
}

.companies-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.companies-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.company-logo {
    height: 120px;
    background: white;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.company-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--card-shadow-lg);
}

/* CTA Dark Section */
.cta-dark {
    background: var(--secondary-color);
    padding: 4rem 2rem;
    margin: 6rem 0;
}

.cta-dark-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-dark-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-yellow);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Newsletter Section */
.newsletter {
    max-width: 900px;
    margin: 6rem auto;
    padding: 2rem;
    text-align: center;
}

.newsletter h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.newsletter-card {
    background: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.subscribe-btn {
    padding: 1rem 2.5rem;
    background: var(--accent-yellow);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.privacy-note a {
    color: var(--accent-yellow);
    text-decoration: none;
}

/* App Download Section */
.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.app-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
}

.balance-card {
    text-align: left;
}

.balance-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.balance-number {
    font-size: 0.9rem;
    color: var(--text-light);
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen {
    width: 90%;
    height: 95%;
    background: white;
    border-radius: 25px;
    padding: 1rem;
}

.phone-header {
    font-weight: 700;
    text-align: center;
    padding-top: 0.5rem;
}

.transfer-notification {
    text-align: left;
}

.notif-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.notif-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-lg);
}

.download-icon {
    font-size: 1.25rem;
}

.app-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Currency Section */
.subscription-example {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

.sub-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sub-logo {
    width: 32px;
    height: 32px;
    background: var(--accent-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.sub-name {
    font-weight: 500;
}

.sub-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.subscription-indicators {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.indicator.active {
    background: var(--accent-yellow);
}

/* Transfer Section Enhancements */
.transfer-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.transfer-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.transfer-to {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 1rem 0;
}

.transfer-days {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Stats Preview Enhancements */
.stats-growth {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.stats-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 6rem 2rem;
}

/* Privacy Section */
.privacy-section {
    background: var(--light-gray);
    padding: 6rem 2rem;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
}

.privacy-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 700;
}

/* Footer Enhancements */
.footer-brand {
    max-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 8rem 2rem 4rem;
    }

    .hero-content {
        padding-left: 0;
        order: 1;
    }

    .hero-left {
        order: 2;
        margin-top: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .transfer-section {
        grid-template-columns: 1fr;
    }

    .currency-cards {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-preview {
        flex-direction: column;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .newsletter h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}